diff --git a/.github/workflows/check-standard.yaml b/.github/workflows/check-standard.yaml index 271d466..e23739c 100644 --- a/.github/workflows/check-standard.yaml +++ b/.github/workflows/check-standard.yaml @@ -31,16 +31,16 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-pandoc@v1 + - uses: r-lib/actions/setup-pandoc@v2 - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} http-user-agent: ${{ matrix.config.http-user-agent }} use-public-rspm: true - - uses: r-lib/actions/setup-r-dependencies@v1 + - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: rcmdcheck - - uses: r-lib/actions/check-r-package@v1 + - uses: r-lib/actions/check-r-package@v2 diff --git a/DESCRIPTION b/DESCRIPTION index 11b30b8..5e805f6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -28,7 +28,7 @@ Suggests: ggplot2, HistDat Config/testthat/edition: 3 -RoxygenNote: 7.1.2 +RoxygenNote: 7.3.1 Roxygen: list(markdown = TRUE) VignetteBuilder: knitr URL: https://multimeric.github.io/TidyMultiqc/, https://github.com/multimeric/TidyMultiqc, https://cran.r-project.org/package=TidyMultiqc diff --git a/R/internal_utils.R b/R/internal_utils.R index 1fa58e8..b814330 100644 --- a/R/internal_utils.R +++ b/R/internal_utils.R @@ -30,7 +30,7 @@ kv_map <- function(l, func, map_keys = FALSE) { sanitise_column_name <- function(name) { name %>% stringr::str_replace_all(pattern = "[- ]", replacement = "_") %>% # Any dividing characters become underscores - stringr::str_remove_all(pattern = "[^\\w%_]") %>% # Any special characters bar underscore and % get deleted + stringr::str_remove_all(pattern = "[^\\w%_]") %>% # Any special characters except underscore and % get deleted stringr::str_to_lower() } diff --git a/R/multiqc.R b/R/multiqc.R index b91cf27..a114369 100644 --- a/R/multiqc.R +++ b/R/multiqc.R @@ -6,9 +6,8 @@ #' instead refer to the documentation website at , which #' provides more accessible documentation. #' @importFrom magrittr `%>%` -#' @docType package #' @name TidyMultiqc-package -NULL +"_PACKAGE" # Make R CMD Check hush utils::globalVariables(c(".", "metadata.sample_id")) diff --git a/R/plot_parsers.R b/R/plot_parsers.R index b8e1e42..12e721d 100644 --- a/R/plot_parsers.R +++ b/R/plot_parsers.R @@ -1,3 +1,32 @@ +#' Parses a list of xyline plot datasets +#' @param dataset A list which has the names "name" and "data", which +#' originate from a MultiQC plot +#' @return A list whose names are sample names. Each value is a data frame with one column. +#' @keywords internal +map_xy_line_datasets <- function(datasets, plot_name){ + kv_map(datasets, function(dataset){ + list( + key = dataset$name, + value = dataset$data %>% + purrr::map(~ tibble::tibble_row(x = .[[1]], y = .[[2]])) %>% + purrr::list_rbind() %>% + # Chop the multi-row data frame into one row + tidyr::nest(.key = stringr::str_c("plot", plot_name, sep = ".")) + ) + }) +} + +#' Determine if a plot is Plotly +#' +#' Plotly plots are generated by MultiQC 1.2 and above. +#' This matters because the plot data formats differ between these two formats. +#' @keywords internal +#' @param plot_data A list containing the top level data for a single plot. +#' @return A logical scalar. TRUE if the plot is a plotly plot, or FALSE if it's a HighCharts one. +is_plotly <- function(plot_data){ + !is.null(plot_data$layout) +} + #' Takes the JSON dictionary for an xyline plot, and returns a named list of #' data frames, one for each sample. #' @keywords internal @@ -12,22 +41,23 @@ parse_xyline_plot <- function(plot_data, name) { # This only works on xyline plots assertthat::assert_that(plot_data$plot_type == "xy_line") - plot_data$datasets %>% - purrr::map(function(dataset) { + # MultiQC >=1.2 plotly parser + if (is_plotly(plot_data)){ + plot_data$datasets %>% + purrr::map(function(dataset){ + dataset$lines %>% + map_xy_line_datasets(plot_name = name) + }) %>% + purrr::list_flatten() + } + + # MultiQC <=1.1 highcharts parser + else { + plot_data$datasets %>% # For some reason there are two levels of nesting here - dataset %>% - kv_map(function(subdataset) { - name <- stringr::str_c("plot", name, sep = ".") - list( - key = subdataset$name, - value = subdataset$data %>% - purrr::map_dfr(~ list(x = .[[1]], y = .[[2]])) %>% - # Chop the multi-row data frame into one row - tidyr::nest({{ name }} := tidyr::everything()) # %>% - ) - }) - }) %>% - purrr::reduce(~ purrr::list_merge(.x, !!!.y)) + purrr::map(map_xy_line_datasets, plot_name = name) %>% + purrr::list_flatten() + } } #' Takes the JSON dictionary for a bar graph, and returns a named list of @@ -41,30 +71,60 @@ parse_xyline_plot <- function(plot_data, name) { #' one column for the number of intron variants, one column for the number of exon variants, etc. #' This means that the number of columns will be fairly variable for different plots. parse_bar_graph <- function(plot_data, name) { - # This only works on bar_graphs assertthat::assert_that(plot_data$plot_type == "bar_graph") - - # Make a list of samples - samples <- plot_data$samples[[1]] %>% purrr::flatten_chr() + plot_data$datasets %>% length() %>% `==`(1) %>% assertthat::assert_that(msg = "Only bar graphs with 1 dataset are understood by this parser!") colname <- stringr::str_c("plot", sanitise_column_name(name), sep = ".") - plot_data$datasets[[1]] %>% - # First, build up a dictionary of samples -> dictionary of quality metrics - purrr::map(function(dataset) { - segment_name <- dataset$name - dataset$data %>% - # For this segment, each sample has a value - kv_map(function(value, idx) { - list( - key = samples[[idx]], - value = list(value) %>% purrr::set_names(sanitise_column_name(segment_name)) - ) - }, map_keys = TRUE) - }) %>% - purrr::reduce(utils::modifyList) %>% - # Then, convert each inner dictionary to a tibble row - purrr::map(tibble::as_tibble_row) %>% - # And nest each df so that we only have 1 cell of output per sample - purrr::map(~ tidyr::nest(., {{ colname }} := tidyr::everything())) + if (is_plotly(plot_data)){ + # MultiQC 1.2+ + dataset <- plot_data$datasets[[1]] + samples <- dataset$samples %>% purrr::flatten_chr() + # We make a data frame whose rows are samples and whose columns are categories + # Ideally this would be the final output, but currently the other code + # expects a list of samples + df <- dataset$cats %>% + purrr::map(function(cat){ + tibble::as_tibble_col( + purrr::flatten_dbl(cat$data), + column_name = sanitise_column_name(cat$name) + ) + }) %>% + purrr::list_cbind() + + # For compatibility with the old format + if ("unknown" %in% colnames(df)){ + df <- dplyr::rename(df, none = unknown) + } + + # And then we slice out each row to become its own list + seq_along(samples) %>% + purrr::map(function(sample_idx){ + df[sample_idx, ] %>% tidyr::nest(.key = colname) + }) %>% + purrr::set_names(samples) %>% + `[`(sort(samples)) + } + else { + # Make a list of samples + samples <- plot_data$samples[[1]] %>% purrr::flatten_chr() + plot_data$datasets[[1]] %>% + # First, build up a dictionary of samples -> dictionary of quality metrics + purrr::map(function(dataset) { + segment_name <- dataset$name + dataset$data %>% + # For this segment, each sample has a value + kv_map(function(value, idx) { + list( + key = samples[[idx]], + value = list(value) %>% purrr::set_names(sanitise_column_name(segment_name)) + ) + }, map_keys = TRUE) + }) %>% + purrr::reduce(utils::modifyList) %>% + # Then, convert each inner dictionary to a tibble row + purrr::map(tibble::as_tibble_row) %>% + # And nest each df so that we only have 1 cell of output per sample + purrr::map(~ tidyr::nest(., .key = colname)) + } } diff --git a/inst/extdata/1.2_wgs/multiqc_data.json b/inst/extdata/1.2_wgs/multiqc_data.json new file mode 100644 index 0000000..32566a6 --- /dev/null +++ b/inst/extdata/1.2_wgs/multiqc_data.json @@ -0,0 +1,51833 @@ +{ + "report_data_sources": { + "QualiMap": { + "genome_results": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1003.clean.dedup.qc/genome_results.txt", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1004.clean.dedup.qc/genome_results.txt", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1005.clean.dedup.qc/genome_results.txt", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1002.clean.dedup.qc/genome_results.txt", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1006.clean.dedup.qc/genome_results.txt", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1001.clean.dedup.qc/genome_results.txt" + }, + "coverage_histogram": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1003.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1004.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1005.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1002.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1006.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1001.clean.dedup.qc/raw_data_qualimapReport/coverage_histogram.txt" + }, + "insert_size_histogram": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1003.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1004.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1005.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1002.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1006.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1001.clean.dedup.qc/raw_data_qualimapReport/insert_size_histogram.txt" + }, + "mapped_gc_distribution": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1003.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1004.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1005.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1002.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1006.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/06_final_alignment_qc/P4107_1001.clean.dedup.qc/raw_data_qualimapReport/mapped_reads_gc-content_distribution.txt" + } + }, + "SnpEff": { + "all_sections": { + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1004.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv", + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1003.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1006.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1002.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1005.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1001.clean.dedup.recal.bam.recalibrated.snp.annotated.vcf.gz.snpEff.summary.csv" + } + }, + "GATK": { + "varianteval": { + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1004.clean.dedup.recal.bam.snp.eval", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1002.clean.dedup.recal.bam.snp.eval", + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1003.clean.dedup.recal.bam.snp.eval", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1005.clean.dedup.recal.bam.snp.eval", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1006.clean.dedup.recal.bam.snp.eval", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/07_variant_calls/P4107_1001.clean.dedup.recal.bam.snp.eval" + } + }, + "Picard": { + "DuplicationMetrics": { + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1001.metrics", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1002.metrics", + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1003.metrics", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1006.metrics", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1005.metrics", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/piper_ngi/05_processed_alignments/P4107_1004.metrics" + } + }, + "FastQ Screen": { + "all_sections": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1003/fastq_screen/P4107_1003_S3_L004_R2_001_screen.txt", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1004/fastq_screen/P4107_1004_S4_L005_R2_001_screen.txt", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1005/fastq_screen/P4107_1005_S5_L006_R1_001_screen.txt", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1002/fastq_screen/P4107_1002_S2_L003_R1_001_screen.txt", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1001/fastq_screen/P4107_1001_S1_L002_R1_001_screen.txt", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1006/fastq_screen/P4107_1006_S6_L007_R1_001_screen.txt" + } + }, + "FastQC": { + "all_sections": { + "P4107_1003": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1003/fastqc/P4107_1003_S3_L004_R1_001_fastqc.zip", + "P4107_1004": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1004/fastqc/P4107_1004_S4_L005_R1_001_fastqc.zip", + "P4107_1005": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1005/fastqc/P4107_1005_S5_L006_R2_001_fastqc.zip", + "P4107_1002": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1002/fastqc/P4107_1002_S2_L003_R2_001_fastqc.zip", + "P4107_1001": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1001/fastqc/P4107_1001_S1_L002_R2_001_fastqc.zip", + "P4107_1006": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs/data/qc_ngi/P4107_1006/fastqc/P4107_1006_S6_L007_R2_001_fastqc.zip" + } + } + }, + "report_general_stats_data": [ + { + "P4107_1003": { + "total_reads": 868204107, + "mapped_reads": 847562410, + "mean_coverage": 40.46, + "percentage_aligned": 97.62248337302556, + "median_coverage": 40, + "median_insert_size": 365, + "avg_gc": 41.35698208795284, + "1_x_pc": 92.29751163907807, + "5_x_pc": 92.22753318515709, + "10_x_pc": 92.07815353718176, + "30_x_pc": 82.37846792457299, + "50_x_pc": 16.220900002951474 + }, + "P4107_1004": { + "total_reads": 1002828927, + "mapped_reads": 985115356, + "mean_coverage": 47.04, + "percentage_aligned": 98.23363980405004, + "median_coverage": 46, + "median_insert_size": 363, + "avg_gc": 40.99306639893834, + "1_x_pc": 92.29608730699667, + "5_x_pc": 92.2323784611382, + "10_x_pc": 92.0764160970611, + "30_x_pc": 84.74393690711297, + "50_x_pc": 40.45506563396865 + }, + "P4107_1005": { + "total_reads": 974955793, + "mapped_reads": 955921317, + "mean_coverage": 45.58, + "percentage_aligned": 98.04765753107331, + "median_coverage": 45, + "median_insert_size": 368, + "avg_gc": 41.17477503107992, + "1_x_pc": 92.29828148121867, + "5_x_pc": 92.2346776709854, + "10_x_pc": 92.11250283024343, + "30_x_pc": 85.26307080995146, + "50_x_pc": 35.61445297024546 + }, + "P4107_1002": { + "total_reads": 865975844, + "mapped_reads": 847067526, + "mean_coverage": 40.38, + "percentage_aligned": 97.81653054978287, + "median_coverage": 40, + "median_insert_size": 367, + "avg_gc": 41.29061839482755, + "1_x_pc": 92.29794180799979, + "5_x_pc": 92.22694426994362, + "10_x_pc": 92.07669477353262, + "30_x_pc": 82.33885866147037, + "50_x_pc": 15.934603451516617 + }, + "P4107_1006": { + "total_reads": 912383669, + "mapped_reads": 894970438, + "mean_coverage": 42.59, + "percentage_aligned": 98.09145739981456, + "median_coverage": 43, + "median_insert_size": 362, + "avg_gc": 41.269984866552605, + "1_x_pc": 92.29880346765438, + "5_x_pc": 92.23074228464515, + "10_x_pc": 92.10216755684698, + "30_x_pc": 84.09635794292338, + "50_x_pc": 23.664833468422913 + }, + "P4107_1001": { + "total_reads": 772071557, + "mapped_reads": 751147332, + "mean_coverage": 35.78, + "percentage_aligned": 97.28985936468062, + "median_coverage": 36, + "median_insert_size": 358, + "avg_gc": 41.36746349676451, + "1_x_pc": 92.29432810535144, + "5_x_pc": 92.21025634005906, + "10_x_pc": 91.9610844336904, + "30_x_pc": 74.66018701572433, + "50_x_pc": 5.240211027996628 + } + }, + { + "P4107_1004": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4052117.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3860097.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.261242, + "Number_of_effects": 21093227.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 765.0, + "HIGH": 1279.0, + "HIGH_percent": 0.006064, + "LOW": 8417008.0, + "LOW_percent": 39.903842, + "MODERATE": 38431.0, + "MODERATE_percent": 0.182196, + "MODIFIER": 12636509.0, + "MODIFIER_percent": 59.907898, + "MISSENSE": 31517.0, + "MISSENSE_percent": 46.540853, + "NONSENSE": 308.0, + "NONSENSE_percent": 0.454821, + "SILENT": 35894.0, + "SILENT_percent": 53.004327, + "Missense_Silent_ratio": 0.878058, + "Type": "Count", + "3_prime_UTR_variant": 65176.0, + "3_prime_UTR_variant_percent": 0.30899, + "5_prime_UTR_premature_start_codon_gain_variant": 3024.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014336, + "5_prime_UTR_variant": 20770.0, + "5_prime_UTR_variant_percent": 0.098468, + "TF_binding_site_variant": 4267.0, + "TF_binding_site_variant_percent": 0.020229, + "downstream_gene_variant": 1239681.0, + "downstream_gene_variant_percent": 5.877152, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2047249.0, + "intergenic_region_percent": 9.705717, + "intragenic_variant": 674.0, + "intragenic_variant_percent": 0.003195, + "intron_variant": 7890065.0, + "intron_variant_percent": 37.40568, + "missense_variant": 30662.0, + "missense_variant_percent": 0.145364, + "missense_variant+splice_region_variant": 729.0, + "missense_variant+splice_region_variant_percent": 0.003456, + "non_coding_exon_variant": 123785.0, + "non_coding_exon_variant_percent": 0.586847, + "sequence_feature": 8371134.0, + "sequence_feature_percent": 39.68636, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 356.0, + "splice_acceptor_variant+intron_variant_percent": 0.001688, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 4.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.9e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 494.0, + "splice_donor_variant+intron_variant_percent": 0.002342, + "splice_region_variant": 455.0, + "splice_region_variant_percent": 0.002157, + "splice_region_variant+intron_variant": 10160.0, + "splice_region_variant+intron_variant_percent": 0.048167, + "splice_region_variant+non_coding_exon_variant": 1861.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008823, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 899.0, + "splice_region_variant+synonymous_variant_percent": 0.004262, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 305.0, + "stop_gained_percent": 0.001446, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 43.0, + "stop_lost_percent": 0.000204, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000199, + "synonymous_variant": 34948.0, + "synonymous_variant_percent": 0.165684, + "upstream_gene_variant": 1246346.0, + "upstream_gene_variant_percent": 5.90875, + "DOWNSTREAM": 1239681.0, + "DOWNSTREAM_percent": 5.877152, + "EXON": 190525.0, + "EXON_percent": 0.903252, + "INTERGENIC": 2047249.0, + "INTERGENIC_percent": 9.705717, + "INTRON": 7890065.0, + "INTRON_percent": 37.40568, + "MOTIF": 4267.0, + "MOTIF_percent": 0.020229, + "NONE": 8371814.0, + "NONE_percent": 39.689584, + "SPLICE_SITE_ACCEPTOR": 361.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001711, + "SPLICE_SITE_DONOR": 494.0, + "SPLICE_SITE_DONOR_percent": 0.002342, + "SPLICE_SITE_REGION": 13380.0, + "SPLICE_SITE_REGION_percent": 0.063433, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000356, + "UPSTREAM": 1246346.0, + "UPSTREAM_percent": 5.90875, + "UTR_3_PRIME": 65176.0, + "UTR_3_PRIME_percent": 0.30899, + "UTR_5_PRIME": 23794.0, + "UTR_5_PRIME_percent": 0.112804, + "Transitions": 3703540.0, + "Transversions": 1855247.0, + "Ts_Tv_ratio": 1.996252, + "Het": 2542103.0, + "Hom": 1508342.0, + "Missing": 0.0 + }, + "P4107_1003": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4072201.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3872914.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.10616, + "Number_of_effects": 21162478.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101728650.0, + "Change_rate": 761.0, + "HIGH": 1314.0, + "HIGH_percent": 0.006209, + "LOW": 8434737.0, + "LOW_percent": 39.857038, + "MODERATE": 38739.0, + "MODERATE_percent": 0.183055, + "MODIFIER": 12687688.0, + "MODIFIER_percent": 59.953697, + "MISSENSE": 31843.0, + "MISSENSE_percent": 46.62089, + "NONSENSE": 323.0, + "NONSENSE_percent": 0.4729, + "SILENT": 36136.0, + "SILENT_percent": 52.906211, + "Missense_Silent_ratio": 0.881199, + "Type": "Count", + "3_prime_UTR_variant": 65612.0, + "3_prime_UTR_variant_percent": 0.310039, + "5_prime_UTR_premature_start_codon_gain_variant": 3043.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014379, + "5_prime_UTR_variant": 20798.0, + "5_prime_UTR_variant_percent": 0.098278, + "TF_binding_site_variant": 4252.0, + "TF_binding_site_variant_percent": 0.020092, + "downstream_gene_variant": 1247406.0, + "downstream_gene_variant_percent": 5.894423, + "initiator_codon_variant": 9.0, + "initiator_codon_variant_percent": 4.3e-05, + "intergenic_region": 2060392.0, + "intergenic_region_percent": 9.736062, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.00319, + "intron_variant": 7911861.0, + "intron_variant_percent": 37.386269, + "missense_variant": 30977.0, + "missense_variant_percent": 0.146377, + "missense_variant+splice_region_variant": 740.0, + "missense_variant+splice_region_variant_percent": 0.003497, + "non_coding_exon_variant": 124878.0, + "non_coding_exon_variant_percent": 0.590092, + "sequence_feature": 8388529.0, + "sequence_feature_percent": 39.63869, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 366.0, + "splice_acceptor_variant+intron_variant_percent": 0.001729, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 2.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 9e-06, + "splice_donor_variant+intron_variant": 502.0, + "splice_donor_variant+intron_variant_percent": 0.002372, + "splice_donor_variant+splice_region_variant+intron_variant": 1.0, + "splice_donor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_region_variant": 463.0, + "splice_region_variant_percent": 0.002188, + "splice_region_variant+intron_variant": 10215.0, + "splice_region_variant+intron_variant_percent": 0.048269, + "splice_region_variant+non_coding_exon_variant": 1859.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008784, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 910.0, + "splice_region_variant+synonymous_variant_percent": 0.0043, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 320.0, + "stop_gained_percent": 0.001512, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 43.0, + "stop_retained_variant_percent": 0.000203, + "synonymous_variant": 35178.0, + "synonymous_variant_percent": 0.166228, + "upstream_gene_variant": 1253313.0, + "upstream_gene_variant_percent": 5.922336, + "DOWNSTREAM": 1247406.0, + "DOWNSTREAM_percent": 5.894423, + "EXON": 192191.0, + "EXON_percent": 0.908169, + "INTERGENIC": 2060392.0, + "INTERGENIC_percent": 9.736062, + "INTRON": 7911861.0, + "INTRON_percent": 37.386269, + "MOTIF": 4252.0, + "MOTIF_percent": 0.020092, + "NONE": 8389210.0, + "NONE_percent": 39.641908, + "SPLICE_SITE_ACCEPTOR": 371.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001753, + "SPLICE_SITE_DONOR": 503.0, + "SPLICE_SITE_DONOR_percent": 0.002377, + "SPLICE_SITE_REGION": 13452.0, + "SPLICE_SITE_REGION_percent": 0.063565, + "TRANSCRIPT": 74.0, + "TRANSCRIPT_percent": 0.00035, + "UPSTREAM": 1253313.0, + "UPSTREAM_percent": 5.922336, + "UTR_3_PRIME": 65612.0, + "UTR_3_PRIME_percent": 0.310039, + "UTR_5_PRIME": 23841.0, + "UTR_5_PRIME_percent": 0.112657, + "Transitions": 3716534.0, + "Transversions": 1864090.0, + "Ts_Tv_ratio": 1.993752, + "Het": 2560300.0, + "Hom": 1510162.0, + "Missing": 0.0 + }, + "P4107_1006": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4072161.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3872603.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.099457, + "Number_of_effects": 21155209.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 761.0, + "HIGH": 1309.0, + "HIGH_percent": 0.006188, + "LOW": 8428017.0, + "LOW_percent": 39.838968, + "MODERATE": 38700.0, + "MODERATE_percent": 0.182934, + "MODIFIER": 12687183.0, + "MODIFIER_percent": 59.97191, + "MISSENSE": 31791.0, + "MISSENSE_percent": 46.620522, + "NONSENSE": 315.0, + "NONSENSE_percent": 0.461938, + "SILENT": 36085.0, + "SILENT_percent": 52.91754, + "Missense_Silent_ratio": 0.881003, + "Type": "Count", + "3_prime_UTR_variant": 65469.0, + "3_prime_UTR_variant_percent": 0.30947, + "5_prime_UTR_premature_start_codon_gain_variant": 3038.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014361, + "5_prime_UTR_variant": 20738.0, + "5_prime_UTR_variant_percent": 0.098028, + "TF_binding_site_variant": 4237.0, + "TF_binding_site_variant_percent": 0.020028, + "downstream_gene_variant": 1247269.0, + "downstream_gene_variant_percent": 5.895801, + "initiator_codon_variant": 8.0, + "initiator_codon_variant_percent": 3.8e-05, + "intergenic_region": 2060065.0, + "intergenic_region_percent": 9.737862, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.003191, + "intron_variant": 7910832.0, + "intron_variant_percent": 37.394251, + "missense_variant": 30926.0, + "missense_variant_percent": 0.146186, + "missense_variant+splice_region_variant": 739.0, + "missense_variant+splice_region_variant_percent": 0.003493, + "non_coding_exon_variant": 124984.0, + "non_coding_exon_variant_percent": 0.590795, + "sequence_feature": 8381858.0, + "sequence_feature_percent": 39.620776, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 359.0, + "splice_acceptor_variant+intron_variant_percent": 0.001697, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 513.0, + "splice_donor_variant+intron_variant_percent": 0.002425, + "splice_region_variant": 450.0, + "splice_region_variant_percent": 0.002127, + "splice_region_variant+intron_variant": 10247.0, + "splice_region_variant+intron_variant_percent": 0.048437, + "splice_region_variant+non_coding_exon_variant": 1865.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008816, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 904.0, + "splice_region_variant+synonymous_variant_percent": 0.004273, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 312.0, + "stop_gained_percent": 0.001475, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 45.0, + "stop_lost_percent": 0.000213, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 45.0, + "stop_retained_variant_percent": 0.000213, + "synonymous_variant": 35131.0, + "synonymous_variant_percent": 0.166063, + "upstream_gene_variant": 1254409.0, + "upstream_gene_variant_percent": 5.929551, + "DOWNSTREAM": 1247269.0, + "DOWNSTREAM_percent": 5.895801, + "EXON": 192193.0, + "EXON_percent": 0.90849, + "INTERGENIC": 2060065.0, + "INTERGENIC_percent": 9.737862, + "INTRON": 7910832.0, + "INTRON_percent": 37.394251, + "MOTIF": 4237.0, + "MOTIF_percent": 0.020028, + "NONE": 8382539.0, + "NONE_percent": 39.623995, + "SPLICE_SITE_ACCEPTOR": 363.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001716, + "SPLICE_SITE_DONOR": 513.0, + "SPLICE_SITE_DONOR_percent": 0.002425, + "SPLICE_SITE_REGION": 13471.0, + "SPLICE_SITE_REGION_percent": 0.063677, + "TRANSCRIPT": 73.0, + "TRANSCRIPT_percent": 0.000345, + "UPSTREAM": 1254409.0, + "UPSTREAM_percent": 5.929551, + "UTR_3_PRIME": 65469.0, + "UTR_3_PRIME_percent": 0.30947, + "UTR_5_PRIME": 23776.0, + "UTR_5_PRIME_percent": 0.112388, + "Transitions": 3716115.0, + "Transversions": 1864190.0, + "Ts_Tv_ratio": 1.993421, + "Het": 2560545.0, + "Hom": 1509880.0, + "Missing": 0.0 + }, + "P4107_1002": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4067653.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3870535.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.154011, + "Number_of_effects": 21143436.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101728650.0, + "Change_rate": 762.0, + "HIGH": 1319.0, + "HIGH_percent": 0.006238, + "LOW": 8428911.0, + "LOW_percent": 39.865379, + "MODERATE": 38681.0, + "MODERATE_percent": 0.182946, + "MODIFIER": 12674525.0, + "MODIFIER_percent": 59.945436, + "MISSENSE": 31778.0, + "MISSENSE_percent": 46.674696, + "NONSENSE": 313.0, + "NONSENSE_percent": 0.459726, + "SILENT": 35993.0, + "SILENT_percent": 52.865578, + "Missense_Silent_ratio": 0.882894, + "Type": "Count", + "3_prime_UTR_variant": 65659.0, + "3_prime_UTR_variant_percent": 0.310541, + "5_prime_UTR_premature_start_codon_gain_variant": 3033.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014345, + "5_prime_UTR_variant": 20819.0, + "5_prime_UTR_variant_percent": 0.098466, + "TF_binding_site_variant": 4254.0, + "TF_binding_site_variant_percent": 0.02012, + "downstream_gene_variant": 1246143.0, + "downstream_gene_variant_percent": 5.893758, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2057338.0, + "intergenic_region_percent": 9.730386, + "intragenic_variant": 676.0, + "intragenic_variant_percent": 0.003197, + "intron_variant": 7903237.0, + "intron_variant_percent": 37.379152, + "missense_variant": 30932.0, + "missense_variant_percent": 0.146296, + "missense_variant+splice_region_variant": 722.0, + "missense_variant+splice_region_variant_percent": 0.003415, + "non_coding_exon_variant": 125010.0, + "non_coding_exon_variant_percent": 0.591247, + "sequence_feature": 8382886.0, + "sequence_feature_percent": 39.6477, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 358.0, + "splice_acceptor_variant+intron_variant_percent": 0.001693, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 530.0, + "splice_donor_variant+intron_variant_percent": 0.002507, + "splice_region_variant": 454.0, + "splice_region_variant_percent": 0.002147, + "splice_region_variant+intron_variant": 10207.0, + "splice_region_variant+intron_variant_percent": 0.048275, + "splice_region_variant+non_coding_exon_variant": 1870.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008844, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 915.0, + "splice_region_variant+synonymous_variant_percent": 0.004328, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 310.0, + "stop_gained_percent": 0.001466, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 43.0, + "stop_lost_percent": 0.000203, + "stop_lost+splice_region_variant": 6.0, + "stop_lost+splice_region_variant_percent": 2.8e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000199, + "synonymous_variant": 35031.0, + "synonymous_variant_percent": 0.165683, + "upstream_gene_variant": 1252868.0, + "upstream_gene_variant_percent": 5.925565, + "DOWNSTREAM": 1246143.0, + "DOWNSTREAM_percent": 5.893758, + "EXON": 192099.0, + "EXON_percent": 0.908551, + "INTERGENIC": 2057338.0, + "INTERGENIC_percent": 9.730386, + "INTRON": 7903237.0, + "INTRON_percent": 37.379152, + "MOTIF": 4254.0, + "MOTIF_percent": 0.02012, + "NONE": 8383568.0, + "NONE_percent": 39.650925, + "SPLICE_SITE_ACCEPTOR": 362.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001712, + "SPLICE_SITE_DONOR": 530.0, + "SPLICE_SITE_DONOR_percent": 0.002507, + "SPLICE_SITE_REGION": 13451.0, + "SPLICE_SITE_REGION_percent": 0.063618, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000355, + "UPSTREAM": 1252868.0, + "UPSTREAM_percent": 5.925565, + "UTR_3_PRIME": 65659.0, + "UTR_3_PRIME_percent": 0.310541, + "UTR_5_PRIME": 23852.0, + "UTR_5_PRIME_percent": 0.11281, + "Transitions": 3713295.0, + "Transversions": 1861933.0, + "Ts_Tv_ratio": 1.994323, + "Het": 2556640.0, + "Hom": 1509294.0, + "Missing": 0.0 + }, + "P4107_1005": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4069620.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3871067.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.121092, + "Number_of_effects": 21160008.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 762.0, + "HIGH": 1309.0, + "HIGH_percent": 0.006186, + "LOW": 8435386.0, + "LOW_percent": 39.864758, + "MODERATE": 38702.0, + "MODERATE_percent": 0.182902, + "MODIFIER": 12684611.0, + "MODIFIER_percent": 59.946154, + "MISSENSE": 31743.0, + "MISSENSE_percent": 46.592494, + "NONSENSE": 320.0, + "NONSENSE_percent": 0.469697, + "SILENT": 36066.0, + "SILENT_percent": 52.937809, + "Missense_Silent_ratio": 0.880136, + "Type": "Count", + "3_prime_UTR_variant": 65680.0, + "3_prime_UTR_variant_percent": 0.310397, + "5_prime_UTR_premature_start_codon_gain_variant": 3040.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014367, + "5_prime_UTR_variant": 20784.0, + "5_prime_UTR_variant_percent": 0.098223, + "TF_binding_site_variant": 4258.0, + "TF_binding_site_variant_percent": 0.020123, + "downstream_gene_variant": 1246085.0, + "downstream_gene_variant_percent": 5.888868, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2057863.0, + "intergenic_region_percent": 9.725247, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.00319, + "intron_variant": 7911193.0, + "intron_variant_percent": 37.387476, + "missense_variant": 30871.0, + "missense_variant_percent": 0.145893, + "missense_variant+splice_region_variant": 744.0, + "missense_variant+splice_region_variant_percent": 0.003516, + "non_coding_exon_variant": 124929.0, + "non_coding_exon_variant_percent": 0.590401, + "sequence_feature": 8389292.0, + "sequence_feature_percent": 39.646923, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 365.0, + "splice_acceptor_variant+intron_variant_percent": 0.001725, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 6.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 498.0, + "splice_donor_variant+intron_variant_percent": 0.002353, + "splice_donor_variant+splice_region_variant+intron_variant": 1.0, + "splice_donor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_region_variant": 454.0, + "splice_region_variant_percent": 0.002146, + "splice_region_variant+intron_variant": 10213.0, + "splice_region_variant+intron_variant_percent": 0.048266, + "splice_region_variant+non_coding_exon_variant": 1876.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008866, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 904.0, + "splice_region_variant+synonymous_variant_percent": 0.004272, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 317.0, + "stop_gained_percent": 0.001498, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 9.0, + "stop_lost+splice_region_variant_percent": 4.3e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000198, + "synonymous_variant": 35115.0, + "synonymous_variant_percent": 0.16595, + "upstream_gene_variant": 1254660.0, + "upstream_gene_variant_percent": 5.929393, + "DOWNSTREAM": 1246085.0, + "DOWNSTREAM_percent": 5.888868, + "EXON": 192074.0, + "EXON_percent": 0.907722, + "INTERGENIC": 2057863.0, + "INTERGENIC_percent": 9.725247, + "INTRON": 7911193.0, + "INTRON_percent": 37.387476, + "MOTIF": 4258.0, + "MOTIF_percent": 0.020123, + "NONE": 8389973.0, + "NONE_percent": 39.650141, + "SPLICE_SITE_ACCEPTOR": 372.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001758, + "SPLICE_SITE_DONOR": 499.0, + "SPLICE_SITE_DONOR_percent": 0.002358, + "SPLICE_SITE_REGION": 13452.0, + "SPLICE_SITE_REGION_percent": 0.063573, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000354, + "UPSTREAM": 1254660.0, + "UPSTREAM_percent": 5.929393, + "UTR_3_PRIME": 65680.0, + "UTR_3_PRIME_percent": 0.310397, + "UTR_5_PRIME": 23824.0, + "UTR_5_PRIME_percent": 0.11259, + "Transitions": 3714461.0, + "Transversions": 1863082.0, + "Ts_Tv_ratio": 1.993718, + "Het": 2558281.0, + "Hom": 1509631.0, + "Missing": 0.0 + }, + "P4107_1001": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4059325.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3864874.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.20977, + "Number_of_effects": 21116726.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 764.0, + "HIGH": 1296.0, + "HIGH_percent": 0.006137, + "LOW": 8421056.0, + "LOW_percent": 39.878606, + "MODERATE": 38519.0, + "MODERATE_percent": 0.18241, + "MODIFIER": 12655855.0, + "MODIFIER_percent": 59.932847, + "MISSENSE": 31604.0, + "MISSENSE_percent": 46.584025, + "NONSENSE": 311.0, + "NONSENSE_percent": 0.458411, + "SILENT": 35928.0, + "SILENT_percent": 52.957564, + "Missense_Silent_ratio": 0.879648, + "Type": "Count", + "3_prime_UTR_variant": 65517.0, + "3_prime_UTR_variant_percent": 0.310261, + "5_prime_UTR_premature_start_codon_gain_variant": 3029.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014344, + "5_prime_UTR_variant": 20806.0, + "5_prime_UTR_variant_percent": 0.098529, + "TF_binding_site_variant": 4226.0, + "TF_binding_site_variant_percent": 0.020013, + "downstream_gene_variant": 1243319.0, + "downstream_gene_variant_percent": 5.88784, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2052490.0, + "intergenic_region_percent": 9.719736, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.003197, + "intron_variant": 7895710.0, + "intron_variant_percent": 37.390787, + "missense_variant": 30730.0, + "missense_variant_percent": 0.145524, + "missense_variant+splice_region_variant": 747.0, + "missense_variant+splice_region_variant_percent": 0.003537, + "non_coding_exon_variant": 124583.0, + "non_coding_exon_variant_percent": 0.589973, + "sequence_feature": 8375083.0, + "sequence_feature_percent": 39.660897, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 370.0, + "splice_acceptor_variant+intron_variant_percent": 0.001752, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 5.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 2.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 492.0, + "splice_donor_variant+intron_variant_percent": 0.00233, + "splice_region_variant": 462.0, + "splice_region_variant_percent": 0.002188, + "splice_region_variant+intron_variant": 10231.0, + "splice_region_variant+intron_variant_percent": 0.04845, + "splice_region_variant+non_coding_exon_variant": 1838.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008704, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 892.0, + "splice_region_variant+synonymous_variant_percent": 0.004224, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 309.0, + "stop_gained_percent": 0.001463, + "stop_gained+splice_region_variant": 2.0, + "stop_gained+splice_region_variant_percent": 9e-06, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 43.0, + "stop_retained_variant_percent": 0.000204, + "synonymous_variant": 34988.0, + "synonymous_variant_percent": 0.165689, + "upstream_gene_variant": 1250040.0, + "upstream_gene_variant_percent": 5.919668, + "DOWNSTREAM": 1243319.0, + "DOWNSTREAM_percent": 5.88784, + "EXON": 191454.0, + "EXON_percent": 0.906646, + "INTERGENIC": 2052490.0, + "INTERGENIC_percent": 9.719736, + "INTRON": 7895710.0, + "INTRON_percent": 37.390787, + "MOTIF": 4226.0, + "MOTIF_percent": 0.020013, + "NONE": 8375764.0, + "NONE_percent": 39.664122, + "SPLICE_SITE_ACCEPTOR": 376.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001781, + "SPLICE_SITE_DONOR": 492.0, + "SPLICE_SITE_DONOR_percent": 0.00233, + "SPLICE_SITE_REGION": 13428.0, + "SPLICE_SITE_REGION_percent": 0.063589, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000355, + "UPSTREAM": 1250040.0, + "UPSTREAM_percent": 5.919668, + "UTR_3_PRIME": 65517.0, + "UTR_3_PRIME_percent": 0.310261, + "UTR_5_PRIME": 23835.0, + "UTR_5_PRIME_percent": 0.112873, + "Transitions": 3708090.0, + "Transversions": 1858534.0, + "Ts_Tv_ratio": 1.995169, + "Het": 2548668.0, + "Hom": 1508978.0, + "Missing": 0.0 + } + }, + { + "P4107_1004": { + "reference": "hapmap", + "comp_rate": 45.84, + "concordant_rate": 99.09, + "eval_variants": 3457524, + "novel_sites": 1872505, + "known_sites": 3414528, + "snps": 3457524, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.49 + }, + "P4107_1002": { + "reference": "hapmap", + "comp_rate": 45.75, + "concordant_rate": 99.09, + "eval_variants": 3465116, + "novel_sites": 1879862, + "known_sites": 3421917, + "snps": 3465116, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.48 + }, + "P4107_1003": { + "reference": "hapmap", + "comp_rate": 44.76, + "concordant_rate": 99.08, + "eval_variants": 3545454, + "novel_sites": 1958486, + "known_sites": 3473340, + "snps": 3545454, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.47 + }, + "P4107_1005": { + "reference": "hapmap", + "comp_rate": 45.82, + "concordant_rate": 99.1, + "eval_variants": 3459835, + "novel_sites": 1874662, + "known_sites": 3416662, + "snps": 3459835, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.46 + }, + "P4107_1006": { + "reference": "hapmap", + "comp_rate": 45.91, + "concordant_rate": 99.1, + "eval_variants": 3452732, + "novel_sites": 1867441, + "known_sites": 3410273, + "snps": 3452732, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.48 + }, + "P4107_1001": { + "reference": "hapmap", + "comp_rate": 45.44, + "concordant_rate": 99.09, + "eval_variants": 3490344, + "novel_sites": 1904260, + "known_sites": 3437854, + "snps": 3490344, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.49 + } + }, + { + "P4107_1001": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1351481.0, + "READ_PAIRS_EXAMINED": 372454903.0, + "UNMAPPED_READS": 20924225.0, + "UNPAIRED_READ_DUPLICATES": 449788.0, + "READ_PAIR_DUPLICATES": 23612037.0, + "READ_PAIR_OPTICAL_DUPLICATES": 4105864.0, + "PERCENT_DUPLICATION": 0.063884, + "ESTIMATED_LIBRARY_SIZE": 3354000974.0, + "READS_IN_DUPLICATE_PAIRS": 47224074.0, + "READS_IN_UNIQUE_PAIRS": 697685732.0, + "READS_IN_UNIQUE_UNPAIRED": 901693.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 8211728.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 39012346.0, + "READS_IN_DUPLICATE_UNPAIRED": 449788.0, + "READS_UNMAPPED": 20924225.0 + }, + "P4107_1002": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1185838.0, + "READ_PAIRS_EXAMINED": 420138446.0, + "UNMAPPED_READS": 18908318.0, + "UNPAIRED_READ_DUPLICATES": 483800.0, + "READ_PAIR_DUPLICATES": 41401574.0, + "READ_PAIR_OPTICAL_DUPLICATES": 8561816.0, + "PERCENT_DUPLICATION": 0.098979, + "ESTIMATED_LIBRARY_SIZE": 2440020860.0, + "READS_IN_DUPLICATE_PAIRS": 82803148.0, + "READS_IN_UNIQUE_PAIRS": 757473744.0, + "READS_IN_UNIQUE_UNPAIRED": 702038.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 17123632.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 65679516.0, + "READS_IN_DUPLICATE_UNPAIRED": 483800.0, + "READS_UNMAPPED": 18908318.0 + }, + "P4107_1003": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1115159.0, + "READ_PAIRS_EXAMINED": 420500572.0, + "UNMAPPED_READS": 20641697.0, + "UNPAIRED_READ_DUPLICATES": 466283.0, + "READ_PAIR_DUPLICATES": 43865124.0, + "READ_PAIR_OPTICAL_DUPLICATES": 9404573.0, + "PERCENT_DUPLICATION": 0.104732, + "ESTIMATED_LIBRARY_SIZE": 2313040870.0, + "READS_IN_DUPLICATE_PAIRS": 87730248.0, + "READS_IN_UNIQUE_PAIRS": 753270896.0, + "READS_IN_UNIQUE_UNPAIRED": 648876.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 18809146.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 68921102.0, + "READS_IN_DUPLICATE_UNPAIRED": 466283.0, + "READS_UNMAPPED": 20641697.0 + }, + "P4107_1006": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1310769.0, + "READ_PAIRS_EXAMINED": 443876610.0, + "UNMAPPED_READS": 17413231.0, + "UNPAIRED_READ_DUPLICATES": 556444.0, + "READ_PAIR_DUPLICATES": 55005596.0, + "READ_PAIR_OPTICAL_DUPLICATES": 13645138.0, + "PERCENT_DUPLICATION": 0.124364, + "ESTIMATED_LIBRARY_SIZE": 2091799585.0, + "READS_IN_DUPLICATE_PAIRS": 110011192.0, + "READS_IN_UNIQUE_PAIRS": 777742028.0, + "READS_IN_UNIQUE_UNPAIRED": 754325.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 27290276.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 82720916.0, + "READS_IN_DUPLICATE_UNPAIRED": 556444.0, + "READS_UNMAPPED": 17413231.0 + }, + "P4107_1005": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1184584.0, + "READ_PAIRS_EXAMINED": 474123896.0, + "UNMAPPED_READS": 19034476.0, + "UNPAIRED_READ_DUPLICATES": 655331.0, + "READ_PAIR_DUPLICATES": 115911990.0, + "READ_PAIR_OPTICAL_DUPLICATES": 32539725.0, + "PERCENT_DUPLICATION": 0.244861, + "ESTIMATED_LIBRARY_SIZE": 1017071922.0, + "READS_IN_DUPLICATE_PAIRS": 231823980.0, + "READS_IN_UNIQUE_PAIRS": 716423812.0, + "READS_IN_UNIQUE_UNPAIRED": 529253.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 65079450.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 166744530.0, + "READS_IN_DUPLICATE_UNPAIRED": 655331.0, + "READS_UNMAPPED": 19034476.0 + }, + "P4107_1004": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 917143.0, + "READ_PAIRS_EXAMINED": 488850042.0, + "UNMAPPED_READS": 17713571.0, + "UNPAIRED_READ_DUPLICATES": 618736.0, + "READ_PAIR_DUPLICATES": 192412570.0, + "READ_PAIR_OPTICAL_DUPLICATES": 50767101.0, + "PERCENT_DUPLICATION": 0.393866, + "ESTIMATED_LIBRARY_SIZE": 521814268.0, + "READS_IN_DUPLICATE_PAIRS": 384825140.0, + "READS_IN_UNIQUE_PAIRS": 592874944.0, + "READS_IN_UNIQUE_UNPAIRED": 298407.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 101534202.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 283290938.0, + "READS_IN_DUPLICATE_UNPAIRED": 618736.0, + "READS_UNMAPPED": 17713571.0 + } + }, + { + "P4107_1003": { + "percent_gc": 41.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 431379000.0, + "percent_duplicates": 6.795406093848555, + "percent_fails": 8.333333333333332 + }, + "P4107_1004": { + "percent_gc": 40.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 498165399.0, + "percent_duplicates": 3.940427809644561, + "percent_fails": 16.666666666666664 + }, + "P4107_1005": { + "percent_gc": 41.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 484233426.0, + "percent_duplicates": 6.603658645191075, + "percent_fails": 8.333333333333332 + }, + "P4107_1002": { + "percent_gc": 41.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 430185524.0, + "percent_duplicates": 2.1580757020873165, + "percent_fails": 16.666666666666664 + }, + "P4107_1001": { + "percent_gc": 41.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 383592756.0, + "percent_duplicates": 3.693292003886029, + "percent_fails": 16.666666666666664 + }, + "P4107_1006": { + "percent_gc": 41.0, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "total_sequences": 453238610.0, + "percent_duplicates": 1.7758820535142377, + "percent_fails": 8.333333333333332 + } + } + ], + "report_general_stats_headers": [ + { + "avg_gc": { + "title": "% GC", + "description": "Mean GC content", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "PuRd", + "format": "{:,.0f}", + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-avg_gc", + "colour": "55,126,184", + "hidden": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "median_insert_size": { + "title": "Ins. size", + "description": "Median insert size", + "min": 0, + "scale": "PuOr", + "format": "{:,.0f}", + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-median_insert_size", + "colour": "55,126,184", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 368.0, + "dmin": 0.0 + }, + "1_x_pc": { + "title": "≥ 1X", + "description": "Fraction of genome with at least 1X coverage", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-1_x_pc", + "format": "{:,.1f}", + "colour": "55,126,184", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "5_x_pc": { + "title": "≥ 5X", + "description": "Fraction of genome with at least 5X coverage", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-5_x_pc", + "format": "{:,.1f}", + "colour": "55,126,184", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "10_x_pc": { + "title": "≥ 10X", + "description": "Fraction of genome with at least 10X coverage", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-10_x_pc", + "format": "{:,.1f}", + "colour": "55,126,184", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "30_x_pc": { + "title": "≥ 30X", + "description": "Fraction of genome with at least 30X coverage", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn", + "hidden": false, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-30_x_pc", + "format": "{:,.1f}", + "colour": "55,126,184", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "50_x_pc": { + "title": "≥ 50X", + "description": "Fraction of genome with at least 50X coverage", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-50_x_pc", + "format": "{:,.1f}", + "colour": "55,126,184", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "median_coverage": { + "title": "Median cov", + "description": "Median coverage", + "min": 0, + "suffix": "X", + "scale": "BuPu", + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-median_coverage", + "format": "{:,.1f}", + "colour": "55,126,184", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 46.0, + "dmin": 0.0 + }, + "mean_coverage": { + "title": "Mean cov", + "description": "Mean coverage", + "min": 0, + "suffix": "X", + "scale": "BuPu", + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-mean_coverage", + "format": "{:,.1f}", + "colour": "55,126,184", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 47.04, + "dmin": 0.0 + }, + "percentage_aligned": { + "title": "% Aligned", + "description": "% mapped reads", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "YlGn", + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-percentage_aligned", + "format": "{:,.1f}", + "colour": "55,126,184", + "hidden": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "mapped_reads": { + "title": "M Aligned", + "description": "Number of mapped reads (millions)", + "scale": "RdYlGn", + "shared_key": "read_count", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-mapped_reads", + "modify": 1e-06, + "min": 0, + "suffix": " M", + "format": "{:,.1f}", + "colour": "55,126,184", + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "placement": 1000.0, + "dmax": 1002.8289269999999, + "dmin": 0.0 + }, + "total_reads": { + "title": "M Total reads", + "description": "Number of reads (millions)", + "scale": "Blues", + "shared_key": "read_count", + "hidden": true, + "namespace": "QualiMap", + "rid": "mqc-generalstats-qualimap-total_reads", + "modify": 1e-06, + "min": 0, + "suffix": " M", + "format": "{:,.1f}", + "colour": "55,126,184", + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "placement": 1000.0, + "dmax": 1002.8289269999999, + "dmin": 0.0 + } + }, + { + "Change_rate": { + "title": "Change rate", + "scale": "RdYlBu-rev", + "min": 0, + "format": "{:,.0f}", + "namespace": "SnpEff", + "description": "Change rate", + "rid": "mqc-generalstats-snpeff-Change_rate", + "colour": "77,175,74", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 765.0, + "dmin": 0.0 + }, + "Ts_Tv_ratio": { + "title": "Ts/Tv", + "description": "Transitions / Transversions ratio", + "format": "{:,.3f}", + "namespace": "SnpEff", + "rid": "mqc-generalstats-snpeff-Ts_Tv_ratio", + "scale": "GnBu", + "colour": "77,175,74", + "hidden": null, + "max": null, + "min": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 1.996252, + "dmin": 0 + }, + "Number_of_variants_before_filter": { + "title": "M Variants", + "description": "Number of variants before filter (millions)", + "scale": "PuRd", + "modify": 1e-06, + "min": 0, + "format": "{:,.2f}", + "suffix": "M", + "namespace": "SnpEff", + "rid": "mqc-generalstats-snpeff-Number_of_variants_before_filter", + "colour": "77,175,74", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "placement": 1000.0, + "dmax": 4.072201, + "dmin": 0.0 + } + }, + { + "known_titv": { + "title": "TiTV ratio (known)", + "description": "TiTV ratio from variants found in 'hapmap'", + "min": 0, + "scale": "Blues", + "shared_key": "titv_ratio", + "namespace": "GATK: GATK VariantEval", + "rid": "mqc-generalstats-gatk_gatk_varianteval-known_titv", + "format": "{:,.1f}", + "colour": "152,78,163", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "modify": null, + "placement": 1000.0, + "dmax": 2.07, + "dmin": 0.0 + }, + "novel_titv": { + "title": "TiTV ratio (novel)", + "description": "TiTV ratio from variants NOT found in 'hapmap'", + "min": 0, + "scale": "Blues", + "shared_key": "titv_ratio", + "namespace": "GATK: GATK VariantEval", + "rid": "mqc-generalstats-gatk_gatk_varianteval-novel_titv", + "format": "{:,.1f}", + "colour": "152,78,163", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "modify": null, + "placement": 1000.0, + "dmax": 2.07, + "dmin": 0.0 + } + }, + { + "PERCENT_DUPLICATION": { + "title": "Duplication", + "description": "Mark Duplicates - Percent Duplication", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "OrRd", + "modify": 100.0, + "namespace": "Picard: Mark Duplicates", + "rid": "mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION", + "format": "{:,.1f}", + "colour": "255,127,0", + "hidden": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + } + }, + { + "percent_duplicates": { + "title": "% Dups", + "description": "% Duplicate Reads", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "RdYlGn-rev", + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-percent_duplicates", + "format": "{:,.1f}", + "colour": "228,26,28", + "hidden": true, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "percent_gc": { + "title": "% GC", + "description": "Average % GC Content", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "PuRd", + "format": "{:,.0f}", + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-percent_gc", + "colour": "228,26,28", + "hidden": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "avg_sequence_length": { + "title": "Average Read Length", + "description": "Average Read Length (bp)", + "min": 0, + "suffix": " bp", + "scale": "RdYlGn", + "format": "{:,.0f}", + "hidden": true, + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-avg_sequence_length", + "colour": "228,26,28", + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 151.0, + "dmin": 0.0 + }, + "median_sequence_length": { + "title": "Median Read Length", + "description": "Median Read Length (bp)", + "min": 0, + "suffix": " bp", + "scale": "RdYlGn", + "format": "{:,.0f}", + "hidden": true, + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-median_sequence_length", + "colour": "228,26,28", + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 151.0, + "dmin": 0.0 + }, + "percent_fails": { + "title": "% Failed", + "description": "Percentage of modules failed in FastQC report (includes those not plotted here)", + "max": 100, + "min": 0, + "suffix": "%", + "scale": "Reds", + "format": "{:,.0f}", + "hidden": true, + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-percent_fails", + "colour": "228,26,28", + "ceiling": null, + "floor": null, + "minRange": null, + "shared_key": null, + "modify": null, + "placement": 1000.0, + "dmax": 100.0, + "dmin": 0.0 + }, + "total_sequences": { + "title": "M Seqs", + "description": "Total Sequences (millions)", + "min": 0, + "scale": "Blues", + "modify": 1e-06, + "shared_key": "read_count", + "namespace": "FastQC", + "rid": "mqc-generalstats-fastqc-total_sequences", + "suffix": " M", + "format": "{:,.1f}", + "colour": "228,26,28", + "hidden": null, + "max": null, + "ceiling": null, + "floor": null, + "minRange": null, + "placement": 1000.0, + "dmax": 1002.8289269999999, + "dmin": 0.0 + } + } + ], + "report_multiqc_command": "/Users/ewels/.miniconda3/miniconda3/envs/py3.12/bin/multiqc . --disable-ngi -t default", + "report_plot_data": { + "qualimap_coverage_histogram": { + "id": "qualimap_coverage_histogram", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "Qualimap BamQC: Coverage histogram", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "qualimap_coverage_histogram", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "Qualimap BamQC: Coverage histogram" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "X", + "title": { + "text": "Coverage (X)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 84 + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Genome bin counts" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 0, + 239014896.0 + ], + [ + 1, + 679301.0 + ], + [ + 2, + 629433.0 + ], + [ + 3, + 623176.0 + ], + [ + 4, + 675832.0 + ], + [ + 5, + 784959.0 + ], + [ + 6, + 974130.0 + ], + [ + 7, + 1333021.0 + ], + [ + 8, + 1893388.0 + ], + [ + 9, + 2743328.0 + ], + [ + 10, + 3944872.0 + ], + [ + 11, + 5494264.0 + ], + [ + 12, + 7311066.0 + ], + [ + 13, + 9316103.0 + ], + [ + 14, + 11354708.0 + ], + [ + 15, + 13312247.0 + ], + [ + 16, + 14950503.0 + ], + [ + 17, + 16334009.0 + ], + [ + 18, + 17464018.0 + ], + [ + 19, + 18522875.0 + ], + [ + 20, + 19693650.0 + ], + [ + 21, + 21390076.0 + ], + [ + 22, + 23849738.0 + ], + [ + 23, + 27458004.0 + ], + [ + 24, + 32505726.0 + ], + [ + 25, + 39144193.0 + ], + [ + 26, + 47425702.0 + ], + [ + 27, + 57381205.0 + ], + [ + 28, + 68746358.0 + ], + [ + 29, + 81040739.0 + ], + [ + 30, + 93781997.0 + ], + [ + 31, + 106435058.0 + ], + [ + 32, + 118318751.0 + ], + [ + 33, + 128738675.0 + ], + [ + 34, + 137201082.0 + ], + [ + 35, + 143189844.0 + ], + [ + 36, + 146436571.0 + ], + [ + 37, + 146862094.0 + ], + [ + 38, + 144521686.0 + ], + [ + 39, + 139503866.0 + ], + [ + 40, + 132276517.0 + ], + [ + 41, + 123203417.0 + ], + [ + 42, + 112773733.0 + ], + [ + 43, + 101499242.0 + ], + [ + 44, + 89840168.0 + ], + [ + 45, + 78258473.0 + ], + [ + 46, + 67224933.0 + ], + [ + 47, + 56841809.0 + ], + [ + 48, + 47403891.0 + ], + [ + 49, + 38960298.0 + ], + [ + 50, + 31609604.0 + ], + [ + 51, + 25356434.0 + ], + [ + 52, + 20103924.0 + ], + [ + 53, + 15757935.0 + ], + [ + 54, + 12242276.0 + ], + [ + 55, + 9414876.0 + ], + [ + 56, + 7197708.0 + ], + [ + 57, + 5493377.0 + ], + [ + 58, + 4172082.0 + ], + [ + 59, + 3181735.0 + ], + [ + 60, + 2435028.0 + ], + [ + 61, + 1885903.0 + ], + [ + 62, + 1482886.0 + ], + [ + 63, + 1185955.0 + ], + [ + 64, + 967247.0 + ], + [ + 65, + 809714.0 + ], + [ + 66, + 697074.0 + ], + [ + 67, + 616725.0 + ], + [ + 68, + 558588.0 + ], + [ + 69, + 510670.0 + ], + [ + 70, + 474396.0 + ], + [ + 71, + 444263.0 + ], + [ + 72, + 419185.0 + ], + [ + 73, + 401110.0 + ], + [ + 74, + 383864.0 + ], + [ + 75, + 365284.0 + ], + [ + 76, + 349994.0 + ], + [ + 77, + 335119.0 + ], + [ + 78, + 320025.0 + ], + [ + 79, + 307330.0 + ], + [ + 80, + 294648.0 + ], + [ + 81, + 283619.0 + ], + [ + 82, + 271531.0 + ], + [ + 83, + 258755.0 + ], + [ + 84, + 247692.0 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 0, + 238902806.0 + ], + [ + 1, + 600465.0 + ], + [ + 2, + 537380.0 + ], + [ + 3, + 523006.0 + ], + [ + 4, + 541354.0 + ], + [ + 5, + 593433.0 + ], + [ + 6, + 674994.0 + ], + [ + 7, + 831518.0 + ], + [ + 8, + 1081976.0 + ], + [ + 9, + 1478525.0 + ], + [ + 10, + 2073827.0 + ], + [ + 11, + 2900404.0 + ], + [ + 12, + 4017675.0 + ], + [ + 13, + 5363232.0 + ], + [ + 14, + 6920095.0 + ], + [ + 15, + 8604494.0 + ], + [ + 16, + 10266049.0 + ], + [ + 17, + 11829518.0 + ], + [ + 18, + 13182255.0 + ], + [ + 19, + 14296149.0 + ], + [ + 20, + 15194032.0 + ], + [ + 21, + 15892948.0 + ], + [ + 22, + 16560559.0 + ], + [ + 23, + 17379725.0 + ], + [ + 24, + 18595428.0 + ], + [ + 25, + 20373358.0 + ], + [ + 26, + 22970943.0 + ], + [ + 27, + 26617237.0 + ], + [ + 28, + 31444043.0 + ], + [ + 29, + 37566691.0 + ], + [ + 30, + 44956409.0 + ], + [ + 31, + 53532894.0 + ], + [ + 32, + 63091396.0 + ], + [ + 33, + 73348129.0 + ], + [ + 34, + 83930840.0 + ], + [ + 35, + 94455273.0 + ], + [ + 36, + 104479868.0 + ], + [ + 37, + 113603434.0 + ], + [ + 38, + 121403119.0 + ], + [ + 39, + 127539627.0 + ], + [ + 40, + 131691705.0 + ], + [ + 41, + 133643597.0 + ], + [ + 42, + 133534769.0 + ], + [ + 43, + 131213968.0 + ], + [ + 44, + 126938557.0 + ], + [ + 45, + 121031914.0 + ], + [ + 46, + 113647570.0 + ], + [ + 47, + 105175354.0 + ], + [ + 48, + 96019828.0 + ], + [ + 49, + 86492084.0 + ], + [ + 50, + 76855285.0 + ], + [ + 51, + 67420949.0 + ], + [ + 52, + 58398183.0 + ], + [ + 53, + 49983101.0 + ], + [ + 54, + 42283628.0 + ], + [ + 55, + 35378934.0 + ], + [ + 56, + 29263536.0 + ], + [ + 57, + 23964438.0 + ], + [ + 58, + 19431795.0 + ], + [ + 59, + 15616264.0 + ], + [ + 60, + 12450744.0 + ], + [ + 61, + 9851379.0 + ], + [ + 62, + 7743880.0 + ], + [ + 63, + 6054459.0 + ], + [ + 64, + 4724827.0 + ], + [ + 65, + 3681223.0 + ], + [ + 66, + 2876954.0 + ], + [ + 67, + 2249620.0 + ], + [ + 68, + 1774300.0 + ], + [ + 69, + 1422175.0 + ], + [ + 70, + 1150100.0 + ], + [ + 71, + 954148.0 + ], + [ + 72, + 802452.0 + ], + [ + 73, + 692182.0 + ], + [ + 74, + 610005.0 + ], + [ + 75, + 546971.0 + ], + [ + 76, + 498885.0 + ], + [ + 77, + 462064.0 + ], + [ + 78, + 431326.0 + ], + [ + 79, + 409176.0 + ], + [ + 80, + 388725.0 + ], + [ + 81, + 369294.0 + ], + [ + 82, + 353575.0 + ], + [ + 83, + 341763.0 + ], + [ + 84, + 327324.0 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 0, + 238916149.0 + ], + [ + 1, + 586144.0 + ], + [ + 2, + 536001.0 + ], + [ + 3, + 519373.0 + ], + [ + 4, + 529077.0 + ], + [ + 5, + 576240.0 + ], + [ + 6, + 662627.0 + ], + [ + 7, + 823492.0 + ], + [ + 8, + 1081555.0 + ], + [ + 9, + 1489551.0 + ], + [ + 10, + 2091144.0 + ], + [ + 11, + 2937789.0 + ], + [ + 12, + 4030061.0 + ], + [ + 13, + 5389607.0 + ], + [ + 14, + 6929693.0 + ], + [ + 15, + 8580534.0 + ], + [ + 16, + 10228491.0 + ], + [ + 17, + 11762211.0 + ], + [ + 18, + 13108421.0 + ], + [ + 19, + 14181230.0 + ], + [ + 20, + 15037205.0 + ], + [ + 21, + 15760908.0 + ], + [ + 22, + 16439459.0 + ], + [ + 23, + 17261217.0 + ], + [ + 24, + 18473148.0 + ], + [ + 25, + 20293216.0 + ], + [ + 26, + 22908837.0 + ], + [ + 27, + 26565887.0 + ], + [ + 28, + 31390878.0 + ], + [ + 29, + 37495372.0 + ], + [ + 30, + 44787423.0 + ], + [ + 31, + 53291120.0 + ], + [ + 32, + 62725662.0 + ], + [ + 33, + 72924793.0 + ], + [ + 34, + 83396612.0 + ], + [ + 35, + 93834779.0 + ], + [ + 36, + 103809494.0 + ], + [ + 37, + 112830932.0 + ], + [ + 38, + 120569563.0 + ], + [ + 39, + 126621176.0 + ], + [ + 40, + 130801044.0 + ], + [ + 41, + 132880595.0 + ], + [ + 42, + 132853153.0 + ], + [ + 43, + 130732004.0 + ], + [ + 44, + 126674154.0 + ], + [ + 45, + 120895104.0 + ], + [ + 46, + 113731106.0 + ], + [ + 47, + 105399130.0 + ], + [ + 48, + 96379779.0 + ], + [ + 49, + 86940954.0 + ], + [ + 50, + 77406042.0 + ], + [ + 51, + 68073430.0 + ], + [ + 52, + 59147887.0 + ], + [ + 53, + 50746627.0 + ], + [ + 54, + 43029204.0 + ], + [ + 55, + 36093792.0 + ], + [ + 56, + 29936736.0 + ], + [ + 57, + 24573079.0 + ], + [ + 58, + 19976792.0 + ], + [ + 59, + 16090252.0 + ], + [ + 60, + 12855436.0 + ], + [ + 61, + 10193957.0 + ], + [ + 62, + 8032379.0 + ], + [ + 63, + 6308134.0 + ], + [ + 64, + 4924239.0 + ], + [ + 65, + 3844153.0 + ], + [ + 66, + 3000122.0 + ], + [ + 67, + 2358448.0 + ], + [ + 68, + 1862238.0 + ], + [ + 69, + 1490477.0 + ], + [ + 70, + 1203236.0 + ], + [ + 71, + 992919.0 + ], + [ + 72, + 837322.0 + ], + [ + 73, + 716684.0 + ], + [ + 74, + 626487.0 + ], + [ + 75, + 557845.0 + ], + [ + 76, + 508848.0 + ], + [ + 77, + 471307.0 + ], + [ + 78, + 442228.0 + ], + [ + 79, + 414610.0 + ], + [ + 80, + 395256.0 + ], + [ + 81, + 376454.0 + ], + [ + 82, + 360814.0 + ], + [ + 83, + 347790.0 + ], + [ + 84, + 333272.0 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 0, + 238960329.0 + ], + [ + 1, + 520491.0 + ], + [ + 2, + 475024.0 + ], + [ + 3, + 474722.0 + ], + [ + 4, + 505887.0 + ], + [ + 5, + 578443.0 + ], + [ + 6, + 700061.0 + ], + [ + 7, + 880943.0 + ], + [ + 8, + 1156965.0 + ], + [ + 9, + 1521236.0 + ], + [ + 10, + 1987591.0 + ], + [ + 11, + 2570147.0 + ], + [ + 12, + 3262809.0 + ], + [ + 13, + 4020601.0 + ], + [ + 14, + 4879264.0 + ], + [ + 15, + 5784883.0 + ], + [ + 16, + 6715435.0 + ], + [ + 17, + 7699946.0 + ], + [ + 18, + 8680499.0 + ], + [ + 19, + 9654558.0 + ], + [ + 20, + 10670225.0 + ], + [ + 21, + 11712029.0 + ], + [ + 22, + 12825316.0 + ], + [ + 23, + 14052495.0 + ], + [ + 24, + 15456922.0 + ], + [ + 25, + 17083068.0 + ], + [ + 26, + 18934549.0 + ], + [ + 27, + 21148498.0 + ], + [ + 28, + 23672611.0 + ], + [ + 29, + 26627741.0 + ], + [ + 30, + 29961609.0 + ], + [ + 31, + 33710917.0 + ], + [ + 32, + 37810497.0 + ], + [ + 33, + 42236096.0 + ], + [ + 34, + 46963003.0 + ], + [ + 35, + 51878470.0 + ], + [ + 36, + 56923760.0 + ], + [ + 37, + 61943744.0 + ], + [ + 38, + 66909375.0 + ], + [ + 39, + 71646073.0 + ], + [ + 40, + 76106602.0 + ], + [ + 41, + 80148179.0 + ], + [ + 42, + 83737539.0 + ], + [ + 43, + 86721792.0 + ], + [ + 44, + 89150594.0 + ], + [ + 45, + 90857862.0 + ], + [ + 46, + 91919777.0 + ], + [ + 47, + 92265626.0 + ], + [ + 48, + 91927217.0 + ], + [ + 49, + 90935576.0 + ], + [ + 50, + 89297888.0 + ], + [ + 51, + 87040084.0 + ], + [ + 52, + 84335379.0 + ], + [ + 53, + 81137924.0 + ], + [ + 54, + 77624953.0 + ], + [ + 55, + 73736898.0 + ], + [ + 56, + 69670499.0 + ], + [ + 57, + 65465206.0 + ], + [ + 58, + 61123609.0 + ], + [ + 59, + 56801538.0 + ], + [ + 60, + 52469355.0 + ], + [ + 61, + 48271952.0 + ], + [ + 62, + 44139724.0 + ], + [ + 63, + 40153461.0 + ], + [ + 64, + 36410526.0 + ], + [ + 65, + 32813133.0 + ], + [ + 66, + 29458167.0 + ], + [ + 67, + 26329479.0 + ], + [ + 68, + 23429653.0 + ], + [ + 69, + 20793545.0 + ], + [ + 70, + 18385034.0 + ], + [ + 71, + 16190073.0 + ], + [ + 72, + 14198417.0 + ], + [ + 73, + 12423274.0 + ], + [ + 74, + 10840804.0 + ], + [ + 75, + 9418859.0 + ], + [ + 76, + 8183638.0 + ], + [ + 77, + 7082819.0 + ], + [ + 78, + 6120308.0 + ], + [ + 79, + 5273116.0 + ], + [ + 80, + 4540121.0 + ], + [ + 81, + 3903978.0 + ], + [ + 82, + 3355410.0 + ], + [ + 83, + 2880463.0 + ], + [ + 84, + 2477091.0 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 0, + 238892270.0 + ], + [ + 1, + 541474.0 + ], + [ + 2, + 480769.0 + ], + [ + 3, + 468752.0 + ], + [ + 4, + 481871.0 + ], + [ + 5, + 512619.0 + ], + [ + 6, + 579593.0 + ], + [ + 7, + 689470.0 + ], + [ + 8, + 869428.0 + ], + [ + 9, + 1138515.0 + ], + [ + 10, + 1518989.0 + ], + [ + 11, + 2038965.0 + ], + [ + 12, + 2711761.0 + ], + [ + 13, + 3536263.0 + ], + [ + 14, + 4504891.0 + ], + [ + 15, + 5595387.0 + ], + [ + 16, + 6756019.0 + ], + [ + 17, + 7946071.0 + ], + [ + 18, + 9094275.0 + ], + [ + 19, + 10176734.0 + ], + [ + 20, + 11186726.0 + ], + [ + 21, + 12091413.0 + ], + [ + 22, + 12936255.0 + ], + [ + 23, + 13756271.0 + ], + [ + 24, + 14584472.0 + ], + [ + 25, + 15560470.0 + ], + [ + 26, + 16780690.0 + ], + [ + 27, + 18345380.0 + ], + [ + 28, + 20374515.0 + ], + [ + 29, + 22960460.0 + ], + [ + 30, + 26138874.0 + ], + [ + 31, + 30044659.0 + ], + [ + 32, + 34648697.0 + ], + [ + 33, + 39920215.0 + ], + [ + 34, + 45865762.0 + ], + [ + 35, + 52332096.0 + ], + [ + 36, + 59224696.0 + ], + [ + 37, + 66309450.0 + ], + [ + 38, + 73469082.0 + ], + [ + 39, + 80508423.0 + ], + [ + 40, + 87188998.0 + ], + [ + 41, + 93259722.0 + ], + [ + 42, + 98620006.0 + ], + [ + 43, + 103077627.0 + ], + [ + 44, + 106474616.0 + ], + [ + 45, + 108731412.0 + ], + [ + 46, + 109863287.0 + ], + [ + 47, + 109757433.0 + ], + [ + 48, + 108485966.0 + ], + [ + 49, + 106082160.0 + ], + [ + 50, + 102709690.0 + ], + [ + 51, + 98469342.0 + ], + [ + 52, + 93503648.0 + ], + [ + 53, + 87942716.0 + ], + [ + 54, + 81927122.0 + ], + [ + 55, + 75700502.0 + ], + [ + 56, + 69292407.0 + ], + [ + 57, + 62944193.0 + ], + [ + 58, + 56667192.0 + ], + [ + 59, + 50619937.0 + ], + [ + 60, + 44844418.0 + ], + [ + 61, + 39469947.0 + ], + [ + 62, + 34463357.0 + ], + [ + 63, + 29929266.0 + ], + [ + 64, + 25748869.0 + ], + [ + 65, + 22050925.0 + ], + [ + 66, + 18757839.0 + ], + [ + 67, + 15853769.0 + ], + [ + 68, + 13324045.0 + ], + [ + 69, + 11141890.0 + ], + [ + 70, + 9277583.0 + ], + [ + 71, + 7680612.0 + ], + [ + 72, + 6346439.0 + ], + [ + 73, + 5232014.0 + ], + [ + 74, + 4306135.0 + ], + [ + 75, + 3541256.0 + ], + [ + 76, + 2908343.0 + ], + [ + 77, + 2387032.0 + ], + [ + 78, + 1968762.0 + ], + [ + 79, + 1624395.0 + ], + [ + 80, + 1354643.0 + ], + [ + 81, + 1137847.0 + ], + [ + 82, + 964955.0 + ], + [ + 83, + 826352.0 + ], + [ + 84, + 712959.0 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 0, + 238876079.0 + ], + [ + 1, + 577024.0 + ], + [ + 2, + 519973.0 + ], + [ + 3, + 505070.0 + ], + [ + 4, + 509058.0 + ], + [ + 5, + 541186.0 + ], + [ + 6, + 613494.0 + ], + [ + 7, + 720393.0 + ], + [ + 8, + 910109.0 + ], + [ + 9, + 1202955.0 + ], + [ + 10, + 1642059.0 + ], + [ + 11, + 2271150.0 + ], + [ + 12, + 3125102.0 + ], + [ + 13, + 4194757.0 + ], + [ + 14, + 5484460.0 + ], + [ + 15, + 6927668.0 + ], + [ + 16, + 8437330.0 + ], + [ + 17, + 9933448.0 + ], + [ + 18, + 11323031.0 + ], + [ + 19, + 12518185.0 + ], + [ + 20, + 13509393.0 + ], + [ + 21, + 14311098.0 + ], + [ + 22, + 14962472.0 + ], + [ + 23, + 15593364.0 + ], + [ + 24, + 16283595.0 + ], + [ + 25, + 17226299.0 + ], + [ + 26, + 18650748.0 + ], + [ + 27, + 20745379.0 + ], + [ + 28, + 23665275.0 + ], + [ + 29, + 27519769.0 + ], + [ + 30, + 32437508.0 + ], + [ + 31, + 38445816.0 + ], + [ + 32, + 45521661.0 + ], + [ + 33, + 53545707.0 + ], + [ + 34, + 62356422.0 + ], + [ + 35, + 71688570.0 + ], + [ + 36, + 81212426.0 + ], + [ + 37, + 90622091.0 + ], + [ + 38, + 99614422.0 + ], + [ + 39, + 107735444.0 + ], + [ + 40, + 114709157.0 + ], + [ + 41, + 120307341.0 + ], + [ + 42, + 124232266.0 + ], + [ + 43, + 126376798.0 + ], + [ + 44, + 126636121.0 + ], + [ + 45, + 125112325.0 + ], + [ + 46, + 121876174.0 + ], + [ + 47, + 117085548.0 + ], + [ + 48, + 111044921.0 + ], + [ + 49, + 103907172.0 + ], + [ + 50, + 96000821.0 + ], + [ + 51, + 87610922.0 + ], + [ + 52, + 78975172.0 + ], + [ + 53, + 70387068.0 + ], + [ + 54, + 62007233.0 + ], + [ + 55, + 54016065.0 + ], + [ + 56, + 46550826.0 + ], + [ + 57, + 39712367.0 + ], + [ + 58, + 33510278.0 + ], + [ + 59, + 28024942.0 + ], + [ + 60, + 23229705.0 + ], + [ + 61, + 19077971.0 + ], + [ + 62, + 15538211.0 + ], + [ + 63, + 12563313.0 + ], + [ + 64, + 10080165.0 + ], + [ + 65, + 8051695.0 + ], + [ + 66, + 6400246.0 + ], + [ + 67, + 5074104.0 + ], + [ + 68, + 4006927.0 + ], + [ + 69, + 3168388.0 + ], + [ + 70, + 2507832.0 + ], + [ + 71, + 1994923.0 + ], + [ + 72, + 1602156.0 + ], + [ + 73, + 1303115.0 + ], + [ + 74, + 1071278.0 + ], + [ + 75, + 894008.0 + ], + [ + 76, + 764295.0 + ], + [ + 77, + 663178.0 + ], + [ + 78, + 586183.0 + ], + [ + 79, + 525477.0 + ], + [ + 80, + 479960.0 + ], + [ + 81, + 445479.0 + ], + [ + 82, + 418694.0 + ], + [ + 83, + 395291.0 + ], + [ + 84, + 375271.0 + ] + ], + "color": "#f15c80", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "qualimap_coverage_histogram", + "title": "Qualimap BamQC: Coverage histogram", + "ylab": "Genome bin counts", + "xlab": "Coverage (X)", + "ymin": 0, + "xmin": 0, + "xmax": 84, + "xDecimals": false, + "tt_label": "{point.x}X: {point.y}" + } + }, + "qualimap_genome_fraction": { + "id": "qualimap_genome_fraction", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "Qualimap BamQC: Genome fraction covered by at least X reads", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "qualimap_genome_fraction", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "Qualimap BamQC: Genome fraction covered by at least X reads" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "X", + "title": { + "text": "Coverage (X)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 84 + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "%", + "title": { + "text": "Fraction of reference (%)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 100 + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y:.2f}%", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29432810535144 + ], + [ + 2, + 92.27242791958349 + ], + [ + 3, + 92.25213544301056 + ], + [ + 4, + 92.23204468771043 + ], + [ + 5, + 92.21025634005906 + ], + [ + 6, + 92.18494981479232 + ], + [ + 7, + 92.15354454972996 + ], + [ + 8, + 92.11056889161584 + ], + [ + 9, + 92.0495273961215 + ], + [ + 10, + 91.9610844336904 + ], + [ + 11, + 91.83390453901812 + ], + [ + 12, + 91.65677333759467 + ], + [ + 13, + 91.42106971937281 + ], + [ + 14, + 91.12072512053764 + ], + [ + 15, + 90.75465733241309 + ], + [ + 16, + 90.32547986573954 + ], + [ + 17, + 89.84348617954704 + ], + [ + 18, + 89.3168892344 + ], + [ + 19, + 88.75386159502544 + ], + [ + 20, + 88.15669715178677 + ], + [ + 21, + 87.5217877471945 + ], + [ + 22, + 86.83218676325583 + ], + [ + 23, + 86.06328800892325 + ], + [ + 24, + 85.17806130026678 + ], + [ + 25, + 84.13009958974081 + ], + [ + 26, + 82.86811837900154 + ], + [ + 27, + 81.33914715126109 + ], + [ + 28, + 79.48921751905287 + ], + [ + 29, + 77.27288335927712 + ], + [ + 30, + 74.66018701572433 + ], + [ + 31, + 71.63672148867653 + ], + [ + 32, + 68.20533018729132 + ], + [ + 33, + 64.39081699397713 + ], + [ + 34, + 60.24037279027447 + ], + [ + 35, + 55.817106545467816 + ], + [ + 36, + 51.20076683202205 + ], + [ + 37, + 46.47975492695899 + ], + [ + 38, + 41.74502446009707 + ], + [ + 39, + 37.085747098666744 + ], + [ + 40, + 32.588240719687676 + ], + [ + 41, + 28.32373898181732 + ], + [ + 42, + 24.351747597223593 + ], + [ + 43, + 20.71600187854378 + ], + [ + 44, + 17.443737808410123 + ], + [ + 45, + 14.54735407185797 + ], + [ + 46, + 12.024356024429943 + ], + [ + 47, + 9.857071535024177 + ], + [ + 48, + 8.024531649927304 + ], + [ + 49, + 6.496263593464063 + ], + [ + 50, + 5.240211027996628 + ], + [ + 51, + 4.221139659558693 + ], + [ + 52, + 3.4036660874416182 + ], + [ + 53, + 2.755529738069692 + ], + [ + 54, + 2.2475050129195124 + ], + [ + 55, + 1.8528226576418292 + ], + [ + 56, + 1.549293686858346 + ], + [ + 57, + 1.317244650711716 + ], + [ + 58, + 1.1401420455435058 + ], + [ + 59, + 1.0056370605087273 + ], + [ + 60, + 0.9030601651937189 + ], + [ + 61, + 0.8245565776086075 + ], + [ + 62, + 0.7637563932421344 + ], + [ + 63, + 0.7159491930868443 + ], + [ + 64, + 0.6777148392254101 + ], + [ + 65, + 0.6465314772349375 + ], + [ + 66, + 0.620426868204614 + ], + [ + 67, + 0.5979536934352463 + ], + [ + 68, + 0.5780709138313042 + ], + [ + 69, + 0.560062430158019 + ], + [ + 70, + 0.5435987890532397 + ], + [ + 71, + 0.5283045961585269 + ], + [ + 72, + 0.513981869959352 + ], + [ + 73, + 0.500467640816252 + ], + [ + 74, + 0.4875361369418554 + ], + [ + 75, + 0.47516063196007646 + ], + [ + 76, + 0.46338413309129967 + ], + [ + 77, + 0.45210057305286744 + ], + [ + 78, + 0.44129657253708904 + ], + [ + 79, + 0.43097919194970963 + ], + [ + 80, + 0.4210710892204875 + ], + [ + 81, + 0.41157184523857937 + ], + [ + 82, + 0.4024281684482912 + ], + [ + 83, + 0.39367420026370653 + ], + [ + 84, + 0.38533212132022604 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29794180799979 + ], + [ + 2, + 92.27858323934296 + ], + [ + 3, + 92.26125848665163 + ], + [ + 4, + 92.24439714159583 + ], + [ + 5, + 92.22694426994362 + ], + [ + 6, + 92.20781240801374 + ], + [ + 7, + 92.18605107689211 + ], + [ + 8, + 92.15924352225964 + ], + [ + 9, + 92.12436137811962 + ], + [ + 10, + 92.07669477353262 + ], + [ + 11, + 92.00983605177218 + ], + [ + 12, + 91.91632906973904 + ], + [ + 13, + 91.78680205762623 + ], + [ + 14, + 91.61389523558917 + ], + [ + 15, + 91.3907962470232 + ], + [ + 16, + 91.11339342111954 + ], + [ + 17, + 90.78242323234777 + ], + [ + 18, + 90.4010479042601 + ], + [ + 19, + 89.97606128810547 + ], + [ + 20, + 89.51516351397257 + ], + [ + 21, + 89.025318624352 + ], + [ + 22, + 88.5129411751795 + ], + [ + 23, + 87.97904041760509 + ], + [ + 24, + 87.41873032517796 + ], + [ + 25, + 86.81922682432268 + ], + [ + 26, + 86.16240411256912 + ], + [ + 27, + 85.42183709004901 + ], + [ + 28, + 84.5637161172704 + ], + [ + 29, + 83.54998231885801 + ], + [ + 30, + 82.33885866147037 + ], + [ + 31, + 80.88949570078015 + ], + [ + 32, + 79.16363290461786 + ], + [ + 33, + 77.1296107365964 + ], + [ + 34, + 74.76491872108137 + ], + [ + 35, + 72.05904755695842 + ], + [ + 36, + 69.0138760858989 + ], + [ + 37, + 65.64551873295723 + ], + [ + 38, + 61.98302403844512 + ], + [ + 39, + 58.069072993314556 + ], + [ + 40, + 53.95728525257115 + ], + [ + 41, + 49.71163744166296 + ], + [ + 42, + 45.40306200750827 + ], + [ + 43, + 41.09799511141955 + ], + [ + 44, + 36.86774920489281 + ], + [ + 45, + 32.775339537580095 + ], + [ + 46, + 28.873355880187788 + ], + [ + 47, + 25.209438272123293 + ], + [ + 48, + 21.818658940413723 + ], + [ + 49, + 18.723047318163246 + ], + [ + 50, + 15.934603451516617 + ], + [ + 51, + 13.456843196859916 + ], + [ + 52, + 11.283239289679866 + ], + [ + 53, + 9.400523003069665 + ], + [ + 54, + 7.789103032897262 + ], + [ + 55, + 6.425908649048589 + ], + [ + 56, + 5.285316736373714 + ], + [ + 57, + 4.341880947780704 + ], + [ + 58, + 3.5692843462381467 + ], + [ + 59, + 2.942816962405834 + ], + [ + 60, + 2.439359610508352 + ], + [ + 61, + 2.0379563937470664 + ], + [ + 62, + 1.7203548736985794 + ], + [ + 63, + 1.4706976369733376 + ], + [ + 64, + 1.2755061433285146 + ], + [ + 65, + 1.123181048824879 + ], + [ + 66, + 1.0045010122089442 + ], + [ + 67, + 0.9117500416585701 + ], + [ + 68, + 0.8392238773995889 + ], + [ + 69, + 0.7820216951444925 + ], + [ + 70, + 0.7361717748668383 + ], + [ + 71, + 0.6990933609505973 + ], + [ + 72, + 0.6683323014937208 + ], + [ + 73, + 0.6424618142283391 + ], + [ + 74, + 0.6201463540932451 + ], + [ + 75, + 0.6004802225560079 + ], + [ + 76, + 0.5828462627801795 + ], + [ + 77, + 0.5667625617745244 + ], + [ + 78, + 0.5518659438736514 + ], + [ + 79, + 0.5379602974421789 + ], + [ + 80, + 0.5247687514091454 + ], + [ + 81, + 0.5122365312112576 + ], + [ + 82, + 0.5003307527669619 + ], + [ + 83, + 0.4889317438108408 + ], + [ + 84, + 0.47791354541482634 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29751163907807 + ], + [ + 2, + 92.2786147693741 + ], + [ + 3, + 92.26133447467146 + ], + [ + 4, + 92.24459025497671 + ], + [ + 5, + 92.22753318515709 + ], + [ + 6, + 92.20895561343715 + ], + [ + 7, + 92.18759298568472 + ], + [ + 8, + 92.16104418363905 + ], + [ + 9, + 92.12617561224249 + ], + [ + 10, + 92.07815353718176 + ], + [ + 11, + 92.01073652753873 + ], + [ + 12, + 91.91602427943805 + ], + [ + 13, + 91.78609795140945 + ], + [ + 14, + 91.61234081794986 + ], + [ + 15, + 91.38893239662434 + ], + [ + 16, + 91.11230202424422 + ], + [ + 17, + 90.78254267893811 + ], + [ + 18, + 90.40333728112213 + ], + [ + 19, + 89.98073102112183 + ], + [ + 20, + 89.52353815460465 + ], + [ + 21, + 89.03874925700151 + ], + [ + 22, + 88.53062868442538 + ], + [ + 23, + 88.00063210555305 + ], + [ + 24, + 87.4441426275737 + ], + [ + 25, + 86.84858134778935 + ], + [ + 26, + 86.19434235766703 + ], + [ + 27, + 85.45577758884197 + ], + [ + 28, + 84.59931210389449 + ], + [ + 29, + 83.58729230763484 + ], + [ + 30, + 82.37846792457299 + ], + [ + 31, + 80.9345529534959 + ], + [ + 32, + 79.2164847807978 + ], + [ + 33, + 77.19425361932817 + ], + [ + 34, + 74.84320965827243 + ], + [ + 35, + 72.15456162858096 + ], + [ + 36, + 69.12939444703066 + ], + [ + 37, + 65.78264947966476 + ], + [ + 38, + 62.14505970551359 + ], + [ + 39, + 58.25798191870001 + ], + [ + 40, + 54.175804391277 + ], + [ + 41, + 49.95887086366335 + ], + [ + 42, + 45.67489407656102 + ], + [ + 43, + 41.39180200020966 + ], + [ + 44, + 37.177094273567036 + ], + [ + 45, + 33.09320877273958 + ], + [ + 46, + 29.195635773383863 + ], + [ + 47, + 25.529025023518734 + ], + [ + 48, + 22.131031311187897 + ], + [ + 49, + 19.023815122232296 + ], + [ + 50, + 16.220900002951474 + ], + [ + 51, + 13.725383730545651 + ], + [ + 52, + 11.530744295506732 + ], + [ + 53, + 9.623858079997602 + ], + [ + 54, + 7.987822569381922 + ], + [ + 55, + 6.60059134044672 + ], + [ + 56, + 5.436952909368806 + ], + [ + 57, + 4.471813626950552 + ], + [ + 58, + 3.679594868270011 + ], + [ + 59, + 3.035557165031464 + ], + [ + 60, + 2.516818773871891 + ], + [ + 61, + 2.102368572079224 + ], + [ + 62, + 1.7737225786087756 + ], + [ + 63, + 1.5147643373305195 + ], + [ + 64, + 1.3113945403640703 + ], + [ + 65, + 1.1526405434381535 + ], + [ + 66, + 1.0287077583834976 + ], + [ + 67, + 0.9319859382676635 + ], + [ + 68, + 0.8559512359427084 + ], + [ + 69, + 0.7959139945075698 + ], + [ + 70, + 0.7478620658590721 + ], + [ + 71, + 0.7090705847296728 + ], + [ + 72, + 0.6770595755415151 + ], + [ + 73, + 0.6500649040371461 + ], + [ + 74, + 0.6269595166802664 + ], + [ + 75, + 0.606762017072281 + ], + [ + 76, + 0.5887774871956568 + ], + [ + 77, + 0.5723725860875345 + ], + [ + 78, + 0.5571779803770556 + ], + [ + 79, + 0.5429208611445093 + ], + [ + 80, + 0.5295541267789649 + ], + [ + 81, + 0.5168113517412484 + ], + [ + 82, + 0.5046747399401662 + ], + [ + 83, + 0.4930423507229028 + ], + [ + 84, + 0.4818298460920625 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29608730699667 + ], + [ + 2, + 92.27930704376939 + ], + [ + 3, + 92.26399260459702 + ], + [ + 4, + 92.24868790169194 + ], + [ + 5, + 92.2323784611382 + ], + [ + 6, + 92.21372986624998 + ], + [ + 7, + 92.19116039270453 + ], + [ + 8, + 92.16275941088502 + ], + [ + 9, + 92.12545967420421 + ], + [ + 10, + 92.0764160970611 + ], + [ + 11, + 92.01233756319952 + ], + [ + 12, + 91.92947783422676 + ], + [ + 13, + 91.82428717025698 + ], + [ + 14, + 91.69466582596513 + ], + [ + 15, + 91.53736179136065 + ], + [ + 16, + 91.35086123807744 + ], + [ + 17, + 91.13436034375728 + ], + [ + 18, + 90.88611950824671 + ], + [ + 19, + 90.60626633467788 + ], + [ + 20, + 90.29501018503667 + ], + [ + 21, + 89.95100964671006 + ], + [ + 22, + 89.57342208122792 + ], + [ + 23, + 89.15994292701994 + ], + [ + 24, + 88.70690038622705 + ], + [ + 25, + 88.20858010817554 + ], + [ + 26, + 87.65783402847525 + ], + [ + 27, + 87.04739750544304 + ], + [ + 28, + 86.36558482606664 + ], + [ + 29, + 85.60239652145299 + ], + [ + 30, + 84.74393690711297 + ], + [ + 31, + 83.77799573669424 + ], + [ + 32, + 82.6911795172159 + ], + [ + 33, + 81.4721957261153 + ], + [ + 34, + 80.11053374046702 + ], + [ + 35, + 78.59647960258016 + ], + [ + 36, + 76.92395427086876 + ], + [ + 37, + 75.08877234325485 + ], + [ + 38, + 73.0917496673539 + ], + [ + 39, + 70.93463854560189 + ], + [ + 40, + 68.6248196166677 + ], + [ + 41, + 66.17119637458907 + ], + [ + 42, + 63.58727553675325 + ], + [ + 43, + 60.887636260716924 + ], + [ + 44, + 58.09178676994729 + ], + [ + 45, + 55.21763441344719 + ], + [ + 46, + 52.28844093915739 + ], + [ + 47, + 49.3250120732374 + ], + [ + 48, + 46.35043327915942 + ], + [ + 49, + 43.38676455287987 + ], + [ + 50, + 40.45506563396865 + ], + [ + 51, + 37.57616462265648 + ], + [ + 52, + 34.770053621998805 + ], + [ + 53, + 32.05114040545671 + ], + [ + 54, + 29.435310885957094 + ], + [ + 55, + 26.932737077103294 + ], + [ + 56, + 24.55551142286136 + ], + [ + 57, + 22.30938360817302 + ], + [ + 58, + 20.198831477766984 + ], + [ + 59, + 18.228249376596235 + ], + [ + 60, + 16.397007800174105 + ], + [ + 61, + 14.705432752258105 + ], + [ + 62, + 13.149179020581798 + ], + [ + 63, + 11.72614540905181 + ], + [ + 64, + 10.431626108879962 + ], + [ + 65, + 9.257776396736622 + ], + [ + 66, + 8.199904101055665 + ], + [ + 67, + 7.250193546112833 + ], + [ + 68, + 6.401349688569161 + ], + [ + 69, + 5.645994178745756 + ], + [ + 70, + 4.9756249340748715 + ], + [ + 71, + 4.382904387586597 + ], + [ + 72, + 3.8609478376968847 + ], + [ + 73, + 3.4032008744055244 + ], + [ + 74, + 3.002683271095486 + ], + [ + 75, + 2.6531833859578096 + ], + [ + 76, + 2.34952600605979 + ], + [ + 77, + 2.0856912811622346 + ], + [ + 78, + 1.8573461854524558 + ], + [ + 79, + 1.6600317664289956 + ], + [ + 80, + 1.4900302207578773 + ], + [ + 81, + 1.3436599175948323 + ], + [ + 82, + 1.217798416678478 + ], + [ + 83, + 1.1096223616930905 + ], + [ + 84, + 1.0167582634543135 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29828148121867 + ], + [ + 2, + 92.28082474085097 + ], + [ + 3, + 92.26532508692515 + ], + [ + 4, + 92.25021285261502 + ], + [ + 5, + 92.2346776709854 + ], + [ + 6, + 92.21815119549342 + ], + [ + 7, + 92.1994655254152 + ], + [ + 8, + 92.17723749824988 + ], + [ + 9, + 92.14920775191968 + ], + [ + 10, + 92.11250283024343 + ], + [ + 11, + 92.06353169479763 + ], + [ + 12, + 91.99779689936182 + ], + [ + 13, + 91.9103716347762 + ], + [ + 14, + 91.79636500645633 + ], + [ + 15, + 91.65113049367869 + ], + [ + 16, + 91.4707391579622 + ], + [ + 17, + 91.25292986406775 + ], + [ + 18, + 90.99675413191765 + ], + [ + 19, + 90.70356111155584 + ], + [ + 20, + 90.37547037547421 + ], + [ + 21, + 90.01481820870994 + ], + [ + 22, + 89.62499957029048 + ], + [ + 23, + 89.20794382086345 + ], + [ + 24, + 88.7644513331824 + ], + [ + 25, + 88.2942582286125 + ], + [ + 26, + 87.79259963597599 + ], + [ + 27, + 87.25160201001292 + ], + [ + 28, + 86.66015988055398 + ], + [ + 29, + 86.00329986793537 + ], + [ + 30, + 85.26307080995146 + ], + [ + 31, + 84.42037192335336 + ], + [ + 32, + 83.45175327943168 + ], + [ + 33, + 82.33470369328751 + ], + [ + 34, + 81.04770407986665 + ], + [ + 35, + 79.56902421896777 + ], + [ + 36, + 77.8818743045321 + ], + [ + 37, + 75.97251182096412 + ], + [ + 38, + 73.83474185864928 + ], + [ + 39, + 71.46615040360862 + ], + [ + 40, + 68.87061555295406 + ], + [ + 41, + 66.05970366982537 + ], + [ + 42, + 63.05307592090825 + ], + [ + 43, + 59.87363639139762 + ], + [ + 44, + 56.550486300614295 + ], + [ + 45, + 53.11781967717214 + ], + [ + 46, + 49.61239554028549 + ], + [ + 47, + 46.07048055064565 + ], + [ + 48, + 42.53197821940655 + ], + [ + 49, + 39.034467088677694 + ], + [ + 50, + 35.61445297024546 + ], + [ + 51, + 32.30316490918225 + ], + [ + 52, + 29.12858268091001 + ], + [ + 53, + 26.114090929564473 + ], + [ + 54, + 23.278879709004144 + ], + [ + 55, + 20.637607001863568 + ], + [ + 56, + 18.197076137744595 + ], + [ + 57, + 15.963137742823598 + ], + [ + 58, + 13.933861295838327 + ], + [ + 59, + 12.106950939828325 + ], + [ + 60, + 10.47499982557735 + ], + [ + 61, + 9.029247375845214 + ], + [ + 62, + 7.756764085593848 + ], + [ + 63, + 6.645689730503697 + ], + [ + 64, + 5.680791275623878 + ], + [ + 65, + 4.850665875522089 + ], + [ + 66, + 4.139759585298641 + ], + [ + 67, + 3.535020068199077 + ], + [ + 68, + 3.023905722390477 + ], + [ + 69, + 2.5943478965069695 + ], + [ + 70, + 2.235141210802051 + ], + [ + 71, + 1.9360384696349515 + ], + [ + 72, + 1.6884209486662984 + ], + [ + 73, + 1.4838162254803364 + ], + [ + 74, + 1.3151397793386375 + ], + [ + 75, + 1.176313020005351 + ], + [ + 76, + 1.0621454208823427 + ], + [ + 77, + 0.9683824910811061 + ], + [ + 78, + 0.8914262607295604 + ], + [ + 79, + 0.8279547605656037 + ], + [ + 80, + 0.7755854099235097 + ], + [ + 81, + 0.7319126737590558 + ], + [ + 82, + 0.6952292879322989 + ], + [ + 83, + 0.6641198184074346 + ], + [ + 84, + 0.6374788119762428 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 0, + 100.0 + ], + [ + 1, + 92.29880346765438 + ], + [ + 2, + 92.28020062032667 + ], + [ + 3, + 92.26343705705455 + ], + [ + 4, + 92.24715395600535 + ], + [ + 5, + 92.23074228464515 + ], + [ + 6, + 92.2132948291946 + ], + [ + 7, + 92.19351621475487 + ], + [ + 8, + 92.17029125185046 + ], + [ + 9, + 92.1409499787343 + ], + [ + 10, + 92.10216755684698 + ], + [ + 11, + 92.04922873128669 + ], + [ + 12, + 91.97600845499257 + ], + [ + 13, + 91.87525736770756 + ], + [ + 14, + 91.74002135664414 + ], + [ + 15, + 91.56320622927515 + ], + [ + 16, + 91.33986309252332 + ], + [ + 17, + 91.06784951623611 + ], + [ + 18, + 90.74760214943369 + ], + [ + 19, + 90.38255560547714 + ], + [ + 20, + 89.97897813837855 + ], + [ + 21, + 89.54344482352666 + ], + [ + 22, + 89.08206510416322 + ], + [ + 23, + 88.59968554584118 + ], + [ + 24, + 88.09696647381388 + ], + [ + 25, + 87.57199484051726 + ], + [ + 26, + 87.01663109426309 + ], + [ + 27, + 86.41534411557296 + ], + [ + 28, + 85.7465277088159 + ], + [ + 29, + 84.98357591167508 + ], + [ + 30, + 84.09635794292338 + ], + [ + 31, + 83.05059553266742 + ], + [ + 32, + 81.81112950449973 + ], + [ + 33, + 80.34354321747008 + ], + [ + 34, + 78.61726733921275 + ], + [ + 35, + 76.60694021526544 + ], + [ + 36, + 74.2957512129844 + ], + [ + 37, + 71.67751980148097 + ], + [ + 38, + 68.75592741816364 + ], + [ + 39, + 65.54442861723928 + ], + [ + 40, + 62.07111378715319 + ], + [ + 41, + 58.372971361947485 + ], + [ + 42, + 54.49434742771537 + ], + [ + 43, + 50.48918667604112 + ], + [ + 44, + 46.41488772320816 + ], + [ + 45, + 42.332228379511804 + ], + [ + 46, + 38.29869514555539 + ], + [ + 47, + 34.36949314042556 + ], + [ + 48, + 30.594737543213224 + ], + [ + 49, + 27.01472750570841 + ], + [ + 50, + 23.664833468422913 + ], + [ + 51, + 20.56983461846468 + ], + [ + 52, + 17.745320202762127 + ], + [ + 53, + 15.199216284387784 + ], + [ + 54, + 12.929986789861566 + ], + [ + 55, + 10.930917273319698 + ], + [ + 56, + 9.189477384443444 + ], + [ + 57, + 7.688711542715842 + ], + [ + 58, + 6.408412802415285 + ], + [ + 59, + 5.32806504297497 + ], + [ + 60, + 4.424560652526619 + ], + [ + 61, + 3.675651325387958 + ], + [ + 62, + 3.060590978096381 + ], + [ + 63, + 2.559649999941534 + ], + [ + 64, + 2.154617637909283 + ], + [ + 65, + 1.8296402183683684 + ], + [ + 66, + 1.5700592428555187 + ], + [ + 67, + 1.3637198198890237 + ], + [ + 68, + 1.20013428092193 + ], + [ + 69, + 1.070953776758673 + ], + [ + 70, + 0.9688071793225795 + ], + [ + 71, + 0.8879564420576508 + ], + [ + 72, + 0.8236415296804407 + ], + [ + 73, + 0.7719891487340976 + ], + [ + 74, + 0.7299776389954119 + ], + [ + 75, + 0.6954403908401534 + ], + [ + 76, + 0.666618202623102 + ], + [ + 77, + 0.6419778701614782 + ], + [ + 78, + 0.620597478557144 + ], + [ + 79, + 0.6016993515206568 + ], + [ + 80, + 0.5847583431653272 + ], + [ + 81, + 0.5692847708296702 + ], + [ + 82, + 0.5549228416469963 + ], + [ + 83, + 0.5414244419980557 + ], + [ + 84, + 0.5286805385849919 + ] + ], + "color": "#f15c80", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "qualimap_genome_fraction", + "title": "Qualimap BamQC: Genome fraction covered by at least X reads", + "ylab": "Fraction of reference (%)", + "xlab": "Coverage (X)", + "ymax": 100, + "ymin": 0, + "xmin": 0, + "xmax": 84, + "xDecimals": false, + "tt_label": "{point.x}X: {point.y:.2f}%" + } + }, + "qualimap_insert_size": { + "id": "qualimap_insert_size", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "Qualimap BamQC: Insert size histogram", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "qualimap_insert_size", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "Qualimap BamQC: Insert size histogram" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": " bp", + "title": { + "text": "Insert Size (bp)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Fraction of reads" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 1, + 0.003645 + ], + [ + 2, + 0.005712 + ], + [ + 3, + 0.005869 + ], + [ + 4, + 0.005842 + ], + [ + 5, + 0.006072 + ], + [ + 6, + 0.005844 + ], + [ + 7, + 0.005822 + ], + [ + 8, + 0.005809 + ], + [ + 9, + 0.005876 + ], + [ + 10, + 0.005741 + ], + [ + 11, + 0.005723 + ], + [ + 12, + 0.005798 + ], + [ + 13, + 0.005757 + ], + [ + 14, + 0.005715 + ], + [ + 15, + 0.005623 + ], + [ + 16, + 0.005712 + ], + [ + 17, + 0.005553 + ], + [ + 18, + 0.005585 + ], + [ + 19, + 0.005396 + ], + [ + 20, + 0.005364 + ], + [ + 21, + 0.005308 + ], + [ + 22, + 0.005295 + ], + [ + 23, + 0.005137 + ], + [ + 24, + 0.00512 + ], + [ + 25, + 0.005099 + ], + [ + 26, + 0.005032 + ], + [ + 27, + 0.005166 + ], + [ + 28, + 0.00552 + ], + [ + 29, + 0.00512 + ], + [ + 30, + 0.005799 + ], + [ + 31, + 0.005935 + ], + [ + 32, + 0.005936 + ], + [ + 33, + 0.008123 + ], + [ + 34, + 0.010967 + ], + [ + 35, + 0.010808 + ], + [ + 36, + 0.012709 + ], + [ + 37, + 0.014716 + ], + [ + 38, + 0.014551 + ], + [ + 39, + 0.015419 + ], + [ + 40, + 0.016121 + ], + [ + 41, + 0.015348 + ], + [ + 42, + 0.015391 + ], + [ + 43, + 0.016205 + ], + [ + 44, + 0.016429 + ], + [ + 45, + 0.016501 + ], + [ + 46, + 0.017289 + ], + [ + 47, + 0.017909 + ], + [ + 48, + 0.017232 + ], + [ + 49, + 0.018201 + ], + [ + 50, + 0.018008 + ], + [ + 51, + 0.01982 + ], + [ + 52, + 0.020167 + ], + [ + 53, + 0.021425 + ], + [ + 54, + 0.022822 + ], + [ + 55, + 0.02176 + ], + [ + 56, + 0.022984 + ], + [ + 57, + 0.022383 + ], + [ + 58, + 0.022824 + ], + [ + 59, + 0.024118 + ], + [ + 60, + 0.023794 + ], + [ + 61, + 0.024153 + ], + [ + 62, + 0.023566 + ], + [ + 63, + 0.024894 + ], + [ + 64, + 0.025148 + ], + [ + 65, + 0.027735 + ], + [ + 66, + 0.029616 + ], + [ + 67, + 0.025773 + ], + [ + 68, + 0.025725 + ], + [ + 69, + 0.027665 + ], + [ + 70, + 0.032704 + ], + [ + 71, + 0.024928 + ], + [ + 72, + 0.023761 + ], + [ + 73, + 0.025863 + ], + [ + 74, + 0.02933 + ], + [ + 75, + 0.027517 + ], + [ + 76, + 0.027753 + ], + [ + 77, + 0.03034 + ], + [ + 78, + 0.029412 + ], + [ + 79, + 0.027671 + ], + [ + 80, + 0.02673 + ], + [ + 81, + 0.035506 + ], + [ + 82, + 0.028632 + ], + [ + 83, + 0.027279 + ], + [ + 84, + 0.028497 + ], + [ + 85, + 0.028094 + ], + [ + 86, + 0.028773 + ], + [ + 87, + 0.026721 + ], + [ + 88, + 0.031088 + ], + [ + 89, + 0.029263 + ], + [ + 90, + 0.028842 + ], + [ + 91, + 0.028828 + ], + [ + 92, + 0.029335 + ], + [ + 93, + 0.029862 + ], + [ + 94, + 0.030554 + ], + [ + 95, + 0.031635 + ], + [ + 96, + 0.031883 + ], + [ + 97, + 0.035443 + ], + [ + 98, + 0.034161 + ], + [ + 99, + 0.04012 + ], + [ + 100, + 0.039226 + ], + [ + 101, + 0.036847 + ], + [ + 102, + 0.038455 + ], + [ + 103, + 0.046209 + ], + [ + 104, + 0.041733 + ], + [ + 105, + 0.041187 + ], + [ + 106, + 0.05055 + ], + [ + 107, + 0.041009 + ], + [ + 108, + 0.041258 + ], + [ + 109, + 0.041796 + ], + [ + 110, + 0.04975 + ], + [ + 111, + 0.038698 + ], + [ + 112, + 0.03917 + ], + [ + 113, + 0.039155 + ], + [ + 114, + 0.04224 + ], + [ + 115, + 0.038954 + ], + [ + 116, + 0.041282 + ], + [ + 117, + 0.036365 + ], + [ + 118, + 0.038189 + ], + [ + 119, + 0.03858 + ], + [ + 120, + 0.041357 + ], + [ + 121, + 0.041868 + ], + [ + 122, + 0.039834 + ], + [ + 123, + 0.040933 + ], + [ + 124, + 0.041592 + ], + [ + 125, + 0.039726 + ], + [ + 126, + 0.04083 + ], + [ + 127, + 0.040651 + ], + [ + 128, + 0.043098 + ], + [ + 129, + 0.043302 + ], + [ + 130, + 0.04224 + ], + [ + 131, + 0.042977 + ], + [ + 132, + 0.043575 + ], + [ + 133, + 0.045071 + ], + [ + 134, + 0.046653 + ], + [ + 135, + 0.049882 + ], + [ + 136, + 0.046286 + ], + [ + 137, + 0.048206 + ], + [ + 138, + 0.050714 + ], + [ + 139, + 0.056046 + ], + [ + 140, + 0.052167 + ], + [ + 141, + 0.051497 + ], + [ + 142, + 0.054808 + ], + [ + 143, + 0.054161 + ], + [ + 144, + 0.054188 + ], + [ + 145, + 0.057068 + ], + [ + 146, + 0.058165 + ], + [ + 147, + 0.057996 + ], + [ + 148, + 0.060667 + ], + [ + 149, + 0.068638 + ], + [ + 150, + 0.069416 + ], + [ + 151, + 0.063119 + ], + [ + 152, + 0.060428 + ], + [ + 153, + 0.064726 + ], + [ + 154, + 0.075855 + ], + [ + 155, + 0.067081 + ], + [ + 156, + 0.0624 + ], + [ + 157, + 0.067102 + ], + [ + 158, + 0.065765 + ], + [ + 159, + 0.067195 + ], + [ + 160, + 0.066239 + ], + [ + 161, + 0.065948 + ], + [ + 162, + 0.067612 + ], + [ + 163, + 0.068697 + ], + [ + 164, + 0.069786 + ], + [ + 165, + 0.070453 + ], + [ + 166, + 0.072283 + ], + [ + 167, + 0.074914 + ], + [ + 168, + 0.075904 + ], + [ + 169, + 0.076777 + ], + [ + 170, + 0.078463 + ], + [ + 171, + 0.079685 + ], + [ + 172, + 0.08072 + ], + [ + 173, + 0.083262 + ], + [ + 174, + 0.086333 + ], + [ + 175, + 0.087498 + ], + [ + 176, + 0.094176 + ], + [ + 177, + 0.092135 + ], + [ + 178, + 0.092986 + ], + [ + 179, + 0.095284 + ], + [ + 180, + 0.097639 + ], + [ + 181, + 0.100077 + ], + [ + 182, + 0.10322 + ], + [ + 183, + 0.103691 + ], + [ + 184, + 0.106057 + ], + [ + 185, + 0.109794 + ], + [ + 186, + 0.111765 + ], + [ + 187, + 0.114204 + ], + [ + 188, + 0.118958 + ], + [ + 189, + 0.122757 + ], + [ + 190, + 0.126035 + ], + [ + 191, + 0.129073 + ], + [ + 192, + 0.13244 + ], + [ + 193, + 0.135827 + ], + [ + 194, + 0.13802 + ], + [ + 195, + 0.142293 + ], + [ + 196, + 0.150631 + ], + [ + 197, + 0.148647 + ], + [ + 198, + 0.154273 + ], + [ + 199, + 0.15733 + ], + [ + 200, + 0.160463 + ], + [ + 201, + 0.162678 + ], + [ + 202, + 0.166562 + ], + [ + 203, + 0.170843 + ], + [ + 204, + 0.174295 + ], + [ + 205, + 0.180413 + ], + [ + 206, + 0.183553 + ], + [ + 207, + 0.188406 + ], + [ + 208, + 0.194243 + ], + [ + 209, + 0.199304 + ], + [ + 210, + 0.203476 + ], + [ + 211, + 0.207577 + ], + [ + 212, + 0.212725 + ], + [ + 213, + 0.21787 + ], + [ + 214, + 0.223856 + ], + [ + 215, + 0.229195 + ], + [ + 216, + 0.235267 + ], + [ + 217, + 0.242558 + ], + [ + 218, + 0.248748 + ], + [ + 219, + 0.254385 + ], + [ + 220, + 0.263713 + ], + [ + 221, + 0.267838 + ], + [ + 222, + 0.273538 + ], + [ + 223, + 0.280021 + ], + [ + 224, + 0.288439 + ], + [ + 225, + 0.294015 + ], + [ + 226, + 0.30223 + ], + [ + 227, + 0.310417 + ], + [ + 228, + 0.320168 + ], + [ + 229, + 0.331712 + ], + [ + 230, + 0.338888 + ], + [ + 231, + 0.345498 + ], + [ + 232, + 0.355185 + ], + [ + 233, + 0.364689 + ], + [ + 234, + 0.371827 + ], + [ + 235, + 0.380019 + ], + [ + 236, + 0.392482 + ], + [ + 237, + 0.403888 + ], + [ + 238, + 0.412022 + ], + [ + 239, + 0.421391 + ], + [ + 240, + 0.429913 + ], + [ + 241, + 0.442284 + ], + [ + 242, + 0.454505 + ], + [ + 243, + 0.463737 + ], + [ + 244, + 0.471479 + ], + [ + 245, + 0.481808 + ], + [ + 246, + 0.493063 + ], + [ + 247, + 0.504756 + ], + [ + 248, + 0.517716 + ], + [ + 249, + 0.531837 + ], + [ + 250, + 0.54274 + ], + [ + 251, + 0.555663 + ], + [ + 252, + 0.572479 + ], + [ + 253, + 0.582023 + ], + [ + 254, + 0.594947 + ], + [ + 255, + 0.608104 + ], + [ + 256, + 0.621954 + ], + [ + 257, + 0.635009 + ], + [ + 258, + 0.653104 + ], + [ + 259, + 0.668739 + ], + [ + 260, + 0.683049 + ], + [ + 261, + 0.699089 + ], + [ + 262, + 0.714156 + ], + [ + 263, + 0.728545 + ], + [ + 264, + 0.747839 + ], + [ + 265, + 0.76257 + ], + [ + 266, + 0.779836 + ], + [ + 267, + 0.812523 + ], + [ + 268, + 0.813078 + ], + [ + 269, + 0.828446 + ], + [ + 270, + 0.849466 + ], + [ + 271, + 0.871362 + ], + [ + 272, + 0.884646 + ], + [ + 273, + 0.901953 + ], + [ + 274, + 0.920123 + ], + [ + 275, + 0.9356 + ], + [ + 276, + 0.951108 + ], + [ + 277, + 0.97318 + ], + [ + 278, + 0.989269 + ], + [ + 279, + 1.012123 + ], + [ + 280, + 1.030779 + ], + [ + 281, + 1.057304 + ], + [ + 282, + 1.075033 + ], + [ + 283, + 1.102573 + ], + [ + 284, + 1.114692 + ], + [ + 285, + 1.131646 + ], + [ + 286, + 1.147909 + ], + [ + 287, + 1.167537 + ], + [ + 288, + 1.191602 + ], + [ + 289, + 1.211428 + ], + [ + 290, + 1.231982 + ], + [ + 291, + 1.256298 + ], + [ + 292, + 1.27677 + ], + [ + 293, + 1.299759 + ], + [ + 294, + 1.320012 + ], + [ + 295, + 1.340956 + ], + [ + 296, + 1.361352 + ], + [ + 297, + 1.378496 + ], + [ + 298, + 1.404672 + ], + [ + 299, + 1.420953 + ], + [ + 300, + 1.443755 + ], + [ + 301, + 1.470078 + ], + [ + 302, + 1.492017 + ], + [ + 303, + 1.513603 + ], + [ + 304, + 1.532399 + ], + [ + 305, + 1.552409 + ], + [ + 306, + 1.567738 + ], + [ + 307, + 1.586507 + ], + [ + 308, + 1.608876 + ], + [ + 309, + 1.628539 + ], + [ + 310, + 1.651192 + ], + [ + 311, + 1.674126 + ], + [ + 312, + 1.693433 + ], + [ + 313, + 1.717604 + ], + [ + 314, + 1.739395 + ], + [ + 315, + 1.751095 + ], + [ + 316, + 1.767683 + ], + [ + 317, + 1.786223 + ], + [ + 318, + 1.797257 + ], + [ + 319, + 1.81748 + ], + [ + 320, + 1.837297 + ], + [ + 321, + 1.855717 + ], + [ + 322, + 1.875938 + ], + [ + 323, + 1.888876 + ], + [ + 324, + 1.912956 + ], + [ + 325, + 1.922091 + ], + [ + 326, + 1.932396 + ], + [ + 327, + 1.943324 + ], + [ + 328, + 1.956627 + ], + [ + 329, + 1.964673 + ], + [ + 330, + 1.976759 + ], + [ + 331, + 1.991785 + ], + [ + 332, + 2.012914 + ], + [ + 333, + 2.024607 + ], + [ + 334, + 2.034719 + ], + [ + 335, + 2.045754 + ], + [ + 336, + 2.052839 + ], + [ + 337, + 2.05872 + ], + [ + 338, + 2.061677 + ], + [ + 339, + 2.070731 + ], + [ + 340, + 2.076731 + ], + [ + 341, + 2.087436 + ], + [ + 342, + 2.095867 + ], + [ + 343, + 2.103718 + ], + [ + 344, + 2.113164 + ], + [ + 345, + 2.116675 + ], + [ + 346, + 2.121501 + ], + [ + 347, + 2.121044 + ], + [ + 348, + 2.11723 + ], + [ + 349, + 2.115309 + ], + [ + 350, + 2.117462 + ], + [ + 351, + 2.11889 + ], + [ + 352, + 2.127745 + ], + [ + 353, + 2.125127 + ], + [ + 354, + 2.127251 + ], + [ + 355, + 2.125488 + ], + [ + 356, + 2.126222 + ], + [ + 357, + 2.120473 + ], + [ + 358, + 2.114912 + ], + [ + 359, + 2.106781 + ], + [ + 360, + 2.101803 + ], + [ + 361, + 2.094613 + ], + [ + 362, + 2.094209 + ], + [ + 363, + 2.093086 + ], + [ + 364, + 2.085996 + ], + [ + 365, + 2.082753 + ], + [ + 366, + 2.078414 + ], + [ + 367, + 2.069192 + ], + [ + 368, + 2.059055 + ], + [ + 369, + 2.045469 + ], + [ + 370, + 2.035223 + ], + [ + 371, + 2.022195 + ], + [ + 372, + 2.011782 + ], + [ + 373, + 2.020782 + ], + [ + 374, + 2.001006 + ], + [ + 375, + 1.989099 + ], + [ + 376, + 1.98796 + ], + [ + 377, + 1.967844 + ], + [ + 378, + 1.954112 + ], + [ + 379, + 1.94018 + ], + [ + 380, + 1.924512 + ], + [ + 381, + 1.908951 + ], + [ + 382, + 1.897283 + ], + [ + 383, + 1.885542 + ], + [ + 384, + 1.87451 + ], + [ + 385, + 1.86275 + ], + [ + 386, + 1.858134 + ], + [ + 387, + 1.840525 + ], + [ + 388, + 1.824967 + ], + [ + 389, + 1.809453 + ], + [ + 390, + 1.789293 + ], + [ + 391, + 1.771991 + ], + [ + 392, + 1.759735 + ], + [ + 393, + 1.745094 + ], + [ + 394, + 1.738272 + ], + [ + 395, + 1.715245 + ], + [ + 396, + 1.699625 + ], + [ + 397, + 1.68727 + ], + [ + 398, + 1.67247 + ], + [ + 399, + 1.653686 + ], + [ + 400, + 1.636674 + ], + [ + 401, + 1.617978 + ], + [ + 402, + 1.6009 + ], + [ + 403, + 1.582564 + ], + [ + 404, + 1.567656 + ], + [ + 405, + 1.55334 + ], + [ + 406, + 1.538424 + ], + [ + 407, + 1.520999 + ], + [ + 408, + 1.507552 + ], + [ + 409, + 1.492229 + ], + [ + 410, + 1.469573 + ], + [ + 411, + 1.449281 + ], + [ + 412, + 1.433032 + ], + [ + 413, + 1.413216 + ], + [ + 414, + 1.399534 + ], + [ + 415, + 1.381059 + ], + [ + 416, + 1.369045 + ], + [ + 417, + 1.355655 + ], + [ + 418, + 1.337057 + ], + [ + 419, + 1.320173 + ], + [ + 420, + 1.302085 + ], + [ + 421, + 1.283593 + ], + [ + 422, + 1.264408 + ], + [ + 423, + 1.249828 + ], + [ + 424, + 1.22946 + ], + [ + 425, + 1.21742 + ], + [ + 426, + 1.199967 + ], + [ + 427, + 1.18631 + ], + [ + 428, + 1.170166 + ], + [ + 429, + 1.156268 + ], + [ + 430, + 1.139181 + ], + [ + 431, + 1.12212 + ], + [ + 432, + 1.101625 + ], + [ + 433, + 1.087287 + ], + [ + 434, + 1.07161 + ], + [ + 435, + 1.060028 + ], + [ + 436, + 1.043271 + ], + [ + 437, + 1.038969 + ], + [ + 438, + 1.014102 + ], + [ + 439, + 1.000049 + ], + [ + 440, + 0.990854 + ], + [ + 441, + 0.96766 + ], + [ + 442, + 0.947276 + ], + [ + 443, + 0.932577 + ], + [ + 444, + 0.915599 + ], + [ + 445, + 0.906757 + ], + [ + 446, + 0.885135 + ], + [ + 447, + 0.872236 + ], + [ + 448, + 0.856575 + ], + [ + 449, + 0.844277 + ], + [ + 450, + 0.832062 + ], + [ + 451, + 0.820316 + ], + [ + 452, + 0.804763 + ], + [ + 453, + 0.791516 + ], + [ + 454, + 0.776068 + ], + [ + 455, + 0.761281 + ], + [ + 456, + 0.748086 + ], + [ + 457, + 0.736901 + ], + [ + 458, + 0.725452 + ], + [ + 459, + 0.714447 + ], + [ + 460, + 0.701569 + ], + [ + 461, + 0.69117 + ], + [ + 462, + 0.675344 + ], + [ + 463, + 0.661733 + ], + [ + 464, + 0.650609 + ], + [ + 465, + 0.6383 + ], + [ + 466, + 0.627476 + ], + [ + 467, + 0.61553 + ], + [ + 468, + 0.604569 + ], + [ + 469, + 0.594367 + ], + [ + 470, + 0.584942 + ], + [ + 471, + 0.572689 + ], + [ + 472, + 0.562296 + ], + [ + 473, + 0.553015 + ], + [ + 474, + 0.540267 + ], + [ + 475, + 0.530476 + ], + [ + 476, + 0.531542 + ], + [ + 477, + 0.5095 + ], + [ + 478, + 0.503829 + ], + [ + 479, + 0.489277 + ], + [ + 480, + 0.479791 + ], + [ + 481, + 0.471375 + ], + [ + 482, + 0.463605 + ], + [ + 483, + 0.451936 + ], + [ + 484, + 0.443174 + ], + [ + 485, + 0.436469 + ], + [ + 486, + 0.424135 + ], + [ + 487, + 0.41712 + ], + [ + 488, + 0.411285 + ], + [ + 489, + 0.39975 + ], + [ + 490, + 0.391679 + ], + [ + 491, + 0.384378 + ], + [ + 492, + 0.3755 + ], + [ + 493, + 0.367141 + ], + [ + 494, + 0.358389 + ], + [ + 495, + 0.351927 + ], + [ + 496, + 0.343448 + ], + [ + 497, + 0.333631 + ], + [ + 498, + 0.328766 + ], + [ + 499, + 0.320983 + ], + [ + 500, + 0.315905 + ], + [ + 501, + 0.30708 + ], + [ + 502, + 0.300694 + ], + [ + 503, + 0.294539 + ], + [ + 504, + 0.287911 + ], + [ + 505, + 0.281421 + ], + [ + 506, + 0.274416 + ], + [ + 507, + 0.269995 + ], + [ + 508, + 0.264486 + ], + [ + 509, + 0.257731 + ], + [ + 510, + 0.252951 + ], + [ + 511, + 0.246336 + ], + [ + 512, + 0.242475 + ], + [ + 513, + 0.237102 + ], + [ + 514, + 0.231776 + ], + [ + 515, + 0.225275 + ], + [ + 516, + 0.218853 + ], + [ + 517, + 0.214256 + ], + [ + 518, + 0.209672 + ], + [ + 519, + 0.205135 + ], + [ + 520, + 0.200147 + ], + [ + 521, + 0.196593 + ], + [ + 522, + 0.192225 + ], + [ + 523, + 0.187995 + ], + [ + 524, + 0.184217 + ], + [ + 525, + 0.179229 + ], + [ + 526, + 0.176424 + ], + [ + 527, + 0.170454 + ], + [ + 528, + 0.166706 + ], + [ + 529, + 0.162388 + ], + [ + 530, + 0.159976 + ], + [ + 531, + 0.154271 + ], + [ + 532, + 0.151244 + ], + [ + 533, + 0.147412 + ], + [ + 534, + 0.144909 + ], + [ + 535, + 0.142059 + ], + [ + 536, + 0.137241 + ], + [ + 537, + 0.133315 + ], + [ + 538, + 0.129 + ], + [ + 539, + 0.126591 + ], + [ + 540, + 0.122994 + ], + [ + 541, + 0.120073 + ], + [ + 542, + 0.11779 + ], + [ + 543, + 0.115788 + ], + [ + 544, + 0.112144 + ], + [ + 545, + 0.110028 + ], + [ + 546, + 0.10715 + ], + [ + 547, + 0.105811 + ], + [ + 548, + 0.101924 + ], + [ + 549, + 0.099749 + ], + [ + 550, + 0.097543 + ], + [ + 551, + 0.094739 + ], + [ + 552, + 0.092458 + ], + [ + 553, + 0.090917 + ], + [ + 554, + 0.088705 + ], + [ + 555, + 0.087917 + ], + [ + 556, + 0.084211 + ], + [ + 557, + 0.08175 + ], + [ + 558, + 0.080004 + ], + [ + 559, + 0.078154 + ], + [ + 560, + 0.076391 + ], + [ + 561, + 0.074377 + ], + [ + 562, + 0.072401 + ], + [ + 563, + 0.070154 + ], + [ + 564, + 0.069089 + ], + [ + 565, + 0.066982 + ], + [ + 566, + 0.065374 + ], + [ + 567, + 0.06373 + ], + [ + 568, + 0.061674 + ], + [ + 569, + 0.061151 + ], + [ + 570, + 0.059422 + ], + [ + 571, + 0.056717 + ], + [ + 572, + 0.055159 + ], + [ + 573, + 0.054521 + ], + [ + 574, + 0.053502 + ], + [ + 575, + 0.057582 + ], + [ + 576, + 0.05054 + ], + [ + 577, + 0.049197 + ], + [ + 578, + 0.048096 + ], + [ + 579, + 0.047338 + ], + [ + 580, + 0.045978 + ], + [ + 581, + 0.045103 + ], + [ + 582, + 0.043944 + ], + [ + 583, + 0.042593 + ], + [ + 584, + 0.041653 + ], + [ + 585, + 0.041159 + ], + [ + 586, + 0.040021 + ], + [ + 587, + 0.03898 + ], + [ + 588, + 0.038047 + ], + [ + 589, + 0.037111 + ], + [ + 590, + 0.037042 + ], + [ + 591, + 0.03567 + ], + [ + 592, + 0.034673 + ], + [ + 593, + 0.034741 + ], + [ + 594, + 0.033148 + ], + [ + 595, + 0.032297 + ], + [ + 596, + 0.031423 + ], + [ + 597, + 0.030797 + ], + [ + 598, + 0.030296 + ], + [ + 599, + 0.029488 + ], + [ + 600, + 0.028729 + ], + [ + 601, + 0.028536 + ], + [ + 602, + 0.027534 + ], + [ + 603, + 0.027525 + ], + [ + 604, + 0.026609 + ], + [ + 605, + 0.025827 + ], + [ + 606, + 0.024846 + ], + [ + 607, + 0.024703 + ], + [ + 608, + 0.02434 + ], + [ + 609, + 0.024864 + ], + [ + 610, + 0.023108 + ], + [ + 611, + 0.023286 + ], + [ + 612, + 0.022077 + ], + [ + 613, + 0.021649 + ], + [ + 614, + 0.021173 + ], + [ + 615, + 0.021005 + ], + [ + 616, + 0.02034 + ], + [ + 617, + 0.019813 + ], + [ + 618, + 0.019641 + ], + [ + 619, + 0.019213 + ], + [ + 620, + 0.018712 + ], + [ + 621, + 0.018439 + ], + [ + 622, + 0.017925 + ], + [ + 623, + 0.017446 + ], + [ + 624, + 0.016971 + ], + [ + 625, + 0.016626 + ], + [ + 626, + 0.016495 + ], + [ + 627, + 0.015727 + ], + [ + 628, + 0.015635 + ], + [ + 629, + 0.015514 + ], + [ + 630, + 0.014999 + ], + [ + 631, + 0.014721 + ], + [ + 632, + 0.014367 + ], + [ + 633, + 0.014746 + ], + [ + 634, + 0.013686 + ], + [ + 635, + 0.01362 + ], + [ + 636, + 0.013651 + ], + [ + 637, + 0.013272 + ], + [ + 638, + 0.013002 + ], + [ + 639, + 0.012647 + ], + [ + 640, + 0.01267 + ], + [ + 641, + 0.012339 + ], + [ + 642, + 0.01193 + ], + [ + 643, + 0.0119 + ], + [ + 644, + 0.011698 + ], + [ + 645, + 0.011294 + ], + [ + 646, + 0.011398 + ], + [ + 647, + 0.010856 + ], + [ + 648, + 0.010708 + ], + [ + 649, + 0.010904 + ], + [ + 650, + 0.010301 + ], + [ + 651, + 0.010087 + ], + [ + 652, + 0.009886 + ], + [ + 653, + 0.009688 + ], + [ + 654, + 0.010009 + ], + [ + 655, + 0.009651 + ], + [ + 656, + 0.009585 + ], + [ + 657, + 0.009082 + ], + [ + 658, + 0.009159 + ], + [ + 659, + 0.009204 + ], + [ + 660, + 0.009078 + ], + [ + 661, + 0.009659 + ], + [ + 662, + 0.008779 + ], + [ + 663, + 0.009397 + ], + [ + 664, + 0.008613 + ], + [ + 665, + 0.009654 + ], + [ + 666, + 0.008581 + ], + [ + 667, + 0.008509 + ], + [ + 668, + 0.007996 + ], + [ + 669, + 0.008492 + ], + [ + 670, + 0.007821 + ], + [ + 671, + 0.00762 + ], + [ + 672, + 0.007284 + ], + [ + 673, + 0.007447 + ], + [ + 674, + 0.007112 + ], + [ + 675, + 0.007035 + ], + [ + 676, + 0.006752 + ], + [ + 677, + 0.006723 + ], + [ + 678, + 0.006754 + ], + [ + 679, + 0.007427 + ], + [ + 680, + 0.006772 + ], + [ + 681, + 0.006751 + ], + [ + 682, + 0.006157 + ], + [ + 683, + 0.006529 + ], + [ + 684, + 0.006189 + ], + [ + 685, + 0.005446 + ], + [ + 686, + 0.005427 + ], + [ + 687, + 0.00518 + ], + [ + 688, + 0.004455 + ], + [ + 689, + 0.004373 + ], + [ + 690, + 0.004785 + ], + [ + 691, + 0.004163 + ], + [ + 692, + 0.003459 + ], + [ + 693, + 0.0033 + ], + [ + 694, + 0.003365 + ], + [ + 695, + 0.003351 + ], + [ + 696, + 0.003149 + ], + [ + 697, + 0.00308 + ], + [ + 698, + 0.003078 + ], + [ + 699, + 0.003043 + ], + [ + 700, + 0.002946 + ], + [ + 701, + 0.002974 + ], + [ + 702, + 0.003027 + ], + [ + 703, + 0.002835 + ], + [ + 704, + 0.002804 + ], + [ + 705, + 0.002781 + ], + [ + 706, + 0.002667 + ], + [ + 707, + 0.002669 + ], + [ + 708, + 0.002717 + ], + [ + 709, + 0.00262 + ], + [ + 710, + 0.002564 + ], + [ + 711, + 0.002498 + ], + [ + 712, + 0.002374 + ], + [ + 713, + 0.002431 + ], + [ + 714, + 0.002268 + ], + [ + 715, + 0.002303 + ], + [ + 716, + 0.002328 + ], + [ + 717, + 0.002283 + ], + [ + 718, + 0.002057 + ], + [ + 719, + 0.002177 + ], + [ + 720, + 0.002013 + ], + [ + 721, + 0.002128 + ], + [ + 722, + 0.002061 + ], + [ + 723, + 0.002047 + ], + [ + 724, + 0.001968 + ], + [ + 725, + 0.001907 + ], + [ + 726, + 0.001862 + ], + [ + 727, + 0.001845 + ], + [ + 728, + 0.001739 + ], + [ + 729, + 0.00176 + ], + [ + 730, + 0.001783 + ], + [ + 731, + 0.001668 + ], + [ + 732, + 0.00164 + ], + [ + 733, + 0.001659 + ], + [ + 734, + 0.001682 + ], + [ + 735, + 0.001654 + ], + [ + 736, + 0.001614 + ], + [ + 737, + 0.001572 + ], + [ + 738, + 0.001512 + ], + [ + 739, + 0.001527 + ], + [ + 740, + 0.001614 + ], + [ + 741, + 0.001553 + ], + [ + 742, + 0.001458 + ], + [ + 743, + 0.001463 + ], + [ + 744, + 0.001438 + ], + [ + 745, + 0.001431 + ], + [ + 746, + 0.001381 + ], + [ + 747, + 0.001358 + ], + [ + 748, + 0.001366 + ], + [ + 749, + 0.001313 + ], + [ + 750, + 0.001359 + ], + [ + 751, + 0.001253 + ], + [ + 752, + 0.001262 + ], + [ + 753, + 0.00126 + ], + [ + 754, + 0.001302 + ], + [ + 755, + 0.001241 + ], + [ + 756, + 0.001288 + ], + [ + 757, + 0.001299 + ], + [ + 758, + 0.00115 + ], + [ + 759, + 0.001106 + ], + [ + 760, + 0.001151 + ], + [ + 761, + 0.001167 + ], + [ + 762, + 0.001081 + ], + [ + 763, + 0.001064 + ], + [ + 764, + 0.001178 + ], + [ + 765, + 0.001112 + ], + [ + 766, + 0.001005 + ], + [ + 767, + 0.001064 + ], + [ + 768, + 0.001012 + ], + [ + 769, + 0.001036 + ], + [ + 770, + 0.001039 + ], + [ + 771, + 0.000969 + ], + [ + 772, + 0.000984 + ], + [ + 773, + 0.000934 + ], + [ + 774, + 0.000935 + ], + [ + 775, + 0.000944 + ], + [ + 776, + 0.000902 + ], + [ + 777, + 0.00108 + ], + [ + 778, + 0.000918 + ], + [ + 779, + 0.000898 + ], + [ + 780, + 0.00086 + ], + [ + 781, + 0.000855 + ], + [ + 782, + 0.000838 + ], + [ + 783, + 0.000814 + ], + [ + 784, + 0.000831 + ], + [ + 785, + 0.000879 + ], + [ + 786, + 0.000874 + ], + [ + 787, + 0.000827 + ], + [ + 788, + 0.000929 + ], + [ + 789, + 0.000744 + ], + [ + 790, + 0.000776 + ], + [ + 791, + 0.000818 + ], + [ + 792, + 0.000712 + ], + [ + 793, + 0.000752 + ], + [ + 794, + 0.000749 + ], + [ + 795, + 0.000708 + ], + [ + 796, + 0.000702 + ], + [ + 797, + 0.000754 + ], + [ + 798, + 0.000658 + ], + [ + 799, + 0.000701 + ], + [ + 800, + 0.000683 + ], + [ + 801, + 0.000674 + ], + [ + 802, + 0.000639 + ], + [ + 803, + 0.000667 + ], + [ + 804, + 0.00064 + ], + [ + 805, + 0.000593 + ], + [ + 806, + 0.000651 + ], + [ + 807, + 0.000622 + ], + [ + 808, + 0.000561 + ], + [ + 809, + 0.000594 + ], + [ + 810, + 0.000646 + ], + [ + 811, + 0.00066 + ], + [ + 812, + 0.000572 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 1, + 0.004503 + ], + [ + 2, + 0.006137 + ], + [ + 3, + 0.00619 + ], + [ + 4, + 0.006312 + ], + [ + 5, + 0.006522 + ], + [ + 6, + 0.006381 + ], + [ + 7, + 0.006199 + ], + [ + 8, + 0.006375 + ], + [ + 9, + 0.00615 + ], + [ + 10, + 0.006194 + ], + [ + 11, + 0.006052 + ], + [ + 12, + 0.006238 + ], + [ + 13, + 0.006143 + ], + [ + 14, + 0.006137 + ], + [ + 15, + 0.005917 + ], + [ + 16, + 0.006077 + ], + [ + 17, + 0.006058 + ], + [ + 18, + 0.005881 + ], + [ + 19, + 0.005672 + ], + [ + 20, + 0.005682 + ], + [ + 21, + 0.00569 + ], + [ + 22, + 0.005622 + ], + [ + 23, + 0.005498 + ], + [ + 24, + 0.005396 + ], + [ + 25, + 0.005486 + ], + [ + 26, + 0.005419 + ], + [ + 27, + 0.005454 + ], + [ + 28, + 0.005762 + ], + [ + 29, + 0.005627 + ], + [ + 30, + 0.006263 + ], + [ + 31, + 0.006383 + ], + [ + 32, + 0.006412 + ], + [ + 33, + 0.006437 + ], + [ + 34, + 0.006721 + ], + [ + 35, + 0.007113 + ], + [ + 36, + 0.007227 + ], + [ + 37, + 0.007452 + ], + [ + 38, + 0.007521 + ], + [ + 39, + 0.007696 + ], + [ + 40, + 0.008604 + ], + [ + 41, + 0.010769 + ], + [ + 42, + 0.012493 + ], + [ + 43, + 0.015111 + ], + [ + 44, + 0.017141 + ], + [ + 45, + 0.01851 + ], + [ + 46, + 0.020225 + ], + [ + 47, + 0.02074 + ], + [ + 48, + 0.020549 + ], + [ + 49, + 0.021352 + ], + [ + 50, + 0.021339 + ], + [ + 51, + 0.022167 + ], + [ + 52, + 0.021822 + ], + [ + 53, + 0.022848 + ], + [ + 54, + 0.023915 + ], + [ + 55, + 0.023171 + ], + [ + 56, + 0.024564 + ], + [ + 57, + 0.023867 + ], + [ + 58, + 0.024298 + ], + [ + 59, + 0.025756 + ], + [ + 60, + 0.02665 + ], + [ + 61, + 0.028713 + ], + [ + 62, + 0.027839 + ], + [ + 63, + 0.029536 + ], + [ + 64, + 0.030344 + ], + [ + 65, + 0.033286 + ], + [ + 66, + 0.035057 + ], + [ + 67, + 0.030217 + ], + [ + 68, + 0.030142 + ], + [ + 69, + 0.03293 + ], + [ + 70, + 0.0392 + ], + [ + 71, + 0.029405 + ], + [ + 72, + 0.028153 + ], + [ + 73, + 0.029894 + ], + [ + 74, + 0.032128 + ], + [ + 75, + 0.029246 + ], + [ + 76, + 0.029039 + ], + [ + 77, + 0.031679 + ], + [ + 78, + 0.030543 + ], + [ + 79, + 0.029346 + ], + [ + 80, + 0.028195 + ], + [ + 81, + 0.036925 + ], + [ + 82, + 0.031025 + ], + [ + 83, + 0.031338 + ], + [ + 84, + 0.033846 + ], + [ + 85, + 0.033733 + ], + [ + 86, + 0.034018 + ], + [ + 87, + 0.031865 + ], + [ + 88, + 0.037396 + ], + [ + 89, + 0.03471 + ], + [ + 90, + 0.033979 + ], + [ + 91, + 0.034043 + ], + [ + 92, + 0.034425 + ], + [ + 93, + 0.034897 + ], + [ + 94, + 0.035481 + ], + [ + 95, + 0.036968 + ], + [ + 96, + 0.037147 + ], + [ + 97, + 0.040757 + ], + [ + 98, + 0.037941 + ], + [ + 99, + 0.043121 + ], + [ + 100, + 0.040161 + ], + [ + 101, + 0.038605 + ], + [ + 102, + 0.039644 + ], + [ + 103, + 0.047358 + ], + [ + 104, + 0.042227 + ], + [ + 105, + 0.042705 + ], + [ + 106, + 0.051438 + ], + [ + 107, + 0.044194 + ], + [ + 108, + 0.046413 + ], + [ + 109, + 0.047521 + ], + [ + 110, + 0.057104 + ], + [ + 111, + 0.043392 + ], + [ + 112, + 0.043875 + ], + [ + 113, + 0.043366 + ], + [ + 114, + 0.046302 + ], + [ + 115, + 0.043156 + ], + [ + 116, + 0.045638 + ], + [ + 117, + 0.039405 + ], + [ + 118, + 0.041288 + ], + [ + 119, + 0.042335 + ], + [ + 120, + 0.044854 + ], + [ + 121, + 0.046049 + ], + [ + 122, + 0.042644 + ], + [ + 123, + 0.04449 + ], + [ + 124, + 0.04359 + ], + [ + 125, + 0.040969 + ], + [ + 126, + 0.040588 + ], + [ + 127, + 0.040304 + ], + [ + 128, + 0.042064 + ], + [ + 129, + 0.042484 + ], + [ + 130, + 0.041394 + ], + [ + 131, + 0.041708 + ], + [ + 132, + 0.042532 + ], + [ + 133, + 0.044834 + ], + [ + 134, + 0.047285 + ], + [ + 135, + 0.052923 + ], + [ + 136, + 0.047586 + ], + [ + 137, + 0.049789 + ], + [ + 138, + 0.051858 + ], + [ + 139, + 0.059364 + ], + [ + 140, + 0.053866 + ], + [ + 141, + 0.052826 + ], + [ + 142, + 0.056519 + ], + [ + 143, + 0.054878 + ], + [ + 144, + 0.055845 + ], + [ + 145, + 0.057616 + ], + [ + 146, + 0.059338 + ], + [ + 147, + 0.058824 + ], + [ + 148, + 0.061352 + ], + [ + 149, + 0.070208 + ], + [ + 150, + 0.069682 + ], + [ + 151, + 0.063712 + ], + [ + 152, + 0.059128 + ], + [ + 153, + 0.0643 + ], + [ + 154, + 0.074234 + ], + [ + 155, + 0.063287 + ], + [ + 156, + 0.058292 + ], + [ + 157, + 0.061999 + ], + [ + 158, + 0.060321 + ], + [ + 159, + 0.061737 + ], + [ + 160, + 0.060816 + ], + [ + 161, + 0.060346 + ], + [ + 162, + 0.061518 + ], + [ + 163, + 0.063995 + ], + [ + 164, + 0.065025 + ], + [ + 165, + 0.066077 + ], + [ + 166, + 0.067221 + ], + [ + 167, + 0.07102 + ], + [ + 168, + 0.070101 + ], + [ + 169, + 0.071448 + ], + [ + 170, + 0.072742 + ], + [ + 171, + 0.073748 + ], + [ + 172, + 0.07424 + ], + [ + 173, + 0.077378 + ], + [ + 174, + 0.080094 + ], + [ + 175, + 0.080743 + ], + [ + 176, + 0.08829 + ], + [ + 177, + 0.084394 + ], + [ + 178, + 0.084555 + ], + [ + 179, + 0.086664 + ], + [ + 180, + 0.089011 + ], + [ + 181, + 0.091292 + ], + [ + 182, + 0.093829 + ], + [ + 183, + 0.093871 + ], + [ + 184, + 0.096337 + ], + [ + 185, + 0.09993 + ], + [ + 186, + 0.10095 + ], + [ + 187, + 0.103232 + ], + [ + 188, + 0.107715 + ], + [ + 189, + 0.109219 + ], + [ + 190, + 0.111889 + ], + [ + 191, + 0.114861 + ], + [ + 192, + 0.117142 + ], + [ + 193, + 0.119892 + ], + [ + 194, + 0.122469 + ], + [ + 195, + 0.12581 + ], + [ + 196, + 0.135926 + ], + [ + 197, + 0.133015 + ], + [ + 198, + 0.141069 + ], + [ + 199, + 0.142128 + ], + [ + 200, + 0.144761 + ], + [ + 201, + 0.146381 + ], + [ + 202, + 0.150512 + ], + [ + 203, + 0.152642 + ], + [ + 204, + 0.155729 + ], + [ + 205, + 0.16136 + ], + [ + 206, + 0.164084 + ], + [ + 207, + 0.168697 + ], + [ + 208, + 0.173832 + ], + [ + 209, + 0.178178 + ], + [ + 210, + 0.18055 + ], + [ + 211, + 0.185366 + ], + [ + 212, + 0.191196 + ], + [ + 213, + 0.194659 + ], + [ + 214, + 0.200284 + ], + [ + 215, + 0.205491 + ], + [ + 216, + 0.210792 + ], + [ + 217, + 0.217095 + ], + [ + 218, + 0.2228 + ], + [ + 219, + 0.228771 + ], + [ + 220, + 0.238076 + ], + [ + 221, + 0.240141 + ], + [ + 222, + 0.246794 + ], + [ + 223, + 0.252055 + ], + [ + 224, + 0.260739 + ], + [ + 225, + 0.26416 + ], + [ + 226, + 0.272233 + ], + [ + 227, + 0.27841 + ], + [ + 228, + 0.286391 + ], + [ + 229, + 0.297647 + ], + [ + 230, + 0.302752 + ], + [ + 231, + 0.310371 + ], + [ + 232, + 0.318375 + ], + [ + 233, + 0.325984 + ], + [ + 234, + 0.33263 + ], + [ + 235, + 0.342045 + ], + [ + 236, + 0.352338 + ], + [ + 237, + 0.363297 + ], + [ + 238, + 0.374799 + ], + [ + 239, + 0.3821 + ], + [ + 240, + 0.391122 + ], + [ + 241, + 0.403781 + ], + [ + 242, + 0.413551 + ], + [ + 243, + 0.422048 + ], + [ + 244, + 0.428974 + ], + [ + 245, + 0.437476 + ], + [ + 246, + 0.44976 + ], + [ + 247, + 0.459998 + ], + [ + 248, + 0.473417 + ], + [ + 249, + 0.48487 + ], + [ + 250, + 0.497278 + ], + [ + 251, + 0.508992 + ], + [ + 252, + 0.526183 + ], + [ + 253, + 0.532786 + ], + [ + 254, + 0.545114 + ], + [ + 255, + 0.556672 + ], + [ + 256, + 0.570936 + ], + [ + 257, + 0.582603 + ], + [ + 258, + 0.599234 + ], + [ + 259, + 0.618197 + ], + [ + 260, + 0.630785 + ], + [ + 261, + 0.646846 + ], + [ + 262, + 0.661539 + ], + [ + 263, + 0.677002 + ], + [ + 264, + 0.696798 + ], + [ + 265, + 0.70798 + ], + [ + 266, + 0.727368 + ], + [ + 267, + 0.760333 + ], + [ + 268, + 0.75759 + ], + [ + 269, + 0.773466 + ], + [ + 270, + 0.796314 + ], + [ + 271, + 0.813588 + ], + [ + 272, + 0.830538 + ], + [ + 273, + 0.846086 + ], + [ + 274, + 0.863902 + ], + [ + 275, + 0.882192 + ], + [ + 276, + 0.898177 + ], + [ + 277, + 0.920065 + ], + [ + 278, + 0.931188 + ], + [ + 279, + 0.95285 + ], + [ + 280, + 0.975495 + ], + [ + 281, + 0.997082 + ], + [ + 282, + 1.017708 + ], + [ + 283, + 1.045334 + ], + [ + 284, + 1.05709 + ], + [ + 285, + 1.073472 + ], + [ + 286, + 1.093658 + ], + [ + 287, + 1.115116 + ], + [ + 288, + 1.140577 + ], + [ + 289, + 1.160219 + ], + [ + 290, + 1.185542 + ], + [ + 291, + 1.21284 + ], + [ + 292, + 1.236785 + ], + [ + 293, + 1.258064 + ], + [ + 294, + 1.277779 + ], + [ + 295, + 1.300884 + ], + [ + 296, + 1.325833 + ], + [ + 297, + 1.340186 + ], + [ + 298, + 1.370485 + ], + [ + 299, + 1.387004 + ], + [ + 300, + 1.414233 + ], + [ + 301, + 1.44496 + ], + [ + 302, + 1.46867 + ], + [ + 303, + 1.493624 + ], + [ + 304, + 1.516216 + ], + [ + 305, + 1.535828 + ], + [ + 306, + 1.555532 + ], + [ + 307, + 1.578279 + ], + [ + 308, + 1.601177 + ], + [ + 309, + 1.623955 + ], + [ + 310, + 1.655688 + ], + [ + 311, + 1.679093 + ], + [ + 312, + 1.702505 + ], + [ + 313, + 1.728627 + ], + [ + 314, + 1.75325 + ], + [ + 315, + 1.775836 + ], + [ + 316, + 1.794019 + ], + [ + 317, + 1.8137 + ], + [ + 318, + 1.832303 + ], + [ + 319, + 1.858341 + ], + [ + 320, + 1.882453 + ], + [ + 321, + 1.905876 + ], + [ + 322, + 1.926911 + ], + [ + 323, + 1.949144 + ], + [ + 324, + 1.983084 + ], + [ + 325, + 1.992915 + ], + [ + 326, + 2.009392 + ], + [ + 327, + 2.024486 + ], + [ + 328, + 2.044 + ], + [ + 329, + 2.057556 + ], + [ + 330, + 2.07784 + ], + [ + 331, + 2.100286 + ], + [ + 332, + 2.120841 + ], + [ + 333, + 2.140856 + ], + [ + 334, + 2.161634 + ], + [ + 335, + 2.176025 + ], + [ + 336, + 2.187703 + ], + [ + 337, + 2.203767 + ], + [ + 338, + 2.210819 + ], + [ + 339, + 2.223906 + ], + [ + 340, + 2.236619 + ], + [ + 341, + 2.255555 + ], + [ + 342, + 2.268661 + ], + [ + 343, + 2.282454 + ], + [ + 344, + 2.29875 + ], + [ + 345, + 2.307114 + ], + [ + 346, + 2.319294 + ], + [ + 347, + 2.32703 + ], + [ + 348, + 2.330721 + ], + [ + 349, + 2.330191 + ], + [ + 350, + 2.341175 + ], + [ + 351, + 2.344939 + ], + [ + 352, + 2.361028 + ], + [ + 353, + 2.367537 + ], + [ + 354, + 2.371596 + ], + [ + 355, + 2.381034 + ], + [ + 356, + 2.386183 + ], + [ + 357, + 2.382245 + ], + [ + 358, + 2.381863 + ], + [ + 359, + 2.380678 + ], + [ + 360, + 2.376081 + ], + [ + 361, + 2.376607 + ], + [ + 362, + 2.381575 + ], + [ + 363, + 2.382593 + ], + [ + 364, + 2.382167 + ], + [ + 365, + 2.38543 + ], + [ + 366, + 2.378784 + ], + [ + 367, + 2.379939 + ], + [ + 368, + 2.370766 + ], + [ + 369, + 2.3649 + ], + [ + 370, + 2.353785 + ], + [ + 371, + 2.344434 + ], + [ + 372, + 2.337373 + ], + [ + 373, + 2.356024 + ], + [ + 374, + 2.329573 + ], + [ + 375, + 2.328674 + ], + [ + 376, + 2.327142 + ], + [ + 377, + 2.31466 + ], + [ + 378, + 2.301434 + ], + [ + 379, + 2.288932 + ], + [ + 380, + 2.272582 + ], + [ + 381, + 2.262271 + ], + [ + 382, + 2.251712 + ], + [ + 383, + 2.244297 + ], + [ + 384, + 2.233835 + ], + [ + 385, + 2.225023 + ], + [ + 386, + 2.21432 + ], + [ + 387, + 2.205257 + ], + [ + 388, + 2.190582 + ], + [ + 389, + 2.174089 + ], + [ + 390, + 2.154173 + ], + [ + 391, + 2.140014 + ], + [ + 392, + 2.122809 + ], + [ + 393, + 2.11146 + ], + [ + 394, + 2.113141 + ], + [ + 395, + 2.083138 + ], + [ + 396, + 2.071217 + ], + [ + 397, + 2.058504 + ], + [ + 398, + 2.042495 + ], + [ + 399, + 2.022059 + ], + [ + 400, + 2.002832 + ], + [ + 401, + 1.983392 + ], + [ + 402, + 1.966835 + ], + [ + 403, + 1.946019 + ], + [ + 404, + 1.936239 + ], + [ + 405, + 1.919353 + ], + [ + 406, + 1.903474 + ], + [ + 407, + 1.885511 + ], + [ + 408, + 1.865049 + ], + [ + 409, + 1.849907 + ], + [ + 410, + 1.830432 + ], + [ + 411, + 1.805054 + ], + [ + 412, + 1.78855 + ], + [ + 413, + 1.767136 + ], + [ + 414, + 1.748275 + ], + [ + 415, + 1.735566 + ], + [ + 416, + 1.717335 + ], + [ + 417, + 1.703111 + ], + [ + 418, + 1.680677 + ], + [ + 419, + 1.666843 + ], + [ + 420, + 1.64247 + ], + [ + 421, + 1.623718 + ], + [ + 422, + 1.60209 + ], + [ + 423, + 1.581317 + ], + [ + 424, + 1.561665 + ], + [ + 425, + 1.544317 + ], + [ + 426, + 1.527929 + ], + [ + 427, + 1.512433 + ], + [ + 428, + 1.494826 + ], + [ + 429, + 1.473996 + ], + [ + 430, + 1.454054 + ], + [ + 431, + 1.435911 + ], + [ + 432, + 1.415138 + ], + [ + 433, + 1.394647 + ], + [ + 434, + 1.376981 + ], + [ + 435, + 1.367212 + ], + [ + 436, + 1.344127 + ], + [ + 437, + 1.342223 + ], + [ + 438, + 1.307446 + ], + [ + 439, + 1.296333 + ], + [ + 440, + 1.282094 + ], + [ + 441, + 1.256421 + ], + [ + 442, + 1.235178 + ], + [ + 443, + 1.216155 + ], + [ + 444, + 1.197468 + ], + [ + 445, + 1.186045 + ], + [ + 446, + 1.164463 + ], + [ + 447, + 1.147278 + ], + [ + 448, + 1.13127 + ], + [ + 449, + 1.114701 + ], + [ + 450, + 1.096074 + ], + [ + 451, + 1.080434 + ], + [ + 452, + 1.063357 + ], + [ + 453, + 1.043274 + ], + [ + 454, + 1.024905 + ], + [ + 455, + 1.009074 + ], + [ + 456, + 0.990214 + ], + [ + 457, + 0.975426 + ], + [ + 458, + 0.960786 + ], + [ + 459, + 0.945144 + ], + [ + 460, + 0.93187 + ], + [ + 461, + 0.919915 + ], + [ + 462, + 0.900542 + ], + [ + 463, + 0.884147 + ], + [ + 464, + 0.869024 + ], + [ + 465, + 0.851913 + ], + [ + 466, + 0.837816 + ], + [ + 467, + 0.825987 + ], + [ + 468, + 0.810271 + ], + [ + 469, + 0.79905 + ], + [ + 470, + 0.785258 + ], + [ + 471, + 0.770131 + ], + [ + 472, + 0.755814 + ], + [ + 473, + 0.744071 + ], + [ + 474, + 0.728957 + ], + [ + 475, + 0.714875 + ], + [ + 476, + 0.715917 + ], + [ + 477, + 0.690234 + ], + [ + 478, + 0.682853 + ], + [ + 479, + 0.666609 + ], + [ + 480, + 0.652233 + ], + [ + 481, + 0.639383 + ], + [ + 482, + 0.630054 + ], + [ + 483, + 0.615715 + ], + [ + 484, + 0.602713 + ], + [ + 485, + 0.594959 + ], + [ + 486, + 0.579708 + ], + [ + 487, + 0.568753 + ], + [ + 488, + 0.558011 + ], + [ + 489, + 0.547018 + ], + [ + 490, + 0.53738 + ], + [ + 491, + 0.527373 + ], + [ + 492, + 0.514484 + ], + [ + 493, + 0.507144 + ], + [ + 494, + 0.495835 + ], + [ + 495, + 0.484491 + ], + [ + 496, + 0.475173 + ], + [ + 497, + 0.465545 + ], + [ + 498, + 0.455421 + ], + [ + 499, + 0.445705 + ], + [ + 500, + 0.439259 + ], + [ + 501, + 0.428669 + ], + [ + 502, + 0.418078 + ], + [ + 503, + 0.409742 + ], + [ + 504, + 0.402742 + ], + [ + 505, + 0.391715 + ], + [ + 506, + 0.382457 + ], + [ + 507, + 0.373998 + ], + [ + 508, + 0.366362 + ], + [ + 509, + 0.358409 + ], + [ + 510, + 0.351826 + ], + [ + 511, + 0.343622 + ], + [ + 512, + 0.337782 + ], + [ + 513, + 0.328673 + ], + [ + 514, + 0.324137 + ], + [ + 515, + 0.315402 + ], + [ + 516, + 0.306453 + ], + [ + 517, + 0.300388 + ], + [ + 518, + 0.292961 + ], + [ + 519, + 0.285984 + ], + [ + 520, + 0.280125 + ], + [ + 521, + 0.274773 + ], + [ + 522, + 0.268566 + ], + [ + 523, + 0.262759 + ], + [ + 524, + 0.25852 + ], + [ + 525, + 0.252022 + ], + [ + 526, + 0.24598 + ], + [ + 527, + 0.23865 + ], + [ + 528, + 0.234183 + ], + [ + 529, + 0.229149 + ], + [ + 530, + 0.222447 + ], + [ + 531, + 0.217579 + ], + [ + 532, + 0.212994 + ], + [ + 533, + 0.207789 + ], + [ + 534, + 0.203206 + ], + [ + 535, + 0.199836 + ], + [ + 536, + 0.193288 + ], + [ + 537, + 0.189426 + ], + [ + 538, + 0.184038 + ], + [ + 539, + 0.179698 + ], + [ + 540, + 0.173731 + ], + [ + 541, + 0.170994 + ], + [ + 542, + 0.166039 + ], + [ + 543, + 0.162881 + ], + [ + 544, + 0.15952 + ], + [ + 545, + 0.155329 + ], + [ + 546, + 0.150755 + ], + [ + 547, + 0.148859 + ], + [ + 548, + 0.143666 + ], + [ + 549, + 0.140143 + ], + [ + 550, + 0.136279 + ], + [ + 551, + 0.133239 + ], + [ + 552, + 0.130708 + ], + [ + 553, + 0.128032 + ], + [ + 554, + 0.124416 + ], + [ + 555, + 0.123344 + ], + [ + 556, + 0.118282 + ], + [ + 557, + 0.115239 + ], + [ + 558, + 0.112264 + ], + [ + 559, + 0.109393 + ], + [ + 560, + 0.107491 + ], + [ + 561, + 0.103903 + ], + [ + 562, + 0.101191 + ], + [ + 563, + 0.099 + ], + [ + 564, + 0.096776 + ], + [ + 565, + 0.094197 + ], + [ + 566, + 0.091767 + ], + [ + 567, + 0.089927 + ], + [ + 568, + 0.08697 + ], + [ + 569, + 0.085597 + ], + [ + 570, + 0.083582 + ], + [ + 571, + 0.08099 + ], + [ + 572, + 0.078581 + ], + [ + 573, + 0.076057 + ], + [ + 574, + 0.075285 + ], + [ + 575, + 0.079546 + ], + [ + 576, + 0.071455 + ], + [ + 577, + 0.068752 + ], + [ + 578, + 0.067388 + ], + [ + 579, + 0.065619 + ], + [ + 580, + 0.064179 + ], + [ + 581, + 0.06225 + ], + [ + 582, + 0.060632 + ], + [ + 583, + 0.059771 + ], + [ + 584, + 0.057798 + ], + [ + 585, + 0.056232 + ], + [ + 586, + 0.05484 + ], + [ + 587, + 0.053599 + ], + [ + 588, + 0.052502 + ], + [ + 589, + 0.050957 + ], + [ + 590, + 0.050397 + ], + [ + 591, + 0.048672 + ], + [ + 592, + 0.047328 + ], + [ + 593, + 0.046634 + ], + [ + 594, + 0.045266 + ], + [ + 595, + 0.043827 + ], + [ + 596, + 0.043053 + ], + [ + 597, + 0.041946 + ], + [ + 598, + 0.041417 + ], + [ + 599, + 0.039979 + ], + [ + 600, + 0.039473 + ], + [ + 601, + 0.038778 + ], + [ + 602, + 0.037405 + ], + [ + 603, + 0.03702 + ], + [ + 604, + 0.036068 + ], + [ + 605, + 0.034427 + ], + [ + 606, + 0.033997 + ], + [ + 607, + 0.032775 + ], + [ + 608, + 0.03254 + ], + [ + 609, + 0.032624 + ], + [ + 610, + 0.030361 + ], + [ + 611, + 0.030548 + ], + [ + 612, + 0.029093 + ], + [ + 613, + 0.028391 + ], + [ + 614, + 0.027507 + ], + [ + 615, + 0.027111 + ], + [ + 616, + 0.026623 + ], + [ + 617, + 0.025667 + ], + [ + 618, + 0.025425 + ], + [ + 619, + 0.024989 + ], + [ + 620, + 0.024003 + ], + [ + 621, + 0.0234 + ], + [ + 622, + 0.023069 + ], + [ + 623, + 0.022703 + ], + [ + 624, + 0.021906 + ], + [ + 625, + 0.021442 + ], + [ + 626, + 0.021161 + ], + [ + 627, + 0.020534 + ], + [ + 628, + 0.020169 + ], + [ + 629, + 0.019903 + ], + [ + 630, + 0.019039 + ], + [ + 631, + 0.018624 + ], + [ + 632, + 0.018144 + ], + [ + 633, + 0.018723 + ], + [ + 634, + 0.0174 + ], + [ + 635, + 0.017194 + ], + [ + 636, + 0.017098 + ], + [ + 637, + 0.016312 + ], + [ + 638, + 0.015876 + ], + [ + 639, + 0.01536 + ], + [ + 640, + 0.015382 + ], + [ + 641, + 0.014815 + ], + [ + 642, + 0.014376 + ], + [ + 643, + 0.014352 + ], + [ + 644, + 0.014031 + ], + [ + 645, + 0.013817 + ], + [ + 646, + 0.014292 + ], + [ + 647, + 0.013152 + ], + [ + 648, + 0.012938 + ], + [ + 649, + 0.012911 + ], + [ + 650, + 0.012651 + ], + [ + 651, + 0.012206 + ], + [ + 652, + 0.012106 + ], + [ + 653, + 0.01171 + ], + [ + 654, + 0.012242 + ], + [ + 655, + 0.011582 + ], + [ + 656, + 0.011413 + ], + [ + 657, + 0.010927 + ], + [ + 658, + 0.01094 + ], + [ + 659, + 0.010566 + ], + [ + 660, + 0.010462 + ], + [ + 661, + 0.011319 + ], + [ + 662, + 0.010538 + ], + [ + 663, + 0.010761 + ], + [ + 664, + 0.009975 + ], + [ + 665, + 0.0111 + ], + [ + 666, + 0.009762 + ], + [ + 667, + 0.009723 + ], + [ + 668, + 0.009288 + ], + [ + 669, + 0.009782 + ], + [ + 670, + 0.008955 + ], + [ + 671, + 0.008577 + ], + [ + 672, + 0.008511 + ], + [ + 673, + 0.00847 + ], + [ + 674, + 0.007991 + ], + [ + 675, + 0.007786 + ], + [ + 676, + 0.007788 + ], + [ + 677, + 0.007629 + ], + [ + 678, + 0.007422 + ], + [ + 679, + 0.007634 + ], + [ + 680, + 0.007261 + ], + [ + 681, + 0.007194 + ], + [ + 682, + 0.007055 + ], + [ + 683, + 0.007233 + ], + [ + 684, + 0.006707 + ], + [ + 685, + 0.006759 + ], + [ + 686, + 0.006721 + ], + [ + 687, + 0.007297 + ], + [ + 688, + 0.006925 + ], + [ + 689, + 0.005828 + ], + [ + 690, + 0.005738 + ], + [ + 691, + 0.006162 + ], + [ + 692, + 0.005543 + ], + [ + 693, + 0.005614 + ], + [ + 694, + 0.005172 + ], + [ + 695, + 0.004945 + ], + [ + 696, + 0.004524 + ], + [ + 697, + 0.00433 + ], + [ + 698, + 0.004318 + ], + [ + 699, + 0.004537 + ], + [ + 700, + 0.004312 + ], + [ + 701, + 0.003809 + ], + [ + 702, + 0.003689 + ], + [ + 703, + 0.003474 + ], + [ + 704, + 0.003491 + ], + [ + 705, + 0.003413 + ], + [ + 706, + 0.002813 + ], + [ + 707, + 0.002607 + ], + [ + 708, + 0.00264 + ], + [ + 709, + 0.00247 + ], + [ + 710, + 0.002439 + ], + [ + 711, + 0.002426 + ], + [ + 712, + 0.002371 + ], + [ + 713, + 0.002463 + ], + [ + 714, + 0.002211 + ], + [ + 715, + 0.002278 + ], + [ + 716, + 0.002175 + ], + [ + 717, + 0.002196 + ], + [ + 718, + 0.002095 + ], + [ + 719, + 0.002077 + ], + [ + 720, + 0.002025 + ], + [ + 721, + 0.001959 + ], + [ + 722, + 0.001994 + ], + [ + 723, + 0.001916 + ], + [ + 724, + 0.00189 + ], + [ + 725, + 0.001822 + ], + [ + 726, + 0.001728 + ], + [ + 727, + 0.001806 + ], + [ + 728, + 0.001706 + ], + [ + 729, + 0.001721 + ], + [ + 730, + 0.001662 + ], + [ + 731, + 0.001615 + ], + [ + 732, + 0.001623 + ], + [ + 733, + 0.001569 + ], + [ + 734, + 0.001582 + ], + [ + 735, + 0.00147 + ], + [ + 736, + 0.001531 + ], + [ + 737, + 0.001518 + ], + [ + 738, + 0.001438 + ], + [ + 739, + 0.00143 + ], + [ + 740, + 0.001377 + ], + [ + 741, + 0.001372 + ], + [ + 742, + 0.001361 + ], + [ + 743, + 0.001345 + ], + [ + 744, + 0.001347 + ], + [ + 745, + 0.001303 + ], + [ + 746, + 0.001297 + ], + [ + 747, + 0.001264 + ], + [ + 748, + 0.001245 + ], + [ + 749, + 0.001222 + ], + [ + 750, + 0.001102 + ], + [ + 751, + 0.001166 + ], + [ + 752, + 0.001166 + ], + [ + 753, + 0.00115 + ], + [ + 754, + 0.001167 + ], + [ + 755, + 0.001112 + ], + [ + 756, + 0.001158 + ], + [ + 757, + 0.001271 + ], + [ + 758, + 0.001036 + ], + [ + 759, + 0.001068 + ], + [ + 760, + 0.001047 + ], + [ + 761, + 0.001035 + ], + [ + 762, + 0.000991 + ], + [ + 763, + 0.001004 + ], + [ + 764, + 0.000984 + ], + [ + 765, + 0.000965 + ], + [ + 766, + 0.000949 + ], + [ + 767, + 0.000887 + ], + [ + 768, + 0.000841 + ], + [ + 769, + 0.000862 + ], + [ + 770, + 0.000826 + ], + [ + 771, + 0.000873 + ], + [ + 772, + 0.00077 + ], + [ + 773, + 0.000861 + ], + [ + 774, + 0.000826 + ], + [ + 775, + 0.000882 + ], + [ + 776, + 0.000854 + ], + [ + 777, + 0.000966 + ], + [ + 778, + 0.000812 + ], + [ + 779, + 0.000788 + ], + [ + 780, + 0.000789 + ], + [ + 781, + 0.000675 + ], + [ + 782, + 0.000767 + ], + [ + 783, + 0.000759 + ], + [ + 784, + 0.000762 + ], + [ + 785, + 0.000698 + ], + [ + 786, + 0.000758 + ], + [ + 787, + 0.000705 + ], + [ + 788, + 0.000893 + ], + [ + 789, + 0.00069 + ], + [ + 790, + 0.000645 + ], + [ + 791, + 0.000648 + ], + [ + 792, + 0.000621 + ], + [ + 793, + 0.000691 + ], + [ + 794, + 0.000628 + ], + [ + 795, + 0.000626 + ], + [ + 796, + 0.000612 + ], + [ + 797, + 0.000685 + ], + [ + 798, + 0.000621 + ], + [ + 799, + 0.00064 + ], + [ + 800, + 0.000587 + ], + [ + 801, + 0.000599 + ], + [ + 802, + 0.000592 + ], + [ + 803, + 0.000586 + ], + [ + 804, + 0.000585 + ], + [ + 805, + 0.000536 + ], + [ + 806, + 0.000562 + ], + [ + 807, + 0.000508 + ], + [ + 808, + 0.000549 + ], + [ + 809, + 0.000508 + ], + [ + 810, + 0.000593 + ], + [ + 811, + 0.000589 + ], + [ + 812, + 0.000505 + ], + [ + 813, + 0.000464 + ], + [ + 814, + 0.000576 + ], + [ + 815, + 0.000441 + ], + [ + 816, + 0.000485 + ], + [ + 817, + 0.000482 + ], + [ + 818, + 0.000505 + ], + [ + 819, + 0.0005 + ], + [ + 820, + 0.000559 + ], + [ + 821, + 0.000537 + ], + [ + 822, + 0.0005 + ], + [ + 823, + 0.000468 + ], + [ + 824, + 0.000474 + ], + [ + 825, + 0.000521 + ], + [ + 826, + 0.000462 + ], + [ + 827, + 0.000484 + ], + [ + 828, + 0.00049 + ], + [ + 829, + 0.000453 + ], + [ + 830, + 0.000543 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 1, + 0.006385 + ], + [ + 2, + 0.006415 + ], + [ + 3, + 0.006205 + ], + [ + 4, + 0.006294 + ], + [ + 5, + 0.006996 + ], + [ + 6, + 0.006468 + ], + [ + 7, + 0.006383 + ], + [ + 8, + 0.006416 + ], + [ + 9, + 0.00643 + ], + [ + 10, + 0.006437 + ], + [ + 11, + 0.006215 + ], + [ + 12, + 0.006176 + ], + [ + 13, + 0.006393 + ], + [ + 14, + 0.006227 + ], + [ + 15, + 0.006225 + ], + [ + 16, + 0.00613 + ], + [ + 17, + 0.006262 + ], + [ + 18, + 0.005995 + ], + [ + 19, + 0.006064 + ], + [ + 20, + 0.005893 + ], + [ + 21, + 0.005744 + ], + [ + 22, + 0.005672 + ], + [ + 23, + 0.005867 + ], + [ + 24, + 0.005664 + ], + [ + 25, + 0.00566 + ], + [ + 26, + 0.005746 + ], + [ + 27, + 0.005973 + ], + [ + 28, + 0.006061 + ], + [ + 29, + 0.005853 + ], + [ + 30, + 0.006259 + ], + [ + 31, + 0.006541 + ], + [ + 32, + 0.006322 + ], + [ + 33, + 0.006432 + ], + [ + 34, + 0.006752 + ], + [ + 35, + 0.007262 + ], + [ + 36, + 0.007581 + ], + [ + 37, + 0.00895 + ], + [ + 38, + 0.010813 + ], + [ + 39, + 0.012276 + ], + [ + 40, + 0.013893 + ], + [ + 41, + 0.014909 + ], + [ + 42, + 0.01581 + ], + [ + 43, + 0.017175 + ], + [ + 44, + 0.017075 + ], + [ + 45, + 0.016683 + ], + [ + 46, + 0.017882 + ], + [ + 47, + 0.018169 + ], + [ + 48, + 0.017904 + ], + [ + 49, + 0.018613 + ], + [ + 50, + 0.018555 + ], + [ + 51, + 0.019716 + ], + [ + 52, + 0.019218 + ], + [ + 53, + 0.019832 + ], + [ + 54, + 0.021145 + ], + [ + 55, + 0.020867 + ], + [ + 56, + 0.023375 + ], + [ + 57, + 0.023128 + ], + [ + 58, + 0.024449 + ], + [ + 59, + 0.02525 + ], + [ + 60, + 0.0247 + ], + [ + 61, + 0.025583 + ], + [ + 62, + 0.024411 + ], + [ + 63, + 0.026058 + ], + [ + 64, + 0.026354 + ], + [ + 65, + 0.029489 + ], + [ + 66, + 0.031397 + ], + [ + 67, + 0.026641 + ], + [ + 68, + 0.026935 + ], + [ + 69, + 0.029566 + ], + [ + 70, + 0.035344 + ], + [ + 71, + 0.026194 + ], + [ + 72, + 0.025118 + ], + [ + 73, + 0.026655 + ], + [ + 74, + 0.028839 + ], + [ + 75, + 0.026181 + ], + [ + 76, + 0.026185 + ], + [ + 77, + 0.02868 + ], + [ + 78, + 0.028021 + ], + [ + 79, + 0.028502 + ], + [ + 80, + 0.028035 + ], + [ + 81, + 0.038907 + ], + [ + 82, + 0.030843 + ], + [ + 83, + 0.029511 + ], + [ + 84, + 0.030918 + ], + [ + 85, + 0.030245 + ], + [ + 86, + 0.031451 + ], + [ + 87, + 0.028959 + ], + [ + 88, + 0.035196 + ], + [ + 89, + 0.031851 + ], + [ + 90, + 0.031706 + ], + [ + 91, + 0.031794 + ], + [ + 92, + 0.03239 + ], + [ + 93, + 0.032508 + ], + [ + 94, + 0.033882 + ], + [ + 95, + 0.035252 + ], + [ + 96, + 0.035392 + ], + [ + 97, + 0.039229 + ], + [ + 98, + 0.036297 + ], + [ + 99, + 0.041418 + ], + [ + 100, + 0.039064 + ], + [ + 101, + 0.037321 + ], + [ + 102, + 0.03849 + ], + [ + 103, + 0.04838 + ], + [ + 104, + 0.044912 + ], + [ + 105, + 0.046211 + ], + [ + 106, + 0.056475 + ], + [ + 107, + 0.045732 + ], + [ + 108, + 0.045979 + ], + [ + 109, + 0.04675 + ], + [ + 110, + 0.056615 + ], + [ + 111, + 0.043122 + ], + [ + 112, + 0.043434 + ], + [ + 113, + 0.043208 + ], + [ + 114, + 0.04677 + ], + [ + 115, + 0.043253 + ], + [ + 116, + 0.045144 + ], + [ + 117, + 0.039521 + ], + [ + 118, + 0.041742 + ], + [ + 119, + 0.042302 + ], + [ + 120, + 0.045459 + ], + [ + 121, + 0.046189 + ], + [ + 122, + 0.042856 + ], + [ + 123, + 0.045258 + ], + [ + 124, + 0.044153 + ], + [ + 125, + 0.041869 + ], + [ + 126, + 0.041131 + ], + [ + 127, + 0.040827 + ], + [ + 128, + 0.043274 + ], + [ + 129, + 0.044007 + ], + [ + 130, + 0.043988 + ], + [ + 131, + 0.044979 + ], + [ + 132, + 0.046743 + ], + [ + 133, + 0.048693 + ], + [ + 134, + 0.049994 + ], + [ + 135, + 0.055596 + ], + [ + 136, + 0.049958 + ], + [ + 137, + 0.051359 + ], + [ + 138, + 0.05442 + ], + [ + 139, + 0.061308 + ], + [ + 140, + 0.055744 + ], + [ + 141, + 0.055043 + ], + [ + 142, + 0.058046 + ], + [ + 143, + 0.057369 + ], + [ + 144, + 0.058635 + ], + [ + 145, + 0.060521 + ], + [ + 146, + 0.062378 + ], + [ + 147, + 0.061594 + ], + [ + 148, + 0.064073 + ], + [ + 149, + 0.073711 + ], + [ + 150, + 0.073877 + ], + [ + 151, + 0.066696 + ], + [ + 152, + 0.063958 + ], + [ + 153, + 0.0678 + ], + [ + 154, + 0.0781 + ], + [ + 155, + 0.067589 + ], + [ + 156, + 0.062474 + ], + [ + 157, + 0.066133 + ], + [ + 158, + 0.064175 + ], + [ + 159, + 0.065898 + ], + [ + 160, + 0.066511 + ], + [ + 161, + 0.066324 + ], + [ + 162, + 0.068004 + ], + [ + 163, + 0.069819 + ], + [ + 164, + 0.070261 + ], + [ + 165, + 0.070798 + ], + [ + 166, + 0.07247 + ], + [ + 167, + 0.07546 + ], + [ + 168, + 0.075523 + ], + [ + 169, + 0.076434 + ], + [ + 170, + 0.077914 + ], + [ + 171, + 0.080533 + ], + [ + 172, + 0.080537 + ], + [ + 173, + 0.083143 + ], + [ + 174, + 0.086614 + ], + [ + 175, + 0.087712 + ], + [ + 176, + 0.09545 + ], + [ + 177, + 0.090475 + ], + [ + 178, + 0.091516 + ], + [ + 179, + 0.095008 + ], + [ + 180, + 0.096473 + ], + [ + 181, + 0.098209 + ], + [ + 182, + 0.102682 + ], + [ + 183, + 0.101866 + ], + [ + 184, + 0.104851 + ], + [ + 185, + 0.108855 + ], + [ + 186, + 0.109541 + ], + [ + 187, + 0.111952 + ], + [ + 188, + 0.115964 + ], + [ + 189, + 0.118109 + ], + [ + 190, + 0.120936 + ], + [ + 191, + 0.124845 + ], + [ + 192, + 0.128781 + ], + [ + 193, + 0.131235 + ], + [ + 194, + 0.133936 + ], + [ + 195, + 0.13882 + ], + [ + 196, + 0.147956 + ], + [ + 197, + 0.145946 + ], + [ + 198, + 0.15257 + ], + [ + 199, + 0.15412 + ], + [ + 200, + 0.155927 + ], + [ + 201, + 0.159693 + ], + [ + 202, + 0.162912 + ], + [ + 203, + 0.165574 + ], + [ + 204, + 0.16941 + ], + [ + 205, + 0.176597 + ], + [ + 206, + 0.178464 + ], + [ + 207, + 0.181794 + ], + [ + 208, + 0.187454 + ], + [ + 209, + 0.192259 + ], + [ + 210, + 0.195288 + ], + [ + 211, + 0.199987 + ], + [ + 212, + 0.205776 + ], + [ + 213, + 0.211405 + ], + [ + 214, + 0.215805 + ], + [ + 215, + 0.220853 + ], + [ + 216, + 0.227199 + ], + [ + 217, + 0.23338 + ], + [ + 218, + 0.24071 + ], + [ + 219, + 0.246063 + ], + [ + 220, + 0.255414 + ], + [ + 221, + 0.259153 + ], + [ + 222, + 0.264795 + ], + [ + 223, + 0.270613 + ], + [ + 224, + 0.278813 + ], + [ + 225, + 0.283152 + ], + [ + 226, + 0.291281 + ], + [ + 227, + 0.299041 + ], + [ + 228, + 0.307443 + ], + [ + 229, + 0.316952 + ], + [ + 230, + 0.32382 + ], + [ + 231, + 0.331266 + ], + [ + 232, + 0.340394 + ], + [ + 233, + 0.348527 + ], + [ + 234, + 0.357084 + ], + [ + 235, + 0.365548 + ], + [ + 236, + 0.376904 + ], + [ + 237, + 0.389093 + ], + [ + 238, + 0.397418 + ], + [ + 239, + 0.406446 + ], + [ + 240, + 0.41558 + ], + [ + 241, + 0.428726 + ], + [ + 242, + 0.437122 + ], + [ + 243, + 0.448028 + ], + [ + 244, + 0.455961 + ], + [ + 245, + 0.463843 + ], + [ + 246, + 0.475946 + ], + [ + 247, + 0.487105 + ], + [ + 248, + 0.50183 + ], + [ + 249, + 0.512607 + ], + [ + 250, + 0.525595 + ], + [ + 251, + 0.535599 + ], + [ + 252, + 0.554912 + ], + [ + 253, + 0.563465 + ], + [ + 254, + 0.57464 + ], + [ + 255, + 0.587738 + ], + [ + 256, + 0.601682 + ], + [ + 257, + 0.615443 + ], + [ + 258, + 0.630928 + ], + [ + 259, + 0.649227 + ], + [ + 260, + 0.661904 + ], + [ + 261, + 0.679051 + ], + [ + 262, + 0.694609 + ], + [ + 263, + 0.710551 + ], + [ + 264, + 0.728217 + ], + [ + 265, + 0.741752 + ], + [ + 266, + 0.759706 + ], + [ + 267, + 0.797797 + ], + [ + 268, + 0.789896 + ], + [ + 269, + 0.809802 + ], + [ + 270, + 0.828711 + ], + [ + 271, + 0.848414 + ], + [ + 272, + 0.865347 + ], + [ + 273, + 0.883073 + ], + [ + 274, + 0.899952 + ], + [ + 275, + 0.915902 + ], + [ + 276, + 0.932036 + ], + [ + 277, + 0.954644 + ], + [ + 278, + 0.969355 + ], + [ + 279, + 0.991842 + ], + [ + 280, + 1.011059 + ], + [ + 281, + 1.034585 + ], + [ + 282, + 1.054712 + ], + [ + 283, + 1.086067 + ], + [ + 284, + 1.098671 + ], + [ + 285, + 1.114729 + ], + [ + 286, + 1.133674 + ], + [ + 287, + 1.154603 + ], + [ + 288, + 1.182277 + ], + [ + 289, + 1.201776 + ], + [ + 290, + 1.223121 + ], + [ + 291, + 1.250295 + ], + [ + 292, + 1.272287 + ], + [ + 293, + 1.294989 + ], + [ + 294, + 1.316388 + ], + [ + 295, + 1.338471 + ], + [ + 296, + 1.362258 + ], + [ + 297, + 1.379305 + ], + [ + 298, + 1.411811 + ], + [ + 299, + 1.430117 + ], + [ + 300, + 1.453206 + ], + [ + 301, + 1.481991 + ], + [ + 302, + 1.50417 + ], + [ + 303, + 1.528984 + ], + [ + 304, + 1.55296 + ], + [ + 305, + 1.573168 + ], + [ + 306, + 1.593431 + ], + [ + 307, + 1.614116 + ], + [ + 308, + 1.637491 + ], + [ + 309, + 1.6648 + ], + [ + 310, + 1.690229 + ], + [ + 311, + 1.717258 + ], + [ + 312, + 1.738165 + ], + [ + 313, + 1.761839 + ], + [ + 314, + 1.785897 + ], + [ + 315, + 1.803812 + ], + [ + 316, + 1.826867 + ], + [ + 317, + 1.846418 + ], + [ + 318, + 1.861635 + ], + [ + 319, + 1.887023 + ], + [ + 320, + 1.911038 + ], + [ + 321, + 1.933663 + ], + [ + 322, + 1.955618 + ], + [ + 323, + 1.977782 + ], + [ + 324, + 2.008383 + ], + [ + 325, + 2.017995 + ], + [ + 326, + 2.035166 + ], + [ + 327, + 2.049467 + ], + [ + 328, + 2.066971 + ], + [ + 329, + 2.082184 + ], + [ + 330, + 2.100415 + ], + [ + 331, + 2.118366 + ], + [ + 332, + 2.139277 + ], + [ + 333, + 2.161468 + ], + [ + 334, + 2.179461 + ], + [ + 335, + 2.192161 + ], + [ + 336, + 2.201598 + ], + [ + 337, + 2.213687 + ], + [ + 338, + 2.224008 + ], + [ + 339, + 2.23659 + ], + [ + 340, + 2.246359 + ], + [ + 341, + 2.262599 + ], + [ + 342, + 2.274658 + ], + [ + 343, + 2.293982 + ], + [ + 344, + 2.303753 + ], + [ + 345, + 2.315768 + ], + [ + 346, + 2.326065 + ], + [ + 347, + 2.327601 + ], + [ + 348, + 2.329204 + ], + [ + 349, + 2.331671 + ], + [ + 350, + 2.34127 + ], + [ + 351, + 2.348293 + ], + [ + 352, + 2.360344 + ], + [ + 353, + 2.359206 + ], + [ + 354, + 2.368846 + ], + [ + 355, + 2.375002 + ], + [ + 356, + 2.376998 + ], + [ + 357, + 2.37589 + ], + [ + 358, + 2.373224 + ], + [ + 359, + 2.367923 + ], + [ + 360, + 2.367315 + ], + [ + 361, + 2.364672 + ], + [ + 362, + 2.368174 + ], + [ + 363, + 2.370567 + ], + [ + 364, + 2.36751 + ], + [ + 365, + 2.368074 + ], + [ + 366, + 2.366175 + ], + [ + 367, + 2.361617 + ], + [ + 368, + 2.3532 + ], + [ + 369, + 2.345622 + ], + [ + 370, + 2.334419 + ], + [ + 371, + 2.327441 + ], + [ + 372, + 2.321814 + ], + [ + 373, + 2.334838 + ], + [ + 374, + 2.309169 + ], + [ + 375, + 2.307889 + ], + [ + 376, + 2.302034 + ], + [ + 377, + 2.287229 + ], + [ + 378, + 2.272863 + ], + [ + 379, + 2.260707 + ], + [ + 380, + 2.249428 + ], + [ + 381, + 2.236069 + ], + [ + 382, + 2.222726 + ], + [ + 383, + 2.21319 + ], + [ + 384, + 2.204635 + ], + [ + 385, + 2.194677 + ], + [ + 386, + 2.186774 + ], + [ + 387, + 2.173956 + ], + [ + 388, + 2.154587 + ], + [ + 389, + 2.143526 + ], + [ + 390, + 2.124237 + ], + [ + 391, + 2.108258 + ], + [ + 392, + 2.091586 + ], + [ + 393, + 2.081375 + ], + [ + 394, + 2.079334 + ], + [ + 395, + 2.050099 + ], + [ + 396, + 2.0379 + ], + [ + 397, + 2.023635 + ], + [ + 398, + 2.004523 + ], + [ + 399, + 1.98875 + ], + [ + 400, + 1.967598 + ], + [ + 401, + 1.950373 + ], + [ + 402, + 1.93301 + ], + [ + 403, + 1.908996 + ], + [ + 404, + 1.897517 + ], + [ + 405, + 1.883373 + ], + [ + 406, + 1.868035 + ], + [ + 407, + 1.851864 + ], + [ + 408, + 1.835151 + ], + [ + 409, + 1.816329 + ], + [ + 410, + 1.795832 + ], + [ + 411, + 1.773613 + ], + [ + 412, + 1.755525 + ], + [ + 413, + 1.733398 + ], + [ + 414, + 1.715054 + ], + [ + 415, + 1.699745 + ], + [ + 416, + 1.680471 + ], + [ + 417, + 1.667325 + ], + [ + 418, + 1.647116 + ], + [ + 419, + 1.631261 + ], + [ + 420, + 1.607509 + ], + [ + 421, + 1.586764 + ], + [ + 422, + 1.568277 + ], + [ + 423, + 1.54744 + ], + [ + 424, + 1.527978 + ], + [ + 425, + 1.510116 + ], + [ + 426, + 1.493284 + ], + [ + 427, + 1.477882 + ], + [ + 428, + 1.461776 + ], + [ + 429, + 1.443442 + ], + [ + 430, + 1.424433 + ], + [ + 431, + 1.404647 + ], + [ + 432, + 1.383567 + ], + [ + 433, + 1.365533 + ], + [ + 434, + 1.34723 + ], + [ + 435, + 1.333485 + ], + [ + 436, + 1.311216 + ], + [ + 437, + 1.311442 + ], + [ + 438, + 1.279757 + ], + [ + 439, + 1.265895 + ], + [ + 440, + 1.252291 + ], + [ + 441, + 1.228165 + ], + [ + 442, + 1.207509 + ], + [ + 443, + 1.186515 + ], + [ + 444, + 1.168472 + ], + [ + 445, + 1.160265 + ], + [ + 446, + 1.137314 + ], + [ + 447, + 1.119989 + ], + [ + 448, + 1.103996 + ], + [ + 449, + 1.089317 + ], + [ + 450, + 1.072956 + ], + [ + 451, + 1.053617 + ], + [ + 452, + 1.038466 + ], + [ + 453, + 1.019797 + ], + [ + 454, + 1.005755 + ], + [ + 455, + 0.987256 + ], + [ + 456, + 0.965576 + ], + [ + 457, + 0.952122 + ], + [ + 458, + 0.939371 + ], + [ + 459, + 0.92483 + ], + [ + 460, + 0.908927 + ], + [ + 461, + 0.896385 + ], + [ + 462, + 0.88021 + ], + [ + 463, + 0.863617 + ], + [ + 464, + 0.849342 + ], + [ + 465, + 0.833599 + ], + [ + 466, + 0.819908 + ], + [ + 467, + 0.806807 + ], + [ + 468, + 0.792582 + ], + [ + 469, + 0.780538 + ], + [ + 470, + 0.767601 + ], + [ + 471, + 0.753517 + ], + [ + 472, + 0.739741 + ], + [ + 473, + 0.726184 + ], + [ + 474, + 0.71176 + ], + [ + 475, + 0.69759 + ], + [ + 476, + 0.701492 + ], + [ + 477, + 0.673285 + ], + [ + 478, + 0.666675 + ], + [ + 479, + 0.651382 + ], + [ + 480, + 0.640397 + ], + [ + 481, + 0.626286 + ], + [ + 482, + 0.614166 + ], + [ + 483, + 0.602341 + ], + [ + 484, + 0.59032 + ], + [ + 485, + 0.581584 + ], + [ + 486, + 0.566512 + ], + [ + 487, + 0.556905 + ], + [ + 488, + 0.547162 + ], + [ + 489, + 0.534598 + ], + [ + 490, + 0.525399 + ], + [ + 491, + 0.515635 + ], + [ + 492, + 0.506893 + ], + [ + 493, + 0.496785 + ], + [ + 494, + 0.485141 + ], + [ + 495, + 0.474571 + ], + [ + 496, + 0.465861 + ], + [ + 497, + 0.453321 + ], + [ + 498, + 0.444213 + ], + [ + 499, + 0.43675 + ], + [ + 500, + 0.430053 + ], + [ + 501, + 0.418097 + ], + [ + 502, + 0.411549 + ], + [ + 503, + 0.40171 + ], + [ + 504, + 0.393967 + ], + [ + 505, + 0.384778 + ], + [ + 506, + 0.375157 + ], + [ + 507, + 0.366196 + ], + [ + 508, + 0.359105 + ], + [ + 509, + 0.352025 + ], + [ + 510, + 0.345106 + ], + [ + 511, + 0.338004 + ], + [ + 512, + 0.332944 + ], + [ + 513, + 0.323899 + ], + [ + 514, + 0.317149 + ], + [ + 515, + 0.308848 + ], + [ + 516, + 0.301869 + ], + [ + 517, + 0.294793 + ], + [ + 518, + 0.288693 + ], + [ + 519, + 0.28124 + ], + [ + 520, + 0.275581 + ], + [ + 521, + 0.269737 + ], + [ + 522, + 0.264029 + ], + [ + 523, + 0.258204 + ], + [ + 524, + 0.252704 + ], + [ + 525, + 0.247017 + ], + [ + 526, + 0.243391 + ], + [ + 527, + 0.234968 + ], + [ + 528, + 0.230752 + ], + [ + 529, + 0.22458 + ], + [ + 530, + 0.219765 + ], + [ + 531, + 0.213923 + ], + [ + 532, + 0.209149 + ], + [ + 533, + 0.205505 + ], + [ + 534, + 0.200139 + ], + [ + 535, + 0.197292 + ], + [ + 536, + 0.191184 + ], + [ + 537, + 0.186445 + ], + [ + 538, + 0.181299 + ], + [ + 539, + 0.177236 + ], + [ + 540, + 0.172482 + ], + [ + 541, + 0.168461 + ], + [ + 542, + 0.1643 + ], + [ + 543, + 0.159858 + ], + [ + 544, + 0.156846 + ], + [ + 545, + 0.152949 + ], + [ + 546, + 0.149115 + ], + [ + 547, + 0.147158 + ], + [ + 548, + 0.141532 + ], + [ + 549, + 0.138293 + ], + [ + 550, + 0.134631 + ], + [ + 551, + 0.131041 + ], + [ + 552, + 0.127964 + ], + [ + 553, + 0.125772 + ], + [ + 554, + 0.122988 + ], + [ + 555, + 0.12165 + ], + [ + 556, + 0.116983 + ], + [ + 557, + 0.113405 + ], + [ + 558, + 0.111033 + ], + [ + 559, + 0.108189 + ], + [ + 560, + 0.105711 + ], + [ + 561, + 0.102993 + ], + [ + 562, + 0.100102 + ], + [ + 563, + 0.097768 + ], + [ + 564, + 0.095463 + ], + [ + 565, + 0.092699 + ], + [ + 566, + 0.091236 + ], + [ + 567, + 0.088622 + ], + [ + 568, + 0.085961 + ], + [ + 569, + 0.084456 + ], + [ + 570, + 0.082392 + ], + [ + 571, + 0.07905 + ], + [ + 572, + 0.077995 + ], + [ + 573, + 0.075234 + ], + [ + 574, + 0.073459 + ], + [ + 575, + 0.078673 + ], + [ + 576, + 0.069273 + ], + [ + 577, + 0.068721 + ], + [ + 578, + 0.066517 + ], + [ + 579, + 0.065193 + ], + [ + 580, + 0.062756 + ], + [ + 581, + 0.061712 + ], + [ + 582, + 0.060128 + ], + [ + 583, + 0.058215 + ], + [ + 584, + 0.057555 + ], + [ + 585, + 0.055888 + ], + [ + 586, + 0.054136 + ], + [ + 587, + 0.053379 + ], + [ + 588, + 0.051645 + ], + [ + 589, + 0.05071 + ], + [ + 590, + 0.049999 + ], + [ + 591, + 0.048357 + ], + [ + 592, + 0.046402 + ], + [ + 593, + 0.046 + ], + [ + 594, + 0.044844 + ], + [ + 595, + 0.043522 + ], + [ + 596, + 0.042615 + ], + [ + 597, + 0.041103 + ], + [ + 598, + 0.040276 + ], + [ + 599, + 0.039347 + ], + [ + 600, + 0.038519 + ], + [ + 601, + 0.038077 + ], + [ + 602, + 0.036842 + ], + [ + 603, + 0.036095 + ], + [ + 604, + 0.035075 + ], + [ + 605, + 0.034072 + ], + [ + 606, + 0.033285 + ], + [ + 607, + 0.032699 + ], + [ + 608, + 0.031747 + ], + [ + 609, + 0.032409 + ], + [ + 610, + 0.029801 + ], + [ + 611, + 0.030165 + ], + [ + 612, + 0.028479 + ], + [ + 613, + 0.028131 + ], + [ + 614, + 0.027018 + ], + [ + 615, + 0.026813 + ], + [ + 616, + 0.026013 + ], + [ + 617, + 0.025468 + ], + [ + 618, + 0.025185 + ], + [ + 619, + 0.02458 + ], + [ + 620, + 0.023896 + ], + [ + 621, + 0.023272 + ], + [ + 622, + 0.022711 + ], + [ + 623, + 0.022524 + ], + [ + 624, + 0.021399 + ], + [ + 625, + 0.020918 + ], + [ + 626, + 0.020377 + ], + [ + 627, + 0.019913 + ], + [ + 628, + 0.019899 + ], + [ + 629, + 0.01919 + ], + [ + 630, + 0.018843 + ], + [ + 631, + 0.018436 + ], + [ + 632, + 0.017653 + ], + [ + 633, + 0.018093 + ], + [ + 634, + 0.016973 + ], + [ + 635, + 0.016799 + ], + [ + 636, + 0.016795 + ], + [ + 637, + 0.016084 + ], + [ + 638, + 0.015636 + ], + [ + 639, + 0.015383 + ], + [ + 640, + 0.015048 + ], + [ + 641, + 0.014664 + ], + [ + 642, + 0.014201 + ], + [ + 643, + 0.013877 + ], + [ + 644, + 0.013669 + ], + [ + 645, + 0.013669 + ], + [ + 646, + 0.013697 + ], + [ + 647, + 0.012971 + ], + [ + 648, + 0.012734 + ], + [ + 649, + 0.012675 + ], + [ + 650, + 0.012176 + ], + [ + 651, + 0.01208 + ], + [ + 652, + 0.011936 + ], + [ + 653, + 0.011717 + ], + [ + 654, + 0.011848 + ], + [ + 655, + 0.011501 + ], + [ + 656, + 0.010952 + ], + [ + 657, + 0.010738 + ], + [ + 658, + 0.010656 + ], + [ + 659, + 0.010451 + ], + [ + 660, + 0.010173 + ], + [ + 661, + 0.010979 + ], + [ + 662, + 0.01021 + ], + [ + 663, + 0.010476 + ], + [ + 664, + 0.009785 + ], + [ + 665, + 0.010628 + ], + [ + 666, + 0.00944 + ], + [ + 667, + 0.009476 + ], + [ + 668, + 0.009134 + ], + [ + 669, + 0.009525 + ], + [ + 670, + 0.008485 + ], + [ + 671, + 0.008166 + ], + [ + 672, + 0.008102 + ], + [ + 673, + 0.008054 + ], + [ + 674, + 0.007558 + ], + [ + 675, + 0.007578 + ], + [ + 676, + 0.007348 + ], + [ + 677, + 0.007394 + ], + [ + 678, + 0.007403 + ], + [ + 679, + 0.007316 + ], + [ + 680, + 0.006937 + ], + [ + 681, + 0.00696 + ], + [ + 682, + 0.006818 + ], + [ + 683, + 0.006947 + ], + [ + 684, + 0.007048 + ], + [ + 685, + 0.006636 + ], + [ + 686, + 0.006142 + ], + [ + 687, + 0.006226 + ], + [ + 688, + 0.006279 + ], + [ + 689, + 0.005906 + ], + [ + 690, + 0.005841 + ], + [ + 691, + 0.005366 + ], + [ + 692, + 0.004987 + ], + [ + 693, + 0.005102 + ], + [ + 694, + 0.005058 + ], + [ + 695, + 0.004662 + ], + [ + 696, + 0.00443 + ], + [ + 697, + 0.004464 + ], + [ + 698, + 0.004622 + ], + [ + 699, + 0.004138 + ], + [ + 700, + 0.003829 + ], + [ + 701, + 0.003919 + ], + [ + 702, + 0.004508 + ], + [ + 703, + 0.003474 + ], + [ + 704, + 0.003126 + ], + [ + 705, + 0.002922 + ], + [ + 706, + 0.002853 + ], + [ + 707, + 0.002722 + ], + [ + 708, + 0.002769 + ], + [ + 709, + 0.002467 + ], + [ + 710, + 0.002342 + ], + [ + 711, + 0.002291 + ], + [ + 712, + 0.002321 + ], + [ + 713, + 0.002189 + ], + [ + 714, + 0.002193 + ], + [ + 715, + 0.002139 + ], + [ + 716, + 0.002002 + ], + [ + 717, + 0.00207 + ], + [ + 718, + 0.001969 + ], + [ + 719, + 0.001972 + ], + [ + 720, + 0.00192 + ], + [ + 721, + 0.001787 + ], + [ + 722, + 0.00186 + ], + [ + 723, + 0.001775 + ], + [ + 724, + 0.001739 + ], + [ + 725, + 0.001746 + ], + [ + 726, + 0.001638 + ], + [ + 727, + 0.001668 + ], + [ + 728, + 0.001602 + ], + [ + 729, + 0.001633 + ], + [ + 730, + 0.00157 + ], + [ + 731, + 0.001487 + ], + [ + 732, + 0.001508 + ], + [ + 733, + 0.001419 + ], + [ + 734, + 0.001536 + ], + [ + 735, + 0.001434 + ], + [ + 736, + 0.001506 + ], + [ + 737, + 0.001428 + ], + [ + 738, + 0.001309 + ], + [ + 739, + 0.001356 + ], + [ + 740, + 0.001267 + ], + [ + 741, + 0.001267 + ], + [ + 742, + 0.001297 + ], + [ + 743, + 0.001265 + ], + [ + 744, + 0.00124 + ], + [ + 745, + 0.001218 + ], + [ + 746, + 0.001185 + ], + [ + 747, + 0.001162 + ], + [ + 748, + 0.001137 + ], + [ + 749, + 0.001179 + ], + [ + 750, + 0.001058 + ], + [ + 751, + 0.001037 + ], + [ + 752, + 0.001067 + ], + [ + 753, + 0.001009 + ], + [ + 754, + 0.00106 + ], + [ + 755, + 0.001092 + ], + [ + 756, + 0.001014 + ], + [ + 757, + 0.001052 + ], + [ + 758, + 0.00094 + ], + [ + 759, + 0.000936 + ], + [ + 760, + 0.000985 + ], + [ + 761, + 0.000943 + ], + [ + 762, + 0.00087 + ], + [ + 763, + 0.000866 + ], + [ + 764, + 0.000885 + ], + [ + 765, + 0.000853 + ], + [ + 766, + 0.000864 + ], + [ + 767, + 0.000784 + ], + [ + 768, + 0.00082 + ], + [ + 769, + 0.000818 + ], + [ + 770, + 0.000796 + ], + [ + 771, + 0.000787 + ], + [ + 772, + 0.000781 + ], + [ + 773, + 0.000745 + ], + [ + 774, + 0.000711 + ], + [ + 775, + 0.000713 + ], + [ + 776, + 0.000702 + ], + [ + 777, + 0.000879 + ], + [ + 778, + 0.000751 + ], + [ + 779, + 0.000741 + ], + [ + 780, + 0.000699 + ], + [ + 781, + 0.000705 + ], + [ + 782, + 0.000729 + ], + [ + 783, + 0.000642 + ], + [ + 784, + 0.00062 + ], + [ + 785, + 0.000604 + ], + [ + 786, + 0.000661 + ], + [ + 787, + 0.000646 + ], + [ + 788, + 0.000713 + ], + [ + 789, + 0.00064 + ], + [ + 790, + 0.000592 + ], + [ + 791, + 0.00061 + ], + [ + 792, + 0.000607 + ], + [ + 793, + 0.000616 + ], + [ + 794, + 0.000537 + ], + [ + 795, + 0.000585 + ], + [ + 796, + 0.000582 + ], + [ + 797, + 0.000582 + ], + [ + 798, + 0.000555 + ], + [ + 799, + 0.00053 + ], + [ + 800, + 0.000543 + ], + [ + 801, + 0.000548 + ], + [ + 802, + 0.000519 + ], + [ + 803, + 0.000508 + ], + [ + 804, + 0.000492 + ], + [ + 805, + 0.000484 + ], + [ + 806, + 0.00046 + ], + [ + 807, + 0.000468 + ], + [ + 808, + 0.000471 + ], + [ + 809, + 0.000513 + ], + [ + 810, + 0.000551 + ], + [ + 811, + 0.000519 + ], + [ + 812, + 0.000458 + ], + [ + 813, + 0.00049 + ], + [ + 814, + 0.00053 + ], + [ + 815, + 0.000459 + ], + [ + 816, + 0.000465 + ], + [ + 817, + 0.000433 + ], + [ + 818, + 0.000427 + ], + [ + 819, + 0.000466 + ], + [ + 820, + 0.000469 + ], + [ + 821, + 0.000477 + ], + [ + 822, + 0.000455 + ], + [ + 823, + 0.000464 + ], + [ + 824, + 0.00045 + ], + [ + 825, + 0.000441 + ], + [ + 826, + 0.000463 + ], + [ + 827, + 0.00046 + ], + [ + 828, + 0.000403 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 1, + 0.013176 + ], + [ + 2, + 0.007735 + ], + [ + 3, + 0.007717 + ], + [ + 4, + 0.007797 + ], + [ + 5, + 0.007954 + ], + [ + 6, + 0.007429 + ], + [ + 7, + 0.007772 + ], + [ + 8, + 0.007524 + ], + [ + 9, + 0.007603 + ], + [ + 10, + 0.007546 + ], + [ + 11, + 0.007457 + ], + [ + 12, + 0.007599 + ], + [ + 13, + 0.007289 + ], + [ + 14, + 0.007428 + ], + [ + 15, + 0.007369 + ], + [ + 16, + 0.007239 + ], + [ + 17, + 0.006961 + ], + [ + 18, + 0.007001 + ], + [ + 19, + 0.006783 + ], + [ + 20, + 0.006738 + ], + [ + 21, + 0.00681 + ], + [ + 22, + 0.006525 + ], + [ + 23, + 0.006675 + ], + [ + 24, + 0.006456 + ], + [ + 25, + 0.006361 + ], + [ + 26, + 0.00623 + ], + [ + 27, + 0.006542 + ], + [ + 28, + 0.006812 + ], + [ + 29, + 0.006583 + ], + [ + 30, + 0.007247 + ], + [ + 31, + 0.00736 + ], + [ + 32, + 0.007219 + ], + [ + 33, + 0.007541 + ], + [ + 34, + 0.007915 + ], + [ + 35, + 0.008138 + ], + [ + 36, + 0.008238 + ], + [ + 37, + 0.008526 + ], + [ + 38, + 0.008476 + ], + [ + 39, + 0.008591 + ], + [ + 40, + 0.009869 + ], + [ + 41, + 0.009664 + ], + [ + 42, + 0.010808 + ], + [ + 43, + 0.012709 + ], + [ + 44, + 0.01438 + ], + [ + 45, + 0.017155 + ], + [ + 46, + 0.019009 + ], + [ + 47, + 0.021222 + ], + [ + 48, + 0.020732 + ], + [ + 49, + 0.022645 + ], + [ + 50, + 0.022135 + ], + [ + 51, + 0.024593 + ], + [ + 52, + 0.023373 + ], + [ + 53, + 0.024469 + ], + [ + 54, + 0.025734 + ], + [ + 55, + 0.024874 + ], + [ + 56, + 0.026811 + ], + [ + 57, + 0.025555 + ], + [ + 58, + 0.026748 + ], + [ + 59, + 0.027855 + ], + [ + 60, + 0.027798 + ], + [ + 61, + 0.029064 + ], + [ + 62, + 0.028037 + ], + [ + 63, + 0.030859 + ], + [ + 64, + 0.031522 + ], + [ + 65, + 0.036397 + ], + [ + 66, + 0.038654 + ], + [ + 67, + 0.032432 + ], + [ + 68, + 0.032353 + ], + [ + 69, + 0.03615 + ], + [ + 70, + 0.043537 + ], + [ + 71, + 0.031348 + ], + [ + 72, + 0.030442 + ], + [ + 73, + 0.031618 + ], + [ + 74, + 0.03502 + ], + [ + 75, + 0.031299 + ], + [ + 76, + 0.031435 + ], + [ + 77, + 0.034329 + ], + [ + 78, + 0.033175 + ], + [ + 79, + 0.031439 + ], + [ + 80, + 0.029709 + ], + [ + 81, + 0.042204 + ], + [ + 82, + 0.033329 + ], + [ + 83, + 0.031891 + ], + [ + 84, + 0.033584 + ], + [ + 85, + 0.034381 + ], + [ + 86, + 0.035672 + ], + [ + 87, + 0.033524 + ], + [ + 88, + 0.04121 + ], + [ + 89, + 0.036937 + ], + [ + 90, + 0.036416 + ], + [ + 91, + 0.036672 + ], + [ + 92, + 0.037255 + ], + [ + 93, + 0.038162 + ], + [ + 94, + 0.039036 + ], + [ + 95, + 0.040185 + ], + [ + 96, + 0.04092 + ], + [ + 97, + 0.045594 + ], + [ + 98, + 0.042068 + ], + [ + 99, + 0.048136 + ], + [ + 100, + 0.044987 + ], + [ + 101, + 0.042147 + ], + [ + 102, + 0.04415 + ], + [ + 103, + 0.054717 + ], + [ + 104, + 0.04826 + ], + [ + 105, + 0.048945 + ], + [ + 106, + 0.060303 + ], + [ + 107, + 0.048491 + ], + [ + 108, + 0.049103 + ], + [ + 109, + 0.051191 + ], + [ + 110, + 0.064337 + ], + [ + 111, + 0.04787 + ], + [ + 112, + 0.048504 + ], + [ + 113, + 0.04817 + ], + [ + 114, + 0.051271 + ], + [ + 115, + 0.047747 + ], + [ + 116, + 0.051397 + ], + [ + 117, + 0.04251 + ], + [ + 118, + 0.045709 + ], + [ + 119, + 0.046625 + ], + [ + 120, + 0.049421 + ], + [ + 121, + 0.051358 + ], + [ + 122, + 0.047139 + ], + [ + 123, + 0.049587 + ], + [ + 124, + 0.047188 + ], + [ + 125, + 0.044798 + ], + [ + 126, + 0.044376 + ], + [ + 127, + 0.043122 + ], + [ + 128, + 0.046629 + ], + [ + 129, + 0.04624 + ], + [ + 130, + 0.045743 + ], + [ + 131, + 0.046561 + ], + [ + 132, + 0.047703 + ], + [ + 133, + 0.049349 + ], + [ + 134, + 0.051406 + ], + [ + 135, + 0.058543 + ], + [ + 136, + 0.052396 + ], + [ + 137, + 0.05473 + ], + [ + 138, + 0.058024 + ], + [ + 139, + 0.067696 + ], + [ + 140, + 0.06028 + ], + [ + 141, + 0.059344 + ], + [ + 142, + 0.06362 + ], + [ + 143, + 0.061805 + ], + [ + 144, + 0.062229 + ], + [ + 145, + 0.065502 + ], + [ + 146, + 0.067284 + ], + [ + 147, + 0.066481 + ], + [ + 148, + 0.069894 + ], + [ + 149, + 0.08239 + ], + [ + 150, + 0.08097 + ], + [ + 151, + 0.073022 + ], + [ + 152, + 0.066753 + ], + [ + 153, + 0.073424 + ], + [ + 154, + 0.086658 + ], + [ + 155, + 0.072642 + ], + [ + 156, + 0.06507 + ], + [ + 157, + 0.07014 + ], + [ + 158, + 0.068048 + ], + [ + 159, + 0.071445 + ], + [ + 160, + 0.069566 + ], + [ + 161, + 0.068669 + ], + [ + 162, + 0.069884 + ], + [ + 163, + 0.071589 + ], + [ + 164, + 0.073099 + ], + [ + 165, + 0.073955 + ], + [ + 166, + 0.076331 + ], + [ + 167, + 0.080557 + ], + [ + 168, + 0.079105 + ], + [ + 169, + 0.080328 + ], + [ + 170, + 0.081554 + ], + [ + 171, + 0.084818 + ], + [ + 172, + 0.085101 + ], + [ + 173, + 0.0881 + ], + [ + 174, + 0.092128 + ], + [ + 175, + 0.092559 + ], + [ + 176, + 0.102882 + ], + [ + 177, + 0.096345 + ], + [ + 178, + 0.096622 + ], + [ + 179, + 0.099601 + ], + [ + 180, + 0.102427 + ], + [ + 181, + 0.10453 + ], + [ + 182, + 0.109557 + ], + [ + 183, + 0.108537 + ], + [ + 184, + 0.111638 + ], + [ + 185, + 0.116524 + ], + [ + 186, + 0.116767 + ], + [ + 187, + 0.120175 + ], + [ + 188, + 0.124978 + ], + [ + 189, + 0.126729 + ], + [ + 190, + 0.131985 + ], + [ + 191, + 0.135431 + ], + [ + 192, + 0.138302 + ], + [ + 193, + 0.14193 + ], + [ + 194, + 0.145247 + ], + [ + 195, + 0.150979 + ], + [ + 196, + 0.161082 + ], + [ + 197, + 0.158766 + ], + [ + 198, + 0.165197 + ], + [ + 199, + 0.168414 + ], + [ + 200, + 0.171542 + ], + [ + 201, + 0.176156 + ], + [ + 202, + 0.177751 + ], + [ + 203, + 0.183096 + ], + [ + 204, + 0.186647 + ], + [ + 205, + 0.195884 + ], + [ + 206, + 0.197955 + ], + [ + 207, + 0.202938 + ], + [ + 208, + 0.207688 + ], + [ + 209, + 0.214327 + ], + [ + 210, + 0.217947 + ], + [ + 211, + 0.222195 + ], + [ + 212, + 0.230806 + ], + [ + 213, + 0.236336 + ], + [ + 214, + 0.242033 + ], + [ + 215, + 0.249616 + ], + [ + 216, + 0.256089 + ], + [ + 217, + 0.264721 + ], + [ + 218, + 0.271698 + ], + [ + 219, + 0.277678 + ], + [ + 220, + 0.288985 + ], + [ + 221, + 0.29344 + ], + [ + 222, + 0.300495 + ], + [ + 223, + 0.307483 + ], + [ + 224, + 0.31757 + ], + [ + 225, + 0.325057 + ], + [ + 226, + 0.335539 + ], + [ + 227, + 0.341584 + ], + [ + 228, + 0.353837 + ], + [ + 229, + 0.363875 + ], + [ + 230, + 0.373502 + ], + [ + 231, + 0.381286 + ], + [ + 232, + 0.393284 + ], + [ + 233, + 0.40317 + ], + [ + 234, + 0.412837 + ], + [ + 235, + 0.423196 + ], + [ + 236, + 0.437528 + ], + [ + 237, + 0.451285 + ], + [ + 238, + 0.459733 + ], + [ + 239, + 0.474267 + ], + [ + 240, + 0.484371 + ], + [ + 241, + 0.503135 + ], + [ + 242, + 0.515742 + ], + [ + 243, + 0.525961 + ], + [ + 244, + 0.533801 + ], + [ + 245, + 0.546001 + ], + [ + 246, + 0.557586 + ], + [ + 247, + 0.574737 + ], + [ + 248, + 0.590575 + ], + [ + 249, + 0.60218 + ], + [ + 250, + 0.621857 + ], + [ + 251, + 0.633898 + ], + [ + 252, + 0.657933 + ], + [ + 253, + 0.665916 + ], + [ + 254, + 0.678987 + ], + [ + 255, + 0.698203 + ], + [ + 256, + 0.716163 + ], + [ + 257, + 0.731325 + ], + [ + 258, + 0.75086 + ], + [ + 259, + 0.773476 + ], + [ + 260, + 0.790629 + ], + [ + 261, + 0.809868 + ], + [ + 262, + 0.830314 + ], + [ + 263, + 0.849479 + ], + [ + 264, + 0.875046 + ], + [ + 265, + 0.890747 + ], + [ + 266, + 0.911588 + ], + [ + 267, + 0.956376 + ], + [ + 268, + 0.948506 + ], + [ + 269, + 0.971398 + ], + [ + 270, + 0.996823 + ], + [ + 271, + 1.022295 + ], + [ + 272, + 1.041827 + ], + [ + 273, + 1.064821 + ], + [ + 274, + 1.084581 + ], + [ + 275, + 1.107161 + ], + [ + 276, + 1.12667 + ], + [ + 277, + 1.151368 + ], + [ + 278, + 1.169135 + ], + [ + 279, + 1.197058 + ], + [ + 280, + 1.225987 + ], + [ + 281, + 1.251495 + ], + [ + 282, + 1.280604 + ], + [ + 283, + 1.313098 + ], + [ + 284, + 1.324951 + ], + [ + 285, + 1.349321 + ], + [ + 286, + 1.373977 + ], + [ + 287, + 1.395625 + ], + [ + 288, + 1.428948 + ], + [ + 289, + 1.456092 + ], + [ + 290, + 1.484829 + ], + [ + 291, + 1.509165 + ], + [ + 292, + 1.545094 + ], + [ + 293, + 1.571372 + ], + [ + 294, + 1.596233 + ], + [ + 295, + 1.625838 + ], + [ + 296, + 1.655366 + ], + [ + 297, + 1.674953 + ], + [ + 298, + 1.713228 + ], + [ + 299, + 1.737005 + ], + [ + 300, + 1.764917 + ], + [ + 301, + 1.800704 + ], + [ + 302, + 1.825023 + ], + [ + 303, + 1.853718 + ], + [ + 304, + 1.879167 + ], + [ + 305, + 1.908721 + ], + [ + 306, + 1.931898 + ], + [ + 307, + 1.955346 + ], + [ + 308, + 1.988939 + ], + [ + 309, + 2.017654 + ], + [ + 310, + 2.048559 + ], + [ + 311, + 2.081057 + ], + [ + 312, + 2.107332 + ], + [ + 313, + 2.141749 + ], + [ + 314, + 2.165033 + ], + [ + 315, + 2.192235 + ], + [ + 316, + 2.217413 + ], + [ + 317, + 2.239585 + ], + [ + 318, + 2.260403 + ], + [ + 319, + 2.289539 + ], + [ + 320, + 2.313254 + ], + [ + 321, + 2.345472 + ], + [ + 322, + 2.367515 + ], + [ + 323, + 2.391102 + ], + [ + 324, + 2.435202 + ], + [ + 325, + 2.441327 + ], + [ + 326, + 2.46037 + ], + [ + 327, + 2.478542 + ], + [ + 328, + 2.500722 + ], + [ + 329, + 2.515625 + ], + [ + 330, + 2.538292 + ], + [ + 331, + 2.559012 + ], + [ + 332, + 2.583075 + ], + [ + 333, + 2.607969 + ], + [ + 334, + 2.629986 + ], + [ + 335, + 2.64283 + ], + [ + 336, + 2.65217 + ], + [ + 337, + 2.670998 + ], + [ + 338, + 2.680035 + ], + [ + 339, + 2.690134 + ], + [ + 340, + 2.700337 + ], + [ + 341, + 2.719584 + ], + [ + 342, + 2.731059 + ], + [ + 343, + 2.750755 + ], + [ + 344, + 2.767675 + ], + [ + 345, + 2.778806 + ], + [ + 346, + 2.78322 + ], + [ + 347, + 2.790075 + ], + [ + 348, + 2.786966 + ], + [ + 349, + 2.797667 + ], + [ + 350, + 2.79612 + ], + [ + 351, + 2.805293 + ], + [ + 352, + 2.825577 + ], + [ + 353, + 2.820987 + ], + [ + 354, + 2.827319 + ], + [ + 355, + 2.831683 + ], + [ + 356, + 2.83656 + ], + [ + 357, + 2.823147 + ], + [ + 358, + 2.82404 + ], + [ + 359, + 2.818612 + ], + [ + 360, + 2.807853 + ], + [ + 361, + 2.813349 + ], + [ + 362, + 2.814526 + ], + [ + 363, + 2.81862 + ], + [ + 364, + 2.811516 + ], + [ + 365, + 2.805773 + ], + [ + 366, + 2.798121 + ], + [ + 367, + 2.79338 + ], + [ + 368, + 2.787059 + ], + [ + 369, + 2.77145 + ], + [ + 370, + 2.75693 + ], + [ + 371, + 2.745335 + ], + [ + 372, + 2.731718 + ], + [ + 373, + 2.747774 + ], + [ + 374, + 2.725701 + ], + [ + 375, + 2.714652 + ], + [ + 376, + 2.702587 + ], + [ + 377, + 2.68958 + ], + [ + 378, + 2.667903 + ], + [ + 379, + 2.656798 + ], + [ + 380, + 2.634189 + ], + [ + 381, + 2.618699 + ], + [ + 382, + 2.601763 + ], + [ + 383, + 2.590001 + ], + [ + 384, + 2.579853 + ], + [ + 385, + 2.567595 + ], + [ + 386, + 2.553842 + ], + [ + 387, + 2.533036 + ], + [ + 388, + 2.512974 + ], + [ + 389, + 2.491586 + ], + [ + 390, + 2.468825 + ], + [ + 391, + 2.453368 + ], + [ + 392, + 2.430727 + ], + [ + 393, + 2.416727 + ], + [ + 394, + 2.415615 + ], + [ + 395, + 2.378592 + ], + [ + 396, + 2.360021 + ], + [ + 397, + 2.346479 + ], + [ + 398, + 2.315756 + ], + [ + 399, + 2.29514 + ], + [ + 400, + 2.273101 + ], + [ + 401, + 2.24847 + ], + [ + 402, + 2.228874 + ], + [ + 403, + 2.202506 + ], + [ + 404, + 2.188521 + ], + [ + 405, + 2.172601 + ], + [ + 406, + 2.148358 + ], + [ + 407, + 2.123185 + ], + [ + 408, + 2.105714 + ], + [ + 409, + 2.083868 + ], + [ + 410, + 2.057271 + ], + [ + 411, + 2.032892 + ], + [ + 412, + 2.005776 + ], + [ + 413, + 1.982453 + ], + [ + 414, + 1.961948 + ], + [ + 415, + 1.938301 + ], + [ + 416, + 1.916401 + ], + [ + 417, + 1.902959 + ], + [ + 418, + 1.876472 + ], + [ + 419, + 1.857988 + ], + [ + 420, + 1.831696 + ], + [ + 421, + 1.805347 + ], + [ + 422, + 1.778367 + ], + [ + 423, + 1.758619 + ], + [ + 424, + 1.733314 + ], + [ + 425, + 1.710666 + ], + [ + 426, + 1.690458 + ], + [ + 427, + 1.670646 + ], + [ + 428, + 1.653534 + ], + [ + 429, + 1.632113 + ], + [ + 430, + 1.607633 + ], + [ + 431, + 1.580833 + ], + [ + 432, + 1.554724 + ], + [ + 433, + 1.531298 + ], + [ + 434, + 1.514459 + ], + [ + 435, + 1.498414 + ], + [ + 436, + 1.471851 + ], + [ + 437, + 1.472111 + ], + [ + 438, + 1.435616 + ], + [ + 439, + 1.414901 + ], + [ + 440, + 1.402819 + ], + [ + 441, + 1.37237 + ], + [ + 442, + 1.349474 + ], + [ + 443, + 1.324217 + ], + [ + 444, + 1.301879 + ], + [ + 445, + 1.287355 + ], + [ + 446, + 1.264301 + ], + [ + 447, + 1.243928 + ], + [ + 448, + 1.225119 + ], + [ + 449, + 1.208826 + ], + [ + 450, + 1.186247 + ], + [ + 451, + 1.164658 + ], + [ + 452, + 1.149119 + ], + [ + 453, + 1.12209 + ], + [ + 454, + 1.105488 + ], + [ + 455, + 1.084816 + ], + [ + 456, + 1.065681 + ], + [ + 457, + 1.049308 + ], + [ + 458, + 1.030382 + ], + [ + 459, + 1.017665 + ], + [ + 460, + 0.995238 + ], + [ + 461, + 0.982806 + ], + [ + 462, + 0.960862 + ], + [ + 463, + 0.946108 + ], + [ + 464, + 0.925613 + ], + [ + 465, + 0.909955 + ], + [ + 466, + 0.894983 + ], + [ + 467, + 0.880555 + ], + [ + 468, + 0.86311 + ], + [ + 469, + 0.849015 + ], + [ + 470, + 0.834116 + ], + [ + 471, + 0.819314 + ], + [ + 472, + 0.801438 + ], + [ + 473, + 0.786085 + ], + [ + 474, + 0.770795 + ], + [ + 475, + 0.756855 + ], + [ + 476, + 0.75868 + ], + [ + 477, + 0.73043 + ], + [ + 478, + 0.718321 + ], + [ + 479, + 0.701226 + ], + [ + 480, + 0.686485 + ], + [ + 481, + 0.676215 + ], + [ + 482, + 0.660459 + ], + [ + 483, + 0.646864 + ], + [ + 484, + 0.632373 + ], + [ + 485, + 0.624318 + ], + [ + 486, + 0.606369 + ], + [ + 487, + 0.594702 + ], + [ + 488, + 0.584535 + ], + [ + 489, + 0.570183 + ], + [ + 490, + 0.559904 + ], + [ + 491, + 0.54938 + ], + [ + 492, + 0.536818 + ], + [ + 493, + 0.526074 + ], + [ + 494, + 0.514493 + ], + [ + 495, + 0.50395 + ], + [ + 496, + 0.491085 + ], + [ + 497, + 0.481562 + ], + [ + 498, + 0.472684 + ], + [ + 499, + 0.463716 + ], + [ + 500, + 0.455611 + ], + [ + 501, + 0.440077 + ], + [ + 502, + 0.432571 + ], + [ + 503, + 0.422549 + ], + [ + 504, + 0.409999 + ], + [ + 505, + 0.402642 + ], + [ + 506, + 0.394489 + ], + [ + 507, + 0.386307 + ], + [ + 508, + 0.376637 + ], + [ + 509, + 0.368637 + ], + [ + 510, + 0.360813 + ], + [ + 511, + 0.354275 + ], + [ + 512, + 0.347924 + ], + [ + 513, + 0.337646 + ], + [ + 514, + 0.332056 + ], + [ + 515, + 0.3232 + ], + [ + 516, + 0.314919 + ], + [ + 517, + 0.306768 + ], + [ + 518, + 0.300818 + ], + [ + 519, + 0.294085 + ], + [ + 520, + 0.287868 + ], + [ + 521, + 0.280138 + ], + [ + 522, + 0.272989 + ], + [ + 523, + 0.269497 + ], + [ + 524, + 0.262667 + ], + [ + 525, + 0.255618 + ], + [ + 526, + 0.252528 + ], + [ + 527, + 0.243697 + ], + [ + 528, + 0.238521 + ], + [ + 529, + 0.233071 + ], + [ + 530, + 0.226948 + ], + [ + 531, + 0.22024 + ], + [ + 532, + 0.213835 + ], + [ + 533, + 0.211099 + ], + [ + 534, + 0.205968 + ], + [ + 535, + 0.202606 + ], + [ + 536, + 0.194706 + ], + [ + 537, + 0.191088 + ], + [ + 538, + 0.185797 + ], + [ + 539, + 0.180659 + ], + [ + 540, + 0.175714 + ], + [ + 541, + 0.172473 + ], + [ + 542, + 0.167484 + ], + [ + 543, + 0.163829 + ], + [ + 544, + 0.158955 + ], + [ + 545, + 0.156951 + ], + [ + 546, + 0.151638 + ], + [ + 547, + 0.149661 + ], + [ + 548, + 0.145474 + ], + [ + 549, + 0.14165 + ], + [ + 550, + 0.137325 + ], + [ + 551, + 0.133865 + ], + [ + 552, + 0.131426 + ], + [ + 553, + 0.128138 + ], + [ + 554, + 0.125591 + ], + [ + 555, + 0.124462 + ], + [ + 556, + 0.117571 + ], + [ + 557, + 0.115311 + ], + [ + 558, + 0.113095 + ], + [ + 559, + 0.110426 + ], + [ + 560, + 0.107318 + ], + [ + 561, + 0.104374 + ], + [ + 562, + 0.102348 + ], + [ + 563, + 0.09911 + ], + [ + 564, + 0.097314 + ], + [ + 565, + 0.093873 + ], + [ + 566, + 0.091822 + ], + [ + 567, + 0.08964 + ], + [ + 568, + 0.086812 + ], + [ + 569, + 0.085146 + ], + [ + 570, + 0.083468 + ], + [ + 571, + 0.080377 + ], + [ + 572, + 0.077983 + ], + [ + 573, + 0.076752 + ], + [ + 574, + 0.074901 + ], + [ + 575, + 0.081005 + ], + [ + 576, + 0.071111 + ], + [ + 577, + 0.068876 + ], + [ + 578, + 0.067159 + ], + [ + 579, + 0.065463 + ], + [ + 580, + 0.063653 + ], + [ + 581, + 0.062612 + ], + [ + 582, + 0.060473 + ], + [ + 583, + 0.059335 + ], + [ + 584, + 0.057557 + ], + [ + 585, + 0.056709 + ], + [ + 586, + 0.055657 + ], + [ + 587, + 0.053579 + ], + [ + 588, + 0.053125 + ], + [ + 589, + 0.051488 + ], + [ + 590, + 0.050605 + ], + [ + 591, + 0.049213 + ], + [ + 592, + 0.048162 + ], + [ + 593, + 0.04727 + ], + [ + 594, + 0.044655 + ], + [ + 595, + 0.044119 + ], + [ + 596, + 0.043388 + ], + [ + 597, + 0.042015 + ], + [ + 598, + 0.041283 + ], + [ + 599, + 0.040019 + ], + [ + 600, + 0.039832 + ], + [ + 601, + 0.038842 + ], + [ + 602, + 0.037255 + ], + [ + 603, + 0.037119 + ], + [ + 604, + 0.036197 + ], + [ + 605, + 0.035193 + ], + [ + 606, + 0.034164 + ], + [ + 607, + 0.033493 + ], + [ + 608, + 0.032337 + ], + [ + 609, + 0.033042 + ], + [ + 610, + 0.030893 + ], + [ + 611, + 0.030925 + ], + [ + 612, + 0.029632 + ], + [ + 613, + 0.028551 + ], + [ + 614, + 0.028 + ], + [ + 615, + 0.027876 + ], + [ + 616, + 0.026969 + ], + [ + 617, + 0.02643 + ], + [ + 618, + 0.025766 + ], + [ + 619, + 0.025725 + ], + [ + 620, + 0.024563 + ], + [ + 621, + 0.023628 + ], + [ + 622, + 0.023611 + ], + [ + 623, + 0.022905 + ], + [ + 624, + 0.022071 + ], + [ + 625, + 0.021626 + ], + [ + 626, + 0.021625 + ], + [ + 627, + 0.020739 + ], + [ + 628, + 0.020387 + ], + [ + 629, + 0.019941 + ], + [ + 630, + 0.019182 + ], + [ + 631, + 0.019213 + ], + [ + 632, + 0.018599 + ], + [ + 633, + 0.01939 + ], + [ + 634, + 0.01787 + ], + [ + 635, + 0.017902 + ], + [ + 636, + 0.017311 + ], + [ + 637, + 0.016922 + ], + [ + 638, + 0.016586 + ], + [ + 639, + 0.015963 + ], + [ + 640, + 0.016025 + ], + [ + 641, + 0.015612 + ], + [ + 642, + 0.014828 + ], + [ + 643, + 0.014696 + ], + [ + 644, + 0.014715 + ], + [ + 645, + 0.014227 + ], + [ + 646, + 0.014831 + ], + [ + 647, + 0.014001 + ], + [ + 648, + 0.013325 + ], + [ + 649, + 0.013494 + ], + [ + 650, + 0.012846 + ], + [ + 651, + 0.012536 + ], + [ + 652, + 0.012477 + ], + [ + 653, + 0.012282 + ], + [ + 654, + 0.012548 + ], + [ + 655, + 0.01204 + ], + [ + 656, + 0.011558 + ], + [ + 657, + 0.011544 + ], + [ + 658, + 0.011479 + ], + [ + 659, + 0.011008 + ], + [ + 660, + 0.010791 + ], + [ + 661, + 0.011682 + ], + [ + 662, + 0.011121 + ], + [ + 663, + 0.011333 + ], + [ + 664, + 0.010657 + ], + [ + 665, + 0.011601 + ], + [ + 666, + 0.010193 + ], + [ + 667, + 0.010506 + ], + [ + 668, + 0.010133 + ], + [ + 669, + 0.01067 + ], + [ + 670, + 0.009532 + ], + [ + 671, + 0.009166 + ], + [ + 672, + 0.009121 + ], + [ + 673, + 0.009176 + ], + [ + 674, + 0.00865 + ], + [ + 675, + 0.008555 + ], + [ + 676, + 0.008316 + ], + [ + 677, + 0.008064 + ], + [ + 678, + 0.008089 + ], + [ + 679, + 0.00797 + ], + [ + 680, + 0.00763 + ], + [ + 681, + 0.007393 + ], + [ + 682, + 0.006905 + ], + [ + 683, + 0.0067 + ], + [ + 684, + 0.006383 + ], + [ + 685, + 0.006521 + ], + [ + 686, + 0.006089 + ], + [ + 687, + 0.006248 + ], + [ + 688, + 0.006478 + ], + [ + 689, + 0.005721 + ], + [ + 690, + 0.005313 + ], + [ + 691, + 0.004931 + ], + [ + 692, + 0.004839 + ], + [ + 693, + 0.00487 + ], + [ + 694, + 0.004626 + ], + [ + 695, + 0.004433 + ], + [ + 696, + 0.003877 + ], + [ + 697, + 0.003644 + ], + [ + 698, + 0.003775 + ], + [ + 699, + 0.003499 + ], + [ + 700, + 0.003469 + ], + [ + 701, + 0.003338 + ], + [ + 702, + 0.00335 + ], + [ + 703, + 0.003238 + ], + [ + 704, + 0.003123 + ], + [ + 705, + 0.003105 + ], + [ + 706, + 0.002958 + ], + [ + 707, + 0.00312 + ], + [ + 708, + 0.002958 + ], + [ + 709, + 0.002905 + ], + [ + 710, + 0.002711 + ], + [ + 711, + 0.002625 + ], + [ + 712, + 0.00267 + ], + [ + 713, + 0.002578 + ], + [ + 714, + 0.00243 + ], + [ + 715, + 0.002581 + ], + [ + 716, + 0.002345 + ], + [ + 717, + 0.002403 + ], + [ + 718, + 0.002412 + ], + [ + 719, + 0.002347 + ], + [ + 720, + 0.002235 + ], + [ + 721, + 0.002147 + ], + [ + 722, + 0.002198 + ], + [ + 723, + 0.002095 + ], + [ + 724, + 0.002053 + ], + [ + 725, + 0.002135 + ], + [ + 726, + 0.002004 + ], + [ + 727, + 0.001958 + ], + [ + 728, + 0.001963 + ], + [ + 729, + 0.001933 + ], + [ + 730, + 0.001791 + ], + [ + 731, + 0.001865 + ], + [ + 732, + 0.001844 + ], + [ + 733, + 0.001782 + ], + [ + 734, + 0.001775 + ], + [ + 735, + 0.001715 + ], + [ + 736, + 0.001756 + ], + [ + 737, + 0.001715 + ], + [ + 738, + 0.001646 + ], + [ + 739, + 0.001662 + ], + [ + 740, + 0.001586 + ], + [ + 741, + 0.001636 + ], + [ + 742, + 0.001517 + ], + [ + 743, + 0.001524 + ], + [ + 744, + 0.00153 + ], + [ + 745, + 0.001473 + ], + [ + 746, + 0.001491 + ], + [ + 747, + 0.001414 + ], + [ + 748, + 0.001464 + ], + [ + 749, + 0.001454 + ], + [ + 750, + 0.001372 + ], + [ + 751, + 0.001339 + ], + [ + 752, + 0.001396 + ], + [ + 753, + 0.001389 + ], + [ + 754, + 0.001284 + ], + [ + 755, + 0.001325 + ], + [ + 756, + 0.001297 + ], + [ + 757, + 0.001407 + ], + [ + 758, + 0.001333 + ], + [ + 759, + 0.001199 + ], + [ + 760, + 0.001221 + ], + [ + 761, + 0.001163 + ], + [ + 762, + 0.001105 + ], + [ + 763, + 0.001182 + ], + [ + 764, + 0.001154 + ], + [ + 765, + 0.001094 + ], + [ + 766, + 0.001066 + ], + [ + 767, + 0.001074 + ], + [ + 768, + 0.000929 + ], + [ + 769, + 0.001066 + ], + [ + 770, + 0.001037 + ], + [ + 771, + 0.000991 + ], + [ + 772, + 0.000979 + ], + [ + 773, + 0.00091 + ], + [ + 774, + 0.001002 + ], + [ + 775, + 0.0009 + ], + [ + 776, + 0.000897 + ], + [ + 777, + 0.001057 + ], + [ + 778, + 0.000934 + ], + [ + 779, + 0.000865 + ], + [ + 780, + 0.001012 + ], + [ + 781, + 0.000831 + ], + [ + 782, + 0.000875 + ], + [ + 783, + 0.000857 + ], + [ + 784, + 0.000856 + ], + [ + 785, + 0.000831 + ], + [ + 786, + 0.000889 + ], + [ + 787, + 0.00086 + ], + [ + 788, + 0.001031 + ], + [ + 789, + 0.000795 + ], + [ + 790, + 0.000772 + ], + [ + 791, + 0.000745 + ], + [ + 792, + 0.000733 + ], + [ + 793, + 0.000753 + ], + [ + 794, + 0.000796 + ], + [ + 795, + 0.000802 + ], + [ + 796, + 0.000687 + ], + [ + 797, + 0.000747 + ], + [ + 798, + 0.000698 + ], + [ + 799, + 0.000731 + ], + [ + 800, + 0.000734 + ], + [ + 801, + 0.000717 + ], + [ + 802, + 0.000628 + ], + [ + 803, + 0.000662 + ], + [ + 804, + 0.000666 + ], + [ + 805, + 0.000588 + ], + [ + 806, + 0.000596 + ], + [ + 807, + 0.000589 + ], + [ + 808, + 0.000623 + ], + [ + 809, + 0.000574 + ], + [ + 810, + 0.000679 + ], + [ + 811, + 0.000693 + ], + [ + 812, + 0.000577 + ], + [ + 813, + 0.000607 + ], + [ + 814, + 0.000739 + ], + [ + 815, + 0.000587 + ], + [ + 816, + 0.000575 + ], + [ + 817, + 0.000546 + ], + [ + 818, + 0.000622 + ], + [ + 819, + 0.000605 + ], + [ + 820, + 0.000588 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 1, + 0.009346 + ], + [ + 2, + 0.006841 + ], + [ + 3, + 0.007132 + ], + [ + 4, + 0.007037 + ], + [ + 5, + 0.007216 + ], + [ + 6, + 0.006988 + ], + [ + 7, + 0.00687 + ], + [ + 8, + 0.006968 + ], + [ + 9, + 0.006974 + ], + [ + 10, + 0.006924 + ], + [ + 11, + 0.00692 + ], + [ + 12, + 0.006951 + ], + [ + 13, + 0.006946 + ], + [ + 14, + 0.007153 + ], + [ + 15, + 0.006739 + ], + [ + 16, + 0.006736 + ], + [ + 17, + 0.006686 + ], + [ + 18, + 0.006637 + ], + [ + 19, + 0.006426 + ], + [ + 20, + 0.006371 + ], + [ + 21, + 0.006411 + ], + [ + 22, + 0.006397 + ], + [ + 23, + 0.006105 + ], + [ + 24, + 0.006106 + ], + [ + 25, + 0.005981 + ], + [ + 26, + 0.006024 + ], + [ + 27, + 0.0063 + ], + [ + 28, + 0.006373 + ], + [ + 29, + 0.006545 + ], + [ + 30, + 0.006997 + ], + [ + 31, + 0.007061 + ], + [ + 32, + 0.007228 + ], + [ + 33, + 0.007197 + ], + [ + 34, + 0.007327 + ], + [ + 35, + 0.007945 + ], + [ + 36, + 0.008286 + ], + [ + 37, + 0.008459 + ], + [ + 38, + 0.008339 + ], + [ + 39, + 0.008654 + ], + [ + 40, + 0.008445 + ], + [ + 41, + 0.008828 + ], + [ + 42, + 0.00981 + ], + [ + 43, + 0.011626 + ], + [ + 44, + 0.014746 + ], + [ + 45, + 0.015692 + ], + [ + 46, + 0.019106 + ], + [ + 47, + 0.02083 + ], + [ + 48, + 0.021538 + ], + [ + 49, + 0.022696 + ], + [ + 50, + 0.022498 + ], + [ + 51, + 0.02448 + ], + [ + 52, + 0.023465 + ], + [ + 53, + 0.02438 + ], + [ + 54, + 0.025563 + ], + [ + 55, + 0.025066 + ], + [ + 56, + 0.026573 + ], + [ + 57, + 0.026074 + ], + [ + 58, + 0.026301 + ], + [ + 59, + 0.027531 + ], + [ + 60, + 0.027763 + ], + [ + 61, + 0.030187 + ], + [ + 62, + 0.029393 + ], + [ + 63, + 0.031945 + ], + [ + 64, + 0.03243 + ], + [ + 65, + 0.036026 + ], + [ + 66, + 0.03847 + ], + [ + 67, + 0.032629 + ], + [ + 68, + 0.033013 + ], + [ + 69, + 0.035823 + ], + [ + 70, + 0.042864 + ], + [ + 71, + 0.032475 + ], + [ + 72, + 0.030741 + ], + [ + 73, + 0.032559 + ], + [ + 74, + 0.035271 + ], + [ + 75, + 0.031993 + ], + [ + 76, + 0.03202 + ], + [ + 77, + 0.035178 + ], + [ + 78, + 0.033872 + ], + [ + 79, + 0.031994 + ], + [ + 80, + 0.030874 + ], + [ + 81, + 0.041522 + ], + [ + 82, + 0.034055 + ], + [ + 83, + 0.033902 + ], + [ + 84, + 0.036033 + ], + [ + 85, + 0.036622 + ], + [ + 86, + 0.03764 + ], + [ + 87, + 0.03544 + ], + [ + 88, + 0.042727 + ], + [ + 89, + 0.039133 + ], + [ + 90, + 0.038482 + ], + [ + 91, + 0.038799 + ], + [ + 92, + 0.039484 + ], + [ + 93, + 0.03978 + ], + [ + 94, + 0.040767 + ], + [ + 95, + 0.042834 + ], + [ + 96, + 0.043024 + ], + [ + 97, + 0.04744 + ], + [ + 98, + 0.044544 + ], + [ + 99, + 0.049558 + ], + [ + 100, + 0.047216 + ], + [ + 101, + 0.044959 + ], + [ + 102, + 0.046016 + ], + [ + 103, + 0.055048 + ], + [ + 104, + 0.049601 + ], + [ + 105, + 0.050584 + ], + [ + 106, + 0.060882 + ], + [ + 107, + 0.051301 + ], + [ + 108, + 0.05264 + ], + [ + 109, + 0.055226 + ], + [ + 110, + 0.06781 + ], + [ + 111, + 0.05157 + ], + [ + 112, + 0.052475 + ], + [ + 113, + 0.051942 + ], + [ + 114, + 0.055201 + ], + [ + 115, + 0.051795 + ], + [ + 116, + 0.054217 + ], + [ + 117, + 0.046819 + ], + [ + 118, + 0.050295 + ], + [ + 119, + 0.0511 + ], + [ + 120, + 0.053425 + ], + [ + 121, + 0.055014 + ], + [ + 122, + 0.051 + ], + [ + 123, + 0.053937 + ], + [ + 124, + 0.052556 + ], + [ + 125, + 0.049361 + ], + [ + 126, + 0.048723 + ], + [ + 127, + 0.048498 + ], + [ + 128, + 0.051204 + ], + [ + 129, + 0.050823 + ], + [ + 130, + 0.049703 + ], + [ + 131, + 0.050974 + ], + [ + 132, + 0.051978 + ], + [ + 133, + 0.05369 + ], + [ + 134, + 0.056087 + ], + [ + 135, + 0.061418 + ], + [ + 136, + 0.056915 + ], + [ + 137, + 0.059446 + ], + [ + 138, + 0.062042 + ], + [ + 139, + 0.070862 + ], + [ + 140, + 0.064055 + ], + [ + 141, + 0.063645 + ], + [ + 142, + 0.067584 + ], + [ + 143, + 0.065735 + ], + [ + 144, + 0.066794 + ], + [ + 145, + 0.069019 + ], + [ + 146, + 0.0707 + ], + [ + 147, + 0.070238 + ], + [ + 148, + 0.072958 + ], + [ + 149, + 0.084226 + ], + [ + 150, + 0.08396 + ], + [ + 151, + 0.075405 + ], + [ + 152, + 0.070898 + ], + [ + 153, + 0.075232 + ], + [ + 154, + 0.088536 + ], + [ + 155, + 0.074077 + ], + [ + 156, + 0.068575 + ], + [ + 157, + 0.073125 + ], + [ + 158, + 0.070896 + ], + [ + 159, + 0.072663 + ], + [ + 160, + 0.071925 + ], + [ + 161, + 0.071217 + ], + [ + 162, + 0.072753 + ], + [ + 163, + 0.074367 + ], + [ + 164, + 0.075197 + ], + [ + 165, + 0.076473 + ], + [ + 166, + 0.078231 + ], + [ + 167, + 0.08175 + ], + [ + 168, + 0.081691 + ], + [ + 169, + 0.08277 + ], + [ + 170, + 0.084046 + ], + [ + 171, + 0.085528 + ], + [ + 172, + 0.086205 + ], + [ + 173, + 0.08982 + ], + [ + 174, + 0.092321 + ], + [ + 175, + 0.092353 + ], + [ + 176, + 0.102413 + ], + [ + 177, + 0.09637 + ], + [ + 178, + 0.096678 + ], + [ + 179, + 0.099031 + ], + [ + 180, + 0.101331 + ], + [ + 181, + 0.103552 + ], + [ + 182, + 0.108597 + ], + [ + 183, + 0.106901 + ], + [ + 184, + 0.110336 + ], + [ + 185, + 0.114912 + ], + [ + 186, + 0.114605 + ], + [ + 187, + 0.117031 + ], + [ + 188, + 0.121943 + ], + [ + 189, + 0.123878 + ], + [ + 190, + 0.126325 + ], + [ + 191, + 0.129782 + ], + [ + 192, + 0.134101 + ], + [ + 193, + 0.135628 + ], + [ + 194, + 0.13849 + ], + [ + 195, + 0.142055 + ], + [ + 196, + 0.153045 + ], + [ + 197, + 0.149681 + ], + [ + 198, + 0.157424 + ], + [ + 199, + 0.160125 + ], + [ + 200, + 0.162304 + ], + [ + 201, + 0.164971 + ], + [ + 202, + 0.168839 + ], + [ + 203, + 0.173223 + ], + [ + 204, + 0.175015 + ], + [ + 205, + 0.182452 + ], + [ + 206, + 0.184316 + ], + [ + 207, + 0.189836 + ], + [ + 208, + 0.194237 + ], + [ + 209, + 0.199969 + ], + [ + 210, + 0.203043 + ], + [ + 211, + 0.208575 + ], + [ + 212, + 0.21303 + ], + [ + 213, + 0.218725 + ], + [ + 214, + 0.223632 + ], + [ + 215, + 0.230183 + ], + [ + 216, + 0.235717 + ], + [ + 217, + 0.241855 + ], + [ + 218, + 0.249266 + ], + [ + 219, + 0.253797 + ], + [ + 220, + 0.264133 + ], + [ + 221, + 0.267689 + ], + [ + 222, + 0.275036 + ], + [ + 223, + 0.282073 + ], + [ + 224, + 0.288762 + ], + [ + 225, + 0.29552 + ], + [ + 226, + 0.302516 + ], + [ + 227, + 0.310498 + ], + [ + 228, + 0.319485 + ], + [ + 229, + 0.330571 + ], + [ + 230, + 0.337961 + ], + [ + 231, + 0.344154 + ], + [ + 232, + 0.353267 + ], + [ + 233, + 0.363924 + ], + [ + 234, + 0.37036 + ], + [ + 235, + 0.379134 + ], + [ + 236, + 0.390848 + ], + [ + 237, + 0.406603 + ], + [ + 238, + 0.413716 + ], + [ + 239, + 0.427444 + ], + [ + 240, + 0.435438 + ], + [ + 241, + 0.44734 + ], + [ + 242, + 0.458723 + ], + [ + 243, + 0.469577 + ], + [ + 244, + 0.477861 + ], + [ + 245, + 0.485798 + ], + [ + 246, + 0.498547 + ], + [ + 247, + 0.511247 + ], + [ + 248, + 0.525133 + ], + [ + 249, + 0.537269 + ], + [ + 250, + 0.551265 + ], + [ + 251, + 0.565317 + ], + [ + 252, + 0.586753 + ], + [ + 253, + 0.590544 + ], + [ + 254, + 0.608089 + ], + [ + 255, + 0.618257 + ], + [ + 256, + 0.636755 + ], + [ + 257, + 0.647157 + ], + [ + 258, + 0.667637 + ], + [ + 259, + 0.683647 + ], + [ + 260, + 0.699168 + ], + [ + 261, + 0.717954 + ], + [ + 262, + 0.735968 + ], + [ + 263, + 0.751534 + ], + [ + 264, + 0.773691 + ], + [ + 265, + 0.785961 + ], + [ + 266, + 0.806782 + ], + [ + 267, + 0.845449 + ], + [ + 268, + 0.840827 + ], + [ + 269, + 0.860692 + ], + [ + 270, + 0.879386 + ], + [ + 271, + 0.903461 + ], + [ + 272, + 0.920383 + ], + [ + 273, + 0.938335 + ], + [ + 274, + 0.959175 + ], + [ + 275, + 0.977075 + ], + [ + 276, + 0.995722 + ], + [ + 277, + 1.021106 + ], + [ + 278, + 1.035307 + ], + [ + 279, + 1.057283 + ], + [ + 280, + 1.079909 + ], + [ + 281, + 1.105791 + ], + [ + 282, + 1.125425 + ], + [ + 283, + 1.159699 + ], + [ + 284, + 1.173623 + ], + [ + 285, + 1.189829 + ], + [ + 286, + 1.213089 + ], + [ + 287, + 1.235459 + ], + [ + 288, + 1.264778 + ], + [ + 289, + 1.289746 + ], + [ + 290, + 1.313375 + ], + [ + 291, + 1.344976 + ], + [ + 292, + 1.373694 + ], + [ + 293, + 1.397133 + ], + [ + 294, + 1.41889 + ], + [ + 295, + 1.440694 + ], + [ + 296, + 1.470338 + ], + [ + 297, + 1.491018 + ], + [ + 298, + 1.524486 + ], + [ + 299, + 1.545989 + ], + [ + 300, + 1.57048 + ], + [ + 301, + 1.604525 + ], + [ + 302, + 1.630562 + ], + [ + 303, + 1.657752 + ], + [ + 304, + 1.6819 + ], + [ + 305, + 1.707638 + ], + [ + 306, + 1.733856 + ], + [ + 307, + 1.759946 + ], + [ + 308, + 1.783925 + ], + [ + 309, + 1.813355 + ], + [ + 310, + 1.841408 + ], + [ + 311, + 1.872526 + ], + [ + 312, + 1.900889 + ], + [ + 313, + 1.92968 + ], + [ + 314, + 1.956489 + ], + [ + 315, + 1.977273 + ], + [ + 316, + 1.998574 + ], + [ + 317, + 2.026042 + ], + [ + 318, + 2.045046 + ], + [ + 319, + 2.073348 + ], + [ + 320, + 2.101399 + ], + [ + 321, + 2.126702 + ], + [ + 322, + 2.158247 + ], + [ + 323, + 2.179485 + ], + [ + 324, + 2.212964 + ], + [ + 325, + 2.229097 + ], + [ + 326, + 2.24888 + ], + [ + 327, + 2.26745 + ], + [ + 328, + 2.287982 + ], + [ + 329, + 2.30648 + ], + [ + 330, + 2.328601 + ], + [ + 331, + 2.355608 + ], + [ + 332, + 2.379421 + ], + [ + 333, + 2.401911 + ], + [ + 334, + 2.425546 + ], + [ + 335, + 2.44399 + ], + [ + 336, + 2.459789 + ], + [ + 337, + 2.470442 + ], + [ + 338, + 2.485869 + ], + [ + 339, + 2.497171 + ], + [ + 340, + 2.519173 + ], + [ + 341, + 2.534202 + ], + [ + 342, + 2.552325 + ], + [ + 343, + 2.570688 + ], + [ + 344, + 2.586029 + ], + [ + 345, + 2.603093 + ], + [ + 346, + 2.616419 + ], + [ + 347, + 2.624902 + ], + [ + 348, + 2.62731 + ], + [ + 349, + 2.635831 + ], + [ + 350, + 2.645621 + ], + [ + 351, + 2.651649 + ], + [ + 352, + 2.674397 + ], + [ + 353, + 2.675382 + ], + [ + 354, + 2.682531 + ], + [ + 355, + 2.693288 + ], + [ + 356, + 2.702933 + ], + [ + 357, + 2.696062 + ], + [ + 358, + 2.698028 + ], + [ + 359, + 2.695184 + ], + [ + 360, + 2.695636 + ], + [ + 361, + 2.698117 + ], + [ + 362, + 2.703588 + ], + [ + 363, + 2.703953 + ], + [ + 364, + 2.707757 + ], + [ + 365, + 2.703999 + ], + [ + 366, + 2.708622 + ], + [ + 367, + 2.703325 + ], + [ + 368, + 2.700843 + ], + [ + 369, + 2.68854 + ], + [ + 370, + 2.677696 + ], + [ + 371, + 2.667056 + ], + [ + 372, + 2.659514 + ], + [ + 373, + 2.68471 + ], + [ + 374, + 2.655309 + ], + [ + 375, + 2.654925 + ], + [ + 376, + 2.648952 + ], + [ + 377, + 2.636256 + ], + [ + 378, + 2.621704 + ], + [ + 379, + 2.605782 + ], + [ + 380, + 2.59191 + ], + [ + 381, + 2.575134 + ], + [ + 382, + 2.569313 + ], + [ + 383, + 2.558068 + ], + [ + 384, + 2.548641 + ], + [ + 385, + 2.539204 + ], + [ + 386, + 2.525288 + ], + [ + 387, + 2.514678 + ], + [ + 388, + 2.499123 + ], + [ + 389, + 2.478014 + ], + [ + 390, + 2.458485 + ], + [ + 391, + 2.439341 + ], + [ + 392, + 2.423244 + ], + [ + 393, + 2.407281 + ], + [ + 394, + 2.406679 + ], + [ + 395, + 2.37382 + ], + [ + 396, + 2.364497 + ], + [ + 397, + 2.348255 + ], + [ + 398, + 2.326666 + ], + [ + 399, + 2.306296 + ], + [ + 400, + 2.283504 + ], + [ + 401, + 2.259744 + ], + [ + 402, + 2.246251 + ], + [ + 403, + 2.215594 + ], + [ + 404, + 2.205287 + ], + [ + 405, + 2.187554 + ], + [ + 406, + 2.165056 + ], + [ + 407, + 2.152368 + ], + [ + 408, + 2.128617 + ], + [ + 409, + 2.112988 + ], + [ + 410, + 2.085166 + ], + [ + 411, + 2.058922 + ], + [ + 412, + 2.039981 + ], + [ + 413, + 2.010789 + ], + [ + 414, + 1.991769 + ], + [ + 415, + 1.97379 + ], + [ + 416, + 1.95423 + ], + [ + 417, + 1.937023 + ], + [ + 418, + 1.917546 + ], + [ + 419, + 1.897956 + ], + [ + 420, + 1.872661 + ], + [ + 421, + 1.847752 + ], + [ + 422, + 1.823351 + ], + [ + 423, + 1.802235 + ], + [ + 424, + 1.776962 + ], + [ + 425, + 1.753126 + ], + [ + 426, + 1.734474 + ], + [ + 427, + 1.716473 + ], + [ + 428, + 1.695806 + ], + [ + 429, + 1.675947 + ], + [ + 430, + 1.654416 + ], + [ + 431, + 1.632256 + ], + [ + 432, + 1.608714 + ], + [ + 433, + 1.585523 + ], + [ + 434, + 1.562545 + ], + [ + 435, + 1.549602 + ], + [ + 436, + 1.524862 + ], + [ + 437, + 1.525601 + ], + [ + 438, + 1.488091 + ], + [ + 439, + 1.467741 + ], + [ + 440, + 1.456284 + ], + [ + 441, + 1.424463 + ], + [ + 442, + 1.402737 + ], + [ + 443, + 1.376315 + ], + [ + 444, + 1.360677 + ], + [ + 445, + 1.34814 + ], + [ + 446, + 1.316877 + ], + [ + 447, + 1.301463 + ], + [ + 448, + 1.280831 + ], + [ + 449, + 1.260512 + ], + [ + 450, + 1.246895 + ], + [ + 451, + 1.22362 + ], + [ + 452, + 1.205107 + ], + [ + 453, + 1.1797 + ], + [ + 454, + 1.159121 + ], + [ + 455, + 1.138699 + ], + [ + 456, + 1.122059 + ], + [ + 457, + 1.101602 + ], + [ + 458, + 1.087718 + ], + [ + 459, + 1.068213 + ], + [ + 460, + 1.051995 + ], + [ + 461, + 1.037525 + ], + [ + 462, + 1.016584 + ], + [ + 463, + 0.998181 + ], + [ + 464, + 0.97884 + ], + [ + 465, + 0.963812 + ], + [ + 466, + 0.948949 + ], + [ + 467, + 0.933317 + ], + [ + 468, + 0.917093 + ], + [ + 469, + 0.901806 + ], + [ + 470, + 0.884723 + ], + [ + 471, + 0.86972 + ], + [ + 472, + 0.853566 + ], + [ + 473, + 0.83853 + ], + [ + 474, + 0.819439 + ], + [ + 475, + 0.807189 + ], + [ + 476, + 0.806661 + ], + [ + 477, + 0.77584 + ], + [ + 478, + 0.768017 + ], + [ + 479, + 0.75039 + ], + [ + 480, + 0.734205 + ], + [ + 481, + 0.721931 + ], + [ + 482, + 0.706833 + ], + [ + 483, + 0.694745 + ], + [ + 484, + 0.679043 + ], + [ + 485, + 0.673132 + ], + [ + 486, + 0.651763 + ], + [ + 487, + 0.640614 + ], + [ + 488, + 0.628492 + ], + [ + 489, + 0.614292 + ], + [ + 490, + 0.603028 + ], + [ + 491, + 0.593275 + ], + [ + 492, + 0.580522 + ], + [ + 493, + 0.570517 + ], + [ + 494, + 0.558334 + ], + [ + 495, + 0.544362 + ], + [ + 496, + 0.536492 + ], + [ + 497, + 0.521138 + ], + [ + 498, + 0.511211 + ], + [ + 499, + 0.502159 + ], + [ + 500, + 0.492936 + ], + [ + 501, + 0.482624 + ], + [ + 502, + 0.471148 + ], + [ + 503, + 0.461561 + ], + [ + 504, + 0.450891 + ], + [ + 505, + 0.440579 + ], + [ + 506, + 0.430043 + ], + [ + 507, + 0.419408 + ], + [ + 508, + 0.41116 + ], + [ + 509, + 0.403001 + ], + [ + 510, + 0.394333 + ], + [ + 511, + 0.385483 + ], + [ + 512, + 0.379752 + ], + [ + 513, + 0.37021 + ], + [ + 514, + 0.361473 + ], + [ + 515, + 0.35405 + ], + [ + 516, + 0.343778 + ], + [ + 517, + 0.336895 + ], + [ + 518, + 0.327854 + ], + [ + 519, + 0.321902 + ], + [ + 520, + 0.314475 + ], + [ + 521, + 0.308794 + ], + [ + 522, + 0.302299 + ], + [ + 523, + 0.294682 + ], + [ + 524, + 0.289458 + ], + [ + 525, + 0.282153 + ], + [ + 526, + 0.277072 + ], + [ + 527, + 0.269118 + ], + [ + 528, + 0.263935 + ], + [ + 529, + 0.257483 + ], + [ + 530, + 0.251177 + ], + [ + 531, + 0.244081 + ], + [ + 532, + 0.239167 + ], + [ + 533, + 0.235148 + ], + [ + 534, + 0.228609 + ], + [ + 535, + 0.224701 + ], + [ + 536, + 0.218058 + ], + [ + 537, + 0.21181 + ], + [ + 538, + 0.207562 + ], + [ + 539, + 0.2025 + ], + [ + 540, + 0.197118 + ], + [ + 541, + 0.191836 + ], + [ + 542, + 0.187983 + ], + [ + 543, + 0.182502 + ], + [ + 544, + 0.179001 + ], + [ + 545, + 0.174754 + ], + [ + 546, + 0.169937 + ], + [ + 547, + 0.166995 + ], + [ + 548, + 0.161319 + ], + [ + 549, + 0.157251 + ], + [ + 550, + 0.153404 + ], + [ + 551, + 0.150377 + ], + [ + 552, + 0.146004 + ], + [ + 553, + 0.142817 + ], + [ + 554, + 0.139934 + ], + [ + 555, + 0.138168 + ], + [ + 556, + 0.132576 + ], + [ + 557, + 0.128949 + ], + [ + 558, + 0.125439 + ], + [ + 559, + 0.123263 + ], + [ + 560, + 0.120024 + ], + [ + 561, + 0.116727 + ], + [ + 562, + 0.114323 + ], + [ + 563, + 0.111508 + ], + [ + 564, + 0.109313 + ], + [ + 565, + 0.106077 + ], + [ + 566, + 0.103043 + ], + [ + 567, + 0.100889 + ], + [ + 568, + 0.097527 + ], + [ + 569, + 0.095468 + ], + [ + 570, + 0.093728 + ], + [ + 571, + 0.089803 + ], + [ + 572, + 0.088138 + ], + [ + 573, + 0.086034 + ], + [ + 574, + 0.08461 + ], + [ + 575, + 0.089393 + ], + [ + 576, + 0.079946 + ], + [ + 577, + 0.077572 + ], + [ + 578, + 0.07499 + ], + [ + 579, + 0.073096 + ], + [ + 580, + 0.071565 + ], + [ + 581, + 0.069759 + ], + [ + 582, + 0.067897 + ], + [ + 583, + 0.066178 + ], + [ + 584, + 0.064211 + ], + [ + 585, + 0.063478 + ], + [ + 586, + 0.061692 + ], + [ + 587, + 0.059472 + ], + [ + 588, + 0.058947 + ], + [ + 589, + 0.056952 + ], + [ + 590, + 0.05684 + ], + [ + 591, + 0.053978 + ], + [ + 592, + 0.052898 + ], + [ + 593, + 0.052269 + ], + [ + 594, + 0.050229 + ], + [ + 595, + 0.049214 + ], + [ + 596, + 0.048371 + ], + [ + 597, + 0.04697 + ], + [ + 598, + 0.046107 + ], + [ + 599, + 0.044642 + ], + [ + 600, + 0.043673 + ], + [ + 601, + 0.043212 + ], + [ + 602, + 0.041912 + ], + [ + 603, + 0.041592 + ], + [ + 604, + 0.040359 + ], + [ + 605, + 0.03863 + ], + [ + 606, + 0.037995 + ], + [ + 607, + 0.036799 + ], + [ + 608, + 0.035829 + ], + [ + 609, + 0.036517 + ], + [ + 610, + 0.033699 + ], + [ + 611, + 0.033815 + ], + [ + 612, + 0.032211 + ], + [ + 613, + 0.031307 + ], + [ + 614, + 0.030762 + ], + [ + 615, + 0.030044 + ], + [ + 616, + 0.029309 + ], + [ + 617, + 0.028593 + ], + [ + 618, + 0.028128 + ], + [ + 619, + 0.027628 + ], + [ + 620, + 0.026696 + ], + [ + 621, + 0.026564 + ], + [ + 622, + 0.026117 + ], + [ + 623, + 0.025234 + ], + [ + 624, + 0.024312 + ], + [ + 625, + 0.024072 + ], + [ + 626, + 0.023628 + ], + [ + 627, + 0.022906 + ], + [ + 628, + 0.022248 + ], + [ + 629, + 0.02192 + ], + [ + 630, + 0.021596 + ], + [ + 631, + 0.020769 + ], + [ + 632, + 0.020356 + ], + [ + 633, + 0.020332 + ], + [ + 634, + 0.019259 + ], + [ + 635, + 0.018864 + ], + [ + 636, + 0.018712 + ], + [ + 637, + 0.017822 + ], + [ + 638, + 0.017587 + ], + [ + 639, + 0.017338 + ], + [ + 640, + 0.016952 + ], + [ + 641, + 0.016426 + ], + [ + 642, + 0.015905 + ], + [ + 643, + 0.01573 + ], + [ + 644, + 0.015632 + ], + [ + 645, + 0.015382 + ], + [ + 646, + 0.015199 + ], + [ + 647, + 0.014683 + ], + [ + 648, + 0.014389 + ], + [ + 649, + 0.014395 + ], + [ + 650, + 0.013709 + ], + [ + 651, + 0.013436 + ], + [ + 652, + 0.013732 + ], + [ + 653, + 0.013328 + ], + [ + 654, + 0.013628 + ], + [ + 655, + 0.013024 + ], + [ + 656, + 0.012591 + ], + [ + 657, + 0.012184 + ], + [ + 658, + 0.011866 + ], + [ + 659, + 0.011555 + ], + [ + 660, + 0.011466 + ], + [ + 661, + 0.012134 + ], + [ + 662, + 0.011192 + ], + [ + 663, + 0.011574 + ], + [ + 664, + 0.010714 + ], + [ + 665, + 0.011772 + ], + [ + 666, + 0.01054 + ], + [ + 667, + 0.010759 + ], + [ + 668, + 0.010387 + ], + [ + 669, + 0.010839 + ], + [ + 670, + 0.009964 + ], + [ + 671, + 0.009295 + ], + [ + 672, + 0.009359 + ], + [ + 673, + 0.009464 + ], + [ + 674, + 0.008788 + ], + [ + 675, + 0.008688 + ], + [ + 676, + 0.008444 + ], + [ + 677, + 0.008425 + ], + [ + 678, + 0.0082 + ], + [ + 679, + 0.008511 + ], + [ + 680, + 0.008059 + ], + [ + 681, + 0.007868 + ], + [ + 682, + 0.007575 + ], + [ + 683, + 0.007583 + ], + [ + 684, + 0.007417 + ], + [ + 685, + 0.007283 + ], + [ + 686, + 0.00735 + ], + [ + 687, + 0.007498 + ], + [ + 688, + 0.007415 + ], + [ + 689, + 0.007374 + ], + [ + 690, + 0.007183 + ], + [ + 691, + 0.006948 + ], + [ + 692, + 0.006638 + ], + [ + 693, + 0.006854 + ], + [ + 694, + 0.006584 + ], + [ + 695, + 0.005503 + ], + [ + 696, + 0.0051 + ], + [ + 697, + 0.004255 + ], + [ + 698, + 0.004024 + ], + [ + 699, + 0.003661 + ], + [ + 700, + 0.003481 + ], + [ + 701, + 0.003406 + ], + [ + 702, + 0.003168 + ], + [ + 703, + 0.003128 + ], + [ + 704, + 0.003006 + ], + [ + 705, + 0.003175 + ], + [ + 706, + 0.002907 + ], + [ + 707, + 0.002896 + ], + [ + 708, + 0.002827 + ], + [ + 709, + 0.002753 + ], + [ + 710, + 0.002669 + ], + [ + 711, + 0.002663 + ], + [ + 712, + 0.002578 + ], + [ + 713, + 0.002452 + ], + [ + 714, + 0.002466 + ], + [ + 715, + 0.002463 + ], + [ + 716, + 0.002286 + ], + [ + 717, + 0.002321 + ], + [ + 718, + 0.002297 + ], + [ + 719, + 0.002258 + ], + [ + 720, + 0.002249 + ], + [ + 721, + 0.002211 + ], + [ + 722, + 0.002064 + ], + [ + 723, + 0.002069 + ], + [ + 724, + 0.002038 + ], + [ + 725, + 0.001902 + ], + [ + 726, + 0.001946 + ], + [ + 727, + 0.001966 + ], + [ + 728, + 0.001794 + ], + [ + 729, + 0.001882 + ], + [ + 730, + 0.001759 + ], + [ + 731, + 0.001684 + ], + [ + 732, + 0.00171 + ], + [ + 733, + 0.001689 + ], + [ + 734, + 0.001647 + ], + [ + 735, + 0.001637 + ], + [ + 736, + 0.001611 + ], + [ + 737, + 0.00154 + ], + [ + 738, + 0.001591 + ], + [ + 739, + 0.001506 + ], + [ + 740, + 0.001493 + ], + [ + 741, + 0.001512 + ], + [ + 742, + 0.00154 + ], + [ + 743, + 0.001418 + ], + [ + 744, + 0.001424 + ], + [ + 745, + 0.00141 + ], + [ + 746, + 0.00141 + ], + [ + 747, + 0.001356 + ], + [ + 748, + 0.001299 + ], + [ + 749, + 0.001381 + ], + [ + 750, + 0.001215 + ], + [ + 751, + 0.001272 + ], + [ + 752, + 0.001326 + ], + [ + 753, + 0.001227 + ], + [ + 754, + 0.001233 + ], + [ + 755, + 0.00129 + ], + [ + 756, + 0.001283 + ], + [ + 757, + 0.001328 + ], + [ + 758, + 0.001193 + ], + [ + 759, + 0.001045 + ], + [ + 760, + 0.001144 + ], + [ + 761, + 0.001006 + ], + [ + 762, + 0.001057 + ], + [ + 763, + 0.00105 + ], + [ + 764, + 0.001113 + ], + [ + 765, + 0.001008 + ], + [ + 766, + 0.000921 + ], + [ + 767, + 0.000938 + ], + [ + 768, + 0.000938 + ], + [ + 769, + 0.00094 + ], + [ + 770, + 0.000949 + ], + [ + 771, + 0.000924 + ], + [ + 772, + 0.000854 + ], + [ + 773, + 0.000866 + ], + [ + 774, + 0.000894 + ], + [ + 775, + 0.000875 + ], + [ + 776, + 0.000816 + ], + [ + 777, + 0.001033 + ], + [ + 778, + 0.000854 + ], + [ + 779, + 0.000811 + ], + [ + 780, + 0.000818 + ], + [ + 781, + 0.000808 + ], + [ + 782, + 0.000788 + ], + [ + 783, + 0.000811 + ], + [ + 784, + 0.000725 + ], + [ + 785, + 0.000755 + ], + [ + 786, + 0.000842 + ], + [ + 787, + 0.00069 + ], + [ + 788, + 0.000937 + ], + [ + 789, + 0.000693 + ], + [ + 790, + 0.000761 + ], + [ + 791, + 0.000689 + ], + [ + 792, + 0.000644 + ], + [ + 793, + 0.000674 + ], + [ + 794, + 0.000704 + ], + [ + 795, + 0.000713 + ], + [ + 796, + 0.000692 + ], + [ + 797, + 0.000668 + ], + [ + 798, + 0.000693 + ], + [ + 799, + 0.000668 + ], + [ + 800, + 0.000661 + ], + [ + 801, + 0.00062 + ], + [ + 802, + 0.000618 + ], + [ + 803, + 0.000565 + ], + [ + 804, + 0.000568 + ], + [ + 805, + 0.000542 + ], + [ + 806, + 0.000556 + ], + [ + 807, + 0.000561 + ], + [ + 808, + 0.000566 + ], + [ + 809, + 0.000548 + ], + [ + 810, + 0.000625 + ], + [ + 811, + 0.000598 + ], + [ + 812, + 0.000522 + ], + [ + 813, + 0.000586 + ], + [ + 814, + 0.000634 + ], + [ + 815, + 0.000483 + ], + [ + 816, + 0.00052 + ], + [ + 817, + 0.000529 + ], + [ + 818, + 0.000527 + ], + [ + 819, + 0.000494 + ], + [ + 820, + 0.000563 + ], + [ + 821, + 0.000555 + ], + [ + 822, + 0.000573 + ], + [ + 823, + 0.000556 + ], + [ + 824, + 0.000561 + ], + [ + 825, + 0.000513 + ], + [ + 826, + 0.000562 + ], + [ + 827, + 0.000524 + ], + [ + 828, + 0.000467 + ], + [ + 829, + 0.000513 + ], + [ + 830, + 0.000549 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 1, + 0.005244 + ], + [ + 2, + 0.006832 + ], + [ + 3, + 0.006818 + ], + [ + 4, + 0.007073 + ], + [ + 5, + 0.007377 + ], + [ + 6, + 0.006958 + ], + [ + 7, + 0.006922 + ], + [ + 8, + 0.006982 + ], + [ + 9, + 0.006777 + ], + [ + 10, + 0.006771 + ], + [ + 11, + 0.006813 + ], + [ + 12, + 0.006902 + ], + [ + 13, + 0.006616 + ], + [ + 14, + 0.006588 + ], + [ + 15, + 0.006819 + ], + [ + 16, + 0.00664 + ], + [ + 17, + 0.006653 + ], + [ + 18, + 0.006491 + ], + [ + 19, + 0.006262 + ], + [ + 20, + 0.006297 + ], + [ + 21, + 0.006222 + ], + [ + 22, + 0.00607 + ], + [ + 23, + 0.0059 + ], + [ + 24, + 0.006006 + ], + [ + 25, + 0.006007 + ], + [ + 26, + 0.005934 + ], + [ + 27, + 0.006221 + ], + [ + 28, + 0.006533 + ], + [ + 29, + 0.006146 + ], + [ + 30, + 0.006529 + ], + [ + 31, + 0.006988 + ], + [ + 32, + 0.006934 + ], + [ + 33, + 0.006935 + ], + [ + 34, + 0.007118 + ], + [ + 35, + 0.007495 + ], + [ + 36, + 0.007877 + ], + [ + 37, + 0.008345 + ], + [ + 38, + 0.009661 + ], + [ + 39, + 0.011996 + ], + [ + 40, + 0.013941 + ], + [ + 41, + 0.015435 + ], + [ + 42, + 0.017996 + ], + [ + 43, + 0.019426 + ], + [ + 44, + 0.019546 + ], + [ + 45, + 0.019242 + ], + [ + 46, + 0.020623 + ], + [ + 47, + 0.020961 + ], + [ + 48, + 0.020437 + ], + [ + 49, + 0.021229 + ], + [ + 50, + 0.021137 + ], + [ + 51, + 0.022792 + ], + [ + 52, + 0.021863 + ], + [ + 53, + 0.022417 + ], + [ + 54, + 0.024359 + ], + [ + 55, + 0.023173 + ], + [ + 56, + 0.025351 + ], + [ + 57, + 0.025396 + ], + [ + 58, + 0.02745 + ], + [ + 59, + 0.028374 + ], + [ + 60, + 0.028086 + ], + [ + 61, + 0.02918 + ], + [ + 62, + 0.028113 + ], + [ + 63, + 0.029566 + ], + [ + 64, + 0.030037 + ], + [ + 65, + 0.033358 + ], + [ + 66, + 0.035401 + ], + [ + 67, + 0.030297 + ], + [ + 68, + 0.030245 + ], + [ + 69, + 0.033204 + ], + [ + 70, + 0.039696 + ], + [ + 71, + 0.029429 + ], + [ + 72, + 0.028381 + ], + [ + 73, + 0.02978 + ], + [ + 74, + 0.032226 + ], + [ + 75, + 0.029042 + ], + [ + 76, + 0.029097 + ], + [ + 77, + 0.031522 + ], + [ + 78, + 0.030721 + ], + [ + 79, + 0.030841 + ], + [ + 80, + 0.031016 + ], + [ + 81, + 0.042124 + ], + [ + 82, + 0.034024 + ], + [ + 83, + 0.032178 + ], + [ + 84, + 0.033709 + ], + [ + 85, + 0.033512 + ], + [ + 86, + 0.034197 + ], + [ + 87, + 0.031299 + ], + [ + 88, + 0.038032 + ], + [ + 89, + 0.03435 + ], + [ + 90, + 0.033466 + ], + [ + 91, + 0.033837 + ], + [ + 92, + 0.034418 + ], + [ + 93, + 0.034519 + ], + [ + 94, + 0.035635 + ], + [ + 95, + 0.037047 + ], + [ + 96, + 0.037114 + ], + [ + 97, + 0.041058 + ], + [ + 98, + 0.038105 + ], + [ + 99, + 0.043051 + ], + [ + 100, + 0.040275 + ], + [ + 101, + 0.038564 + ], + [ + 102, + 0.039991 + ], + [ + 103, + 0.050116 + ], + [ + 104, + 0.046907 + ], + [ + 105, + 0.047435 + ], + [ + 106, + 0.058671 + ], + [ + 107, + 0.046546 + ], + [ + 108, + 0.047526 + ], + [ + 109, + 0.047802 + ], + [ + 110, + 0.058807 + ], + [ + 111, + 0.043874 + ], + [ + 112, + 0.04453 + ], + [ + 113, + 0.044465 + ], + [ + 114, + 0.046855 + ], + [ + 115, + 0.044151 + ], + [ + 116, + 0.046445 + ], + [ + 117, + 0.040092 + ], + [ + 118, + 0.04244 + ], + [ + 119, + 0.043383 + ], + [ + 120, + 0.045992 + ], + [ + 121, + 0.047185 + ], + [ + 122, + 0.043582 + ], + [ + 123, + 0.045606 + ], + [ + 124, + 0.044715 + ], + [ + 125, + 0.041751 + ], + [ + 126, + 0.042573 + ], + [ + 127, + 0.042038 + ], + [ + 128, + 0.044264 + ], + [ + 129, + 0.044933 + ], + [ + 130, + 0.044909 + ], + [ + 131, + 0.046568 + ], + [ + 132, + 0.048228 + ], + [ + 133, + 0.049897 + ], + [ + 134, + 0.050976 + ], + [ + 135, + 0.058023 + ], + [ + 136, + 0.050867 + ], + [ + 137, + 0.053033 + ], + [ + 138, + 0.056003 + ], + [ + 139, + 0.063491 + ], + [ + 140, + 0.057895 + ], + [ + 141, + 0.056889 + ], + [ + 142, + 0.060943 + ], + [ + 143, + 0.0602 + ], + [ + 144, + 0.060151 + ], + [ + 145, + 0.06285 + ], + [ + 146, + 0.064487 + ], + [ + 147, + 0.064796 + ], + [ + 148, + 0.067014 + ], + [ + 149, + 0.077252 + ], + [ + 150, + 0.076786 + ], + [ + 151, + 0.07029 + ], + [ + 152, + 0.065837 + ], + [ + 153, + 0.070998 + ], + [ + 154, + 0.081947 + ], + [ + 155, + 0.070919 + ], + [ + 156, + 0.065186 + ], + [ + 157, + 0.070048 + ], + [ + 158, + 0.068013 + ], + [ + 159, + 0.071608 + ], + [ + 160, + 0.071396 + ], + [ + 161, + 0.070989 + ], + [ + 162, + 0.072663 + ], + [ + 163, + 0.074877 + ], + [ + 164, + 0.074788 + ], + [ + 165, + 0.075882 + ], + [ + 166, + 0.077005 + ], + [ + 167, + 0.081107 + ], + [ + 168, + 0.080602 + ], + [ + 169, + 0.082246 + ], + [ + 170, + 0.083339 + ], + [ + 171, + 0.086148 + ], + [ + 172, + 0.08679 + ], + [ + 173, + 0.089604 + ], + [ + 174, + 0.092814 + ], + [ + 175, + 0.093658 + ], + [ + 176, + 0.101583 + ], + [ + 177, + 0.097509 + ], + [ + 178, + 0.09874 + ], + [ + 179, + 0.101489 + ], + [ + 180, + 0.103674 + ], + [ + 181, + 0.105965 + ], + [ + 182, + 0.110096 + ], + [ + 183, + 0.109829 + ], + [ + 184, + 0.112283 + ], + [ + 185, + 0.11731 + ], + [ + 186, + 0.118794 + ], + [ + 187, + 0.120822 + ], + [ + 188, + 0.12552 + ], + [ + 189, + 0.127938 + ], + [ + 190, + 0.130861 + ], + [ + 191, + 0.134021 + ], + [ + 192, + 0.138222 + ], + [ + 193, + 0.142254 + ], + [ + 194, + 0.145776 + ], + [ + 195, + 0.151048 + ], + [ + 196, + 0.160498 + ], + [ + 197, + 0.158447 + ], + [ + 198, + 0.164576 + ], + [ + 199, + 0.167155 + ], + [ + 200, + 0.169152 + ], + [ + 201, + 0.173622 + ], + [ + 202, + 0.177163 + ], + [ + 203, + 0.180671 + ], + [ + 204, + 0.183691 + ], + [ + 205, + 0.190701 + ], + [ + 206, + 0.194885 + ], + [ + 207, + 0.197657 + ], + [ + 208, + 0.204713 + ], + [ + 209, + 0.210092 + ], + [ + 210, + 0.214094 + ], + [ + 211, + 0.218059 + ], + [ + 212, + 0.223571 + ], + [ + 213, + 0.229502 + ], + [ + 214, + 0.235982 + ], + [ + 215, + 0.241449 + ], + [ + 216, + 0.248019 + ], + [ + 217, + 0.254648 + ], + [ + 218, + 0.261731 + ], + [ + 219, + 0.268644 + ], + [ + 220, + 0.279203 + ], + [ + 221, + 0.282337 + ], + [ + 222, + 0.288597 + ], + [ + 223, + 0.296639 + ], + [ + 224, + 0.304742 + ], + [ + 225, + 0.310623 + ], + [ + 226, + 0.318446 + ], + [ + 227, + 0.329157 + ], + [ + 228, + 0.337051 + ], + [ + 229, + 0.348386 + ], + [ + 230, + 0.355144 + ], + [ + 231, + 0.364166 + ], + [ + 232, + 0.374471 + ], + [ + 233, + 0.385749 + ], + [ + 234, + 0.393679 + ], + [ + 235, + 0.403557 + ], + [ + 236, + 0.416093 + ], + [ + 237, + 0.429295 + ], + [ + 238, + 0.43844 + ], + [ + 239, + 0.449105 + ], + [ + 240, + 0.459765 + ], + [ + 241, + 0.47146 + ], + [ + 242, + 0.483522 + ], + [ + 243, + 0.496221 + ], + [ + 244, + 0.505362 + ], + [ + 245, + 0.51293 + ], + [ + 246, + 0.525378 + ], + [ + 247, + 0.539237 + ], + [ + 248, + 0.553211 + ], + [ + 249, + 0.566403 + ], + [ + 250, + 0.581544 + ], + [ + 251, + 0.595641 + ], + [ + 252, + 0.615593 + ], + [ + 253, + 0.625247 + ], + [ + 254, + 0.637797 + ], + [ + 255, + 0.652471 + ], + [ + 256, + 0.667352 + ], + [ + 257, + 0.683102 + ], + [ + 258, + 0.700912 + ], + [ + 259, + 0.722296 + ], + [ + 260, + 0.735424 + ], + [ + 261, + 0.75545 + ], + [ + 262, + 0.769507 + ], + [ + 263, + 0.788323 + ], + [ + 264, + 0.809929 + ], + [ + 265, + 0.824711 + ], + [ + 266, + 0.845242 + ], + [ + 267, + 0.883192 + ], + [ + 268, + 0.880693 + ], + [ + 269, + 0.899261 + ], + [ + 270, + 0.924724 + ], + [ + 271, + 0.945794 + ], + [ + 272, + 0.962843 + ], + [ + 273, + 0.980673 + ], + [ + 274, + 1.003885 + ], + [ + 275, + 1.021941 + ], + [ + 276, + 1.041028 + ], + [ + 277, + 1.065988 + ], + [ + 278, + 1.080033 + ], + [ + 279, + 1.103688 + ], + [ + 280, + 1.126241 + ], + [ + 281, + 1.154288 + ], + [ + 282, + 1.177384 + ], + [ + 283, + 1.209948 + ], + [ + 284, + 1.222205 + ], + [ + 285, + 1.24398 + ], + [ + 286, + 1.266429 + ], + [ + 287, + 1.287096 + ], + [ + 288, + 1.315995 + ], + [ + 289, + 1.337958 + ], + [ + 290, + 1.362774 + ], + [ + 291, + 1.392735 + ], + [ + 292, + 1.419806 + ], + [ + 293, + 1.442991 + ], + [ + 294, + 1.468099 + ], + [ + 295, + 1.489785 + ], + [ + 296, + 1.516925 + ], + [ + 297, + 1.536599 + ], + [ + 298, + 1.567251 + ], + [ + 299, + 1.585135 + ], + [ + 300, + 1.615586 + ], + [ + 301, + 1.646548 + ], + [ + 302, + 1.67222 + ], + [ + 303, + 1.697767 + ], + [ + 304, + 1.726449 + ], + [ + 305, + 1.745338 + ], + [ + 306, + 1.764842 + ], + [ + 307, + 1.789295 + ], + [ + 308, + 1.815738 + ], + [ + 309, + 1.842321 + ], + [ + 310, + 1.868892 + ], + [ + 311, + 1.897129 + ], + [ + 312, + 1.9214 + ], + [ + 313, + 1.947265 + ], + [ + 314, + 1.973024 + ], + [ + 315, + 1.996494 + ], + [ + 316, + 2.016725 + ], + [ + 317, + 2.038717 + ], + [ + 318, + 2.055464 + ], + [ + 319, + 2.081043 + ], + [ + 320, + 2.10421 + ], + [ + 321, + 2.125008 + ], + [ + 322, + 2.152136 + ], + [ + 323, + 2.175314 + ], + [ + 324, + 2.20673 + ], + [ + 325, + 2.21612 + ], + [ + 326, + 2.23253 + ], + [ + 327, + 2.245154 + ], + [ + 328, + 2.265145 + ], + [ + 329, + 2.276648 + ], + [ + 330, + 2.29279 + ], + [ + 331, + 2.319053 + ], + [ + 332, + 2.33616 + ], + [ + 333, + 2.356895 + ], + [ + 334, + 2.374463 + ], + [ + 335, + 2.39242 + ], + [ + 336, + 2.400315 + ], + [ + 337, + 2.410393 + ], + [ + 338, + 2.417604 + ], + [ + 339, + 2.428007 + ], + [ + 340, + 2.439024 + ], + [ + 341, + 2.453291 + ], + [ + 342, + 2.46436 + ], + [ + 343, + 2.479624 + ], + [ + 344, + 2.493441 + ], + [ + 345, + 2.502512 + ], + [ + 346, + 2.511307 + ], + [ + 347, + 2.512039 + ], + [ + 348, + 2.512391 + ], + [ + 349, + 2.515416 + ], + [ + 350, + 2.517387 + ], + [ + 351, + 2.523977 + ], + [ + 352, + 2.533075 + ], + [ + 353, + 2.538163 + ], + [ + 354, + 2.542027 + ], + [ + 355, + 2.54803 + ], + [ + 356, + 2.549181 + ], + [ + 357, + 2.542246 + ], + [ + 358, + 2.541287 + ], + [ + 359, + 2.530799 + ], + [ + 360, + 2.526262 + ], + [ + 361, + 2.525654 + ], + [ + 362, + 2.5246 + ], + [ + 363, + 2.523117 + ], + [ + 364, + 2.52405 + ], + [ + 365, + 2.518747 + ], + [ + 366, + 2.510737 + ], + [ + 367, + 2.506617 + ], + [ + 368, + 2.495186 + ], + [ + 369, + 2.488416 + ], + [ + 370, + 2.470598 + ], + [ + 371, + 2.457351 + ], + [ + 372, + 2.44993 + ], + [ + 373, + 2.463821 + ], + [ + 374, + 2.437598 + ], + [ + 375, + 2.429603 + ], + [ + 376, + 2.419921 + ], + [ + 377, + 2.407859 + ], + [ + 378, + 2.393037 + ], + [ + 379, + 2.376315 + ], + [ + 380, + 2.357522 + ], + [ + 381, + 2.339353 + ], + [ + 382, + 2.327615 + ], + [ + 383, + 2.317982 + ], + [ + 384, + 2.308297 + ], + [ + 385, + 2.297598 + ], + [ + 386, + 2.285272 + ], + [ + 387, + 2.267633 + ], + [ + 388, + 2.252134 + ], + [ + 389, + 2.232121 + ], + [ + 390, + 2.2113 + ], + [ + 391, + 2.190955 + ], + [ + 392, + 2.175569 + ], + [ + 393, + 2.156314 + ], + [ + 394, + 2.154192 + ], + [ + 395, + 2.126039 + ], + [ + 396, + 2.10856 + ], + [ + 397, + 2.092336 + ], + [ + 398, + 2.078694 + ], + [ + 399, + 2.053678 + ], + [ + 400, + 2.033064 + ], + [ + 401, + 2.009403 + ], + [ + 402, + 1.989517 + ], + [ + 403, + 1.966934 + ], + [ + 404, + 1.953569 + ], + [ + 405, + 1.936768 + ], + [ + 406, + 1.92015 + ], + [ + 407, + 1.901553 + ], + [ + 408, + 1.882997 + ], + [ + 409, + 1.863883 + ], + [ + 410, + 1.84169 + ], + [ + 411, + 1.815441 + ], + [ + 412, + 1.793922 + ], + [ + 413, + 1.771995 + ], + [ + 414, + 1.750809 + ], + [ + 415, + 1.734224 + ], + [ + 416, + 1.715105 + ], + [ + 417, + 1.700793 + ], + [ + 418, + 1.675778 + ], + [ + 419, + 1.66443 + ], + [ + 420, + 1.640002 + ], + [ + 421, + 1.614809 + ], + [ + 422, + 1.589999 + ], + [ + 423, + 1.573218 + ], + [ + 424, + 1.549763 + ], + [ + 425, + 1.533077 + ], + [ + 426, + 1.514649 + ], + [ + 427, + 1.497573 + ], + [ + 428, + 1.479752 + ], + [ + 429, + 1.460047 + ], + [ + 430, + 1.439409 + ], + [ + 431, + 1.420845 + ], + [ + 432, + 1.395375 + ], + [ + 433, + 1.374836 + ], + [ + 434, + 1.359099 + ], + [ + 435, + 1.343425 + ], + [ + 436, + 1.322161 + ], + [ + 437, + 1.320793 + ], + [ + 438, + 1.289652 + ], + [ + 439, + 1.272454 + ], + [ + 440, + 1.258269 + ], + [ + 441, + 1.231429 + ], + [ + 442, + 1.20959 + ], + [ + 443, + 1.190188 + ], + [ + 444, + 1.171001 + ], + [ + 445, + 1.161065 + ], + [ + 446, + 1.138459 + ], + [ + 447, + 1.119584 + ], + [ + 448, + 1.099778 + ], + [ + 449, + 1.085814 + ], + [ + 450, + 1.068005 + ], + [ + 451, + 1.050915 + ], + [ + 452, + 1.032779 + ], + [ + 453, + 1.014026 + ], + [ + 454, + 0.996394 + ], + [ + 455, + 0.979051 + ], + [ + 456, + 0.961354 + ], + [ + 457, + 0.946078 + ], + [ + 458, + 0.934098 + ], + [ + 459, + 0.918246 + ], + [ + 460, + 0.903815 + ], + [ + 461, + 0.889225 + ], + [ + 462, + 0.869958 + ], + [ + 463, + 0.854998 + ], + [ + 464, + 0.839775 + ], + [ + 465, + 0.825179 + ], + [ + 466, + 0.809802 + ], + [ + 467, + 0.797272 + ], + [ + 468, + 0.783738 + ], + [ + 469, + 0.770136 + ], + [ + 470, + 0.756847 + ], + [ + 471, + 0.743775 + ], + [ + 472, + 0.727169 + ], + [ + 473, + 0.713118 + ], + [ + 474, + 0.699207 + ], + [ + 475, + 0.688199 + ], + [ + 476, + 0.688567 + ], + [ + 477, + 0.661551 + ], + [ + 478, + 0.653267 + ], + [ + 479, + 0.638635 + ], + [ + 480, + 0.626118 + ], + [ + 481, + 0.615971 + ], + [ + 482, + 0.601101 + ], + [ + 483, + 0.590118 + ], + [ + 484, + 0.578468 + ], + [ + 485, + 0.569393 + ], + [ + 486, + 0.555918 + ], + [ + 487, + 0.543463 + ], + [ + 488, + 0.532872 + ], + [ + 489, + 0.521921 + ], + [ + 490, + 0.512429 + ], + [ + 491, + 0.503001 + ], + [ + 492, + 0.493684 + ], + [ + 493, + 0.484002 + ], + [ + 494, + 0.472452 + ], + [ + 495, + 0.462203 + ], + [ + 496, + 0.452326 + ], + [ + 497, + 0.440167 + ], + [ + 498, + 0.431436 + ], + [ + 499, + 0.42293 + ], + [ + 500, + 0.416132 + ], + [ + 501, + 0.404142 + ], + [ + 502, + 0.396477 + ], + [ + 503, + 0.388367 + ], + [ + 504, + 0.378716 + ], + [ + 505, + 0.37019 + ], + [ + 506, + 0.362141 + ], + [ + 507, + 0.353384 + ], + [ + 508, + 0.346952 + ], + [ + 509, + 0.339859 + ], + [ + 510, + 0.332429 + ], + [ + 511, + 0.324527 + ], + [ + 512, + 0.319323 + ], + [ + 513, + 0.311046 + ], + [ + 514, + 0.30585 + ], + [ + 515, + 0.298983 + ], + [ + 516, + 0.289586 + ], + [ + 517, + 0.285042 + ], + [ + 518, + 0.276339 + ], + [ + 519, + 0.271406 + ], + [ + 520, + 0.264567 + ], + [ + 521, + 0.258691 + ], + [ + 522, + 0.252777 + ], + [ + 523, + 0.247999 + ], + [ + 524, + 0.243012 + ], + [ + 525, + 0.236548 + ], + [ + 526, + 0.232943 + ], + [ + 527, + 0.225418 + ], + [ + 528, + 0.222023 + ], + [ + 529, + 0.215647 + ], + [ + 530, + 0.210862 + ], + [ + 531, + 0.205147 + ], + [ + 532, + 0.200047 + ], + [ + 533, + 0.196058 + ], + [ + 534, + 0.191709 + ], + [ + 535, + 0.188931 + ], + [ + 536, + 0.181576 + ], + [ + 537, + 0.177166 + ], + [ + 538, + 0.172745 + ], + [ + 539, + 0.167938 + ], + [ + 540, + 0.162973 + ], + [ + 541, + 0.159543 + ], + [ + 542, + 0.155991 + ], + [ + 543, + 0.15217 + ], + [ + 544, + 0.148251 + ], + [ + 545, + 0.144974 + ], + [ + 546, + 0.14172 + ], + [ + 547, + 0.13982 + ], + [ + 548, + 0.13449 + ], + [ + 549, + 0.131637 + ], + [ + 550, + 0.128151 + ], + [ + 551, + 0.124628 + ], + [ + 552, + 0.12232 + ], + [ + 553, + 0.119229 + ], + [ + 554, + 0.116479 + ], + [ + 555, + 0.115209 + ], + [ + 556, + 0.109947 + ], + [ + 557, + 0.107796 + ], + [ + 558, + 0.104844 + ], + [ + 559, + 0.10254 + ], + [ + 560, + 0.100532 + ], + [ + 561, + 0.096714 + ], + [ + 562, + 0.095307 + ], + [ + 563, + 0.092212 + ], + [ + 564, + 0.090186 + ], + [ + 565, + 0.087615 + ], + [ + 566, + 0.086408 + ], + [ + 567, + 0.08324 + ], + [ + 568, + 0.081645 + ], + [ + 569, + 0.080358 + ], + [ + 570, + 0.078185 + ], + [ + 571, + 0.07489 + ], + [ + 572, + 0.072294 + ], + [ + 573, + 0.070984 + ], + [ + 574, + 0.069501 + ], + [ + 575, + 0.074325 + ], + [ + 576, + 0.06551 + ], + [ + 577, + 0.064155 + ], + [ + 578, + 0.062742 + ], + [ + 579, + 0.060353 + ], + [ + 580, + 0.058709 + ], + [ + 581, + 0.057487 + ], + [ + 582, + 0.056352 + ], + [ + 583, + 0.054919 + ], + [ + 584, + 0.054307 + ], + [ + 585, + 0.052482 + ], + [ + 586, + 0.050688 + ], + [ + 587, + 0.049718 + ], + [ + 588, + 0.048447 + ], + [ + 589, + 0.047716 + ], + [ + 590, + 0.046918 + ], + [ + 591, + 0.045123 + ], + [ + 592, + 0.043731 + ], + [ + 593, + 0.043252 + ], + [ + 594, + 0.041776 + ], + [ + 595, + 0.041202 + ], + [ + 596, + 0.040019 + ], + [ + 597, + 0.038787 + ], + [ + 598, + 0.037952 + ], + [ + 599, + 0.037105 + ], + [ + 600, + 0.036557 + ], + [ + 601, + 0.035542 + ], + [ + 602, + 0.034619 + ], + [ + 603, + 0.033937 + ], + [ + 604, + 0.03268 + ], + [ + 605, + 0.031702 + ], + [ + 606, + 0.031048 + ], + [ + 607, + 0.03061 + ], + [ + 608, + 0.029378 + ], + [ + 609, + 0.030383 + ], + [ + 610, + 0.027583 + ], + [ + 611, + 0.027955 + ], + [ + 612, + 0.026935 + ], + [ + 613, + 0.026153 + ], + [ + 614, + 0.025455 + ], + [ + 615, + 0.025128 + ], + [ + 616, + 0.024917 + ], + [ + 617, + 0.023728 + ], + [ + 618, + 0.023616 + ], + [ + 619, + 0.023343 + ], + [ + 620, + 0.022416 + ], + [ + 621, + 0.022008 + ], + [ + 622, + 0.021317 + ], + [ + 623, + 0.020875 + ], + [ + 624, + 0.020425 + ], + [ + 625, + 0.01996 + ], + [ + 626, + 0.019375 + ], + [ + 627, + 0.018862 + ], + [ + 628, + 0.018952 + ], + [ + 629, + 0.0179 + ], + [ + 630, + 0.017501 + ], + [ + 631, + 0.017122 + ], + [ + 632, + 0.016906 + ], + [ + 633, + 0.016974 + ], + [ + 634, + 0.01599 + ], + [ + 635, + 0.015771 + ], + [ + 636, + 0.015551 + ], + [ + 637, + 0.01509 + ], + [ + 638, + 0.014552 + ], + [ + 639, + 0.01428 + ], + [ + 640, + 0.01437 + ], + [ + 641, + 0.014035 + ], + [ + 642, + 0.01359 + ], + [ + 643, + 0.01312 + ], + [ + 644, + 0.013093 + ], + [ + 645, + 0.013008 + ], + [ + 646, + 0.013338 + ], + [ + 647, + 0.012311 + ], + [ + 648, + 0.012016 + ], + [ + 649, + 0.012316 + ], + [ + 650, + 0.011785 + ], + [ + 651, + 0.011218 + ], + [ + 652, + 0.011306 + ], + [ + 653, + 0.010672 + ], + [ + 654, + 0.011071 + ], + [ + 655, + 0.010626 + ], + [ + 656, + 0.01032 + ], + [ + 657, + 0.009952 + ], + [ + 658, + 0.009845 + ], + [ + 659, + 0.009827 + ], + [ + 660, + 0.009844 + ], + [ + 661, + 0.010382 + ], + [ + 662, + 0.009461 + ], + [ + 663, + 0.010242 + ], + [ + 664, + 0.009261 + ], + [ + 665, + 0.01039 + ], + [ + 666, + 0.009043 + ], + [ + 667, + 0.009393 + ], + [ + 668, + 0.00892 + ], + [ + 669, + 0.009435 + ], + [ + 670, + 0.008438 + ], + [ + 671, + 0.008104 + ], + [ + 672, + 0.007918 + ], + [ + 673, + 0.007958 + ], + [ + 674, + 0.007363 + ], + [ + 675, + 0.007114 + ], + [ + 676, + 0.006914 + ], + [ + 677, + 0.006947 + ], + [ + 678, + 0.006994 + ], + [ + 679, + 0.007054 + ], + [ + 680, + 0.006718 + ], + [ + 681, + 0.006871 + ], + [ + 682, + 0.00692 + ], + [ + 683, + 0.006793 + ], + [ + 684, + 0.006883 + ], + [ + 685, + 0.007283 + ], + [ + 686, + 0.006274 + ], + [ + 687, + 0.006006 + ], + [ + 688, + 0.006008 + ], + [ + 689, + 0.005482 + ], + [ + 690, + 0.005321 + ], + [ + 691, + 0.004584 + ], + [ + 692, + 0.003786 + ], + [ + 693, + 0.003533 + ], + [ + 694, + 0.003592 + ], + [ + 695, + 0.003499 + ], + [ + 696, + 0.003145 + ], + [ + 697, + 0.003028 + ], + [ + 698, + 0.002763 + ], + [ + 699, + 0.002827 + ], + [ + 700, + 0.002734 + ], + [ + 701, + 0.002681 + ], + [ + 702, + 0.002741 + ], + [ + 703, + 0.002538 + ], + [ + 704, + 0.002559 + ], + [ + 705, + 0.002509 + ], + [ + 706, + 0.002403 + ], + [ + 707, + 0.002415 + ], + [ + 708, + 0.002299 + ], + [ + 709, + 0.002306 + ], + [ + 710, + 0.00232 + ], + [ + 711, + 0.002194 + ], + [ + 712, + 0.002107 + ], + [ + 713, + 0.001988 + ], + [ + 714, + 0.002115 + ], + [ + 715, + 0.001935 + ], + [ + 716, + 0.001947 + ], + [ + 717, + 0.001954 + ], + [ + 718, + 0.001851 + ], + [ + 719, + 0.001886 + ], + [ + 720, + 0.001793 + ], + [ + 721, + 0.001772 + ], + [ + 722, + 0.001762 + ], + [ + 723, + 0.001741 + ], + [ + 724, + 0.001727 + ], + [ + 725, + 0.00166 + ], + [ + 726, + 0.001572 + ], + [ + 727, + 0.001624 + ], + [ + 728, + 0.001495 + ], + [ + 729, + 0.001376 + ], + [ + 730, + 0.00149 + ], + [ + 731, + 0.001429 + ], + [ + 732, + 0.001375 + ], + [ + 733, + 0.001459 + ], + [ + 734, + 0.001349 + ], + [ + 735, + 0.001358 + ], + [ + 736, + 0.001273 + ], + [ + 737, + 0.001313 + ], + [ + 738, + 0.00128 + ], + [ + 739, + 0.001199 + ], + [ + 740, + 0.001252 + ], + [ + 741, + 0.001158 + ], + [ + 742, + 0.001213 + ], + [ + 743, + 0.00117 + ], + [ + 744, + 0.001216 + ], + [ + 745, + 0.001119 + ], + [ + 746, + 0.001111 + ], + [ + 747, + 0.001032 + ], + [ + 748, + 0.00113 + ], + [ + 749, + 0.001134 + ], + [ + 750, + 0.001055 + ], + [ + 751, + 0.001075 + ], + [ + 752, + 0.00106 + ], + [ + 753, + 0.001009 + ], + [ + 754, + 0.001061 + ], + [ + 755, + 0.001063 + ], + [ + 756, + 0.000973 + ], + [ + 757, + 0.001034 + ], + [ + 758, + 0.000923 + ], + [ + 759, + 0.000937 + ], + [ + 760, + 0.000894 + ], + [ + 761, + 0.000955 + ], + [ + 762, + 0.000868 + ], + [ + 763, + 0.000817 + ], + [ + 764, + 0.000914 + ], + [ + 765, + 0.000787 + ], + [ + 766, + 0.000779 + ], + [ + 767, + 0.00072 + ], + [ + 768, + 0.000765 + ], + [ + 769, + 0.000784 + ], + [ + 770, + 0.000741 + ], + [ + 771, + 0.000775 + ], + [ + 772, + 0.00076 + ], + [ + 773, + 0.000764 + ], + [ + 774, + 0.000725 + ], + [ + 775, + 0.000749 + ], + [ + 776, + 0.000706 + ], + [ + 777, + 0.00087 + ], + [ + 778, + 0.000739 + ], + [ + 779, + 0.000725 + ], + [ + 780, + 0.000716 + ], + [ + 781, + 0.000616 + ], + [ + 782, + 0.000688 + ], + [ + 783, + 0.000613 + ], + [ + 784, + 0.000624 + ], + [ + 785, + 0.000623 + ], + [ + 786, + 0.000673 + ], + [ + 787, + 0.000639 + ], + [ + 788, + 0.000796 + ], + [ + 789, + 0.000624 + ], + [ + 790, + 0.000606 + ], + [ + 791, + 0.000573 + ], + [ + 792, + 0.000538 + ], + [ + 793, + 0.000597 + ], + [ + 794, + 0.000597 + ], + [ + 795, + 0.000565 + ], + [ + 796, + 0.000542 + ], + [ + 797, + 0.000597 + ], + [ + 798, + 0.000515 + ], + [ + 799, + 0.0005 + ], + [ + 800, + 0.000574 + ], + [ + 801, + 0.000497 + ], + [ + 802, + 0.00049 + ], + [ + 803, + 0.00049 + ], + [ + 804, + 0.000544 + ], + [ + 805, + 0.000454 + ], + [ + 806, + 0.000463 + ], + [ + 807, + 0.000478 + ], + [ + 808, + 0.000473 + ], + [ + 809, + 0.000462 + ], + [ + 810, + 0.000542 + ], + [ + 811, + 0.000547 + ], + [ + 812, + 0.00044 + ], + [ + 813, + 0.000482 + ], + [ + 814, + 0.000519 + ], + [ + 815, + 0.000449 + ], + [ + 816, + 0.000444 + ], + [ + 817, + 0.000403 + ], + [ + 818, + 0.000403 + ], + [ + 819, + 0.000445 + ], + [ + 820, + 0.000478 + ] + ], + "color": "#f15c80", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "qualimap_insert_size", + "title": "Qualimap BamQC: Insert size histogram", + "ylab": "Fraction of reads", + "xlab": "Insert Size (bp)", + "ymin": 0, + "xmin": 0, + "tt_label": "{point.x} bp: {point.y}" + } + }, + "qualimap_gc_content": { + "id": "qualimap_gc_content", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "Qualimap BamQC: GC content distribution", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "qualimap_gc_content", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "Qualimap BamQC: GC content distribution" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "%", + "title": { + "text": "GC content (%)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 100 + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Fraction of reads" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y:.3f}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 1, + 1.1829521451934446e-05 + ], + [ + 2, + 1.0545070755179225e-05 + ], + [ + 3, + 1.913202786075958e-05 + ], + [ + 4, + 4.5440811712480155e-05 + ], + [ + 5, + 6.495907299953677e-05 + ], + [ + 6, + 5.595893594954562e-05 + ], + [ + 7, + 5.335410586521685e-05 + ], + [ + 8, + 5.22852273133716e-05 + ], + [ + 9, + 4.7695337061330225e-05 + ], + [ + 10, + 6.161770475343226e-05 + ], + [ + 11, + 5.673140280213968e-05 + ], + [ + 12, + 6.444708915537557e-05 + ], + [ + 13, + 7.970780058046034e-05 + ], + [ + 14, + 0.00010179496326102739 + ], + [ + 15, + 0.00014334649419242356 + ], + [ + 16, + 0.00020773070813886706 + ], + [ + 17, + 0.0003211126741888051 + ], + [ + 18, + 0.0005084807968063848 + ], + [ + 19, + 0.0009046125774238587 + ], + [ + 20, + 0.001742649290761356 + ], + [ + 21, + 0.0028101805167009223 + ], + [ + 22, + 0.004335811532746873 + ], + [ + 23, + 0.0054567687219332925 + ], + [ + 24, + 0.006899655963024635 + ], + [ + 25, + 0.01027914455008737 + ], + [ + 26, + 0.010998275261161611 + ], + [ + 27, + 0.015262687503079764 + ], + [ + 28, + 0.01858920821770358 + ], + [ + 29, + 0.021960657760195717 + ], + [ + 30, + 0.025144496661407244 + ], + [ + 31, + 0.028189228653942917 + ], + [ + 32, + 0.031020140025246015 + ], + [ + 33, + 0.03367377025387878 + ], + [ + 34, + 0.036216021540974724 + ], + [ + 35, + 0.03870916728989472 + ], + [ + 36, + 0.041406774236089114 + ], + [ + 37, + 0.043569519744243765 + ], + [ + 38, + 0.04434112430825818 + ], + [ + 39, + 0.04386784464628105 + ], + [ + 40, + 0.0426343049044154 + ], + [ + 41, + 0.04043428337953673 + ], + [ + 42, + 0.03739830002321533 + ], + [ + 43, + 0.03426971046630967 + ], + [ + 44, + 0.031390483988028635 + ], + [ + 45, + 0.029244553107176958 + ], + [ + 46, + 0.027746587183061115 + ], + [ + 47, + 0.026697451446820532 + ], + [ + 48, + 0.025997533603161392 + ], + [ + 49, + 0.025412704338366062 + ], + [ + 50, + 0.02502692900287697 + ], + [ + 51, + 0.02680076439726864 + ], + [ + 52, + 0.020934121170479863 + ], + [ + 53, + 0.02136247200458867 + ], + [ + 54, + 0.018855323048422228 + ], + [ + 55, + 0.01609450855290569 + ], + [ + 56, + 0.013502028956045721 + ], + [ + 57, + 0.011213434226127169 + ], + [ + 58, + 0.009301228461221419 + ], + [ + 59, + 0.007703317901421697 + ], + [ + 60, + 0.006472454847022012 + ], + [ + 61, + 0.005488844060661355 + ], + [ + 62, + 0.004687706112794281 + ], + [ + 63, + 0.00400486337944655 + ], + [ + 64, + 0.0034073243402742356 + ], + [ + 65, + 0.002854058430362805 + ], + [ + 66, + 0.0023878746848222964 + ], + [ + 67, + 0.0019753145103281423 + ], + [ + 68, + 0.0016062909269330974 + ], + [ + 69, + 0.001305864196482944 + ], + [ + 70, + 0.0010488842354048542 + ], + [ + 71, + 0.0008462554013621895 + ], + [ + 72, + 0.0006888787534052092 + ], + [ + 73, + 0.0005703679667409547 + ], + [ + 74, + 0.00047741146142123587 + ], + [ + 75, + 0.00039876355721991626 + ], + [ + 76, + 0.0003409453115205221 + ], + [ + 77, + 0.0002960075014794986 + ], + [ + 78, + 0.0002644172000774838 + ], + [ + 79, + 0.0002310124997891435 + ], + [ + 80, + 0.00019715869086557407 + ], + [ + 81, + 0.0001639875270675529 + ], + [ + 82, + 0.00013463378666897906 + ], + [ + 83, + 0.0001134358590861656 + ], + [ + 84, + 9.156426855050852e-05 + ], + [ + 85, + 7.104898609324332e-05 + ], + [ + 86, + 5.5042754333678264e-05 + ], + [ + 87, + 3.9261076891727756e-05 + ], + [ + 88, + 2.4674028419486648e-05 + ], + [ + 89, + 1.3554098611214181e-05 + ], + [ + 90, + 9.52110306685688e-06 + ], + [ + 91, + 1.0778607245498356e-05 + ], + [ + 92, + 1.2233719223640633e-05 + ], + [ + 93, + 2.0802711983811828e-05 + ], + [ + 94, + 3.8596396111588694e-05 + ], + [ + 95, + 5.74679409639154e-05 + ], + [ + 96, + 6.915374765257652e-05 + ], + [ + 97, + 6.74830635295243e-05 + ], + [ + 98, + 5.0910954889570564e-05 + ], + [ + 99, + 4.024013371652719e-05 + ], + [ + 100, + 6.096200614599778e-05 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 1, + 1.4017695760822734e-05 + ], + [ + 2, + 1.2521201267333426e-05 + ], + [ + 3, + 2.311606387815402e-05 + ], + [ + 4, + 4.989376321910102e-05 + ], + [ + 5, + 7.328046971841801e-05 + ], + [ + 6, + 6.200900055469001e-05 + ], + [ + 7, + 5.828368447515279e-05 + ], + [ + 8, + 5.6508587283407494e-05 + ], + [ + 9, + 5.24807882743352e-05 + ], + [ + 10, + 6.723081112771654e-05 + ], + [ + 11, + 6.141995484980592e-05 + ], + [ + 12, + 6.860790446481042e-05 + ], + [ + 13, + 8.518874504958825e-05 + ], + [ + 14, + 0.00010633866988576429 + ], + [ + 15, + 0.0001491479644920702 + ], + [ + 16, + 0.00021284450139048218 + ], + [ + 17, + 0.0003268328053626466 + ], + [ + 18, + 0.0005139662577426477 + ], + [ + 19, + 0.0009183222539142963 + ], + [ + 20, + 0.0017555790827131928 + ], + [ + 21, + 0.0028427664120789903 + ], + [ + 22, + 0.004362369009369361 + ], + [ + 23, + 0.005504019186205657 + ], + [ + 24, + 0.006943806090484234 + ], + [ + 25, + 0.010341389875947292 + ], + [ + 26, + 0.01108464615435462 + ], + [ + 27, + 0.015362311983377067 + ], + [ + 28, + 0.018737838395215346 + ], + [ + 29, + 0.022127756626437817 + ], + [ + 30, + 0.025327628017064237 + ], + [ + 31, + 0.028396954143365 + ], + [ + 32, + 0.0312446160028562 + ], + [ + 33, + 0.033928499276158354 + ], + [ + 34, + 0.036448317400496096 + ], + [ + 35, + 0.038934448478576134 + ], + [ + 36, + 0.04158766157483885 + ], + [ + 37, + 0.04373832316391031 + ], + [ + 38, + 0.04447509197948682 + ], + [ + 39, + 0.04397734039878266 + ], + [ + 40, + 0.04263743654186741 + ], + [ + 41, + 0.04049584944068199 + ], + [ + 42, + 0.03743801766570357 + ], + [ + 43, + 0.034259956886312046 + ], + [ + 44, + 0.03141685615099515 + ], + [ + 45, + 0.02921709680641388 + ], + [ + 46, + 0.027762161875427276 + ], + [ + 47, + 0.02667865210167846 + ], + [ + 48, + 0.02596540531391185 + ], + [ + 49, + 0.025354485317176115 + ], + [ + 50, + 0.024915924869735727 + ], + [ + 51, + 0.02659382156009806 + ], + [ + 52, + 0.020702687904704246 + ], + [ + 53, + 0.02112522471695637 + ], + [ + 54, + 0.018598234563157814 + ], + [ + 55, + 0.01590318330169415 + ], + [ + 56, + 0.013288329816942744 + ], + [ + 57, + 0.011054692384253556 + ], + [ + 58, + 0.009185228478570406 + ], + [ + 59, + 0.007603879563269415 + ], + [ + 60, + 0.006381156001240626 + ], + [ + 61, + 0.005408792783941761 + ], + [ + 62, + 0.004602078770948813 + ], + [ + 63, + 0.003949654932250033 + ], + [ + 64, + 0.0033380424088072084 + ], + [ + 65, + 0.002799980997703964 + ], + [ + 66, + 0.002327805144699714 + ], + [ + 67, + 0.0019242769965457404 + ], + [ + 68, + 0.0015610427586366755 + ], + [ + 69, + 0.0012608682514585808 + ], + [ + 70, + 0.0010113437148234242 + ], + [ + 71, + 0.0008155735787974877 + ], + [ + 72, + 0.0006649928004286724 + ], + [ + 73, + 0.000548194589242669 + ], + [ + 74, + 0.0004535572326836563 + ], + [ + 75, + 0.0003837155162694265 + ], + [ + 76, + 0.0003261880391181113 + ], + [ + 77, + 0.00028242353526064203 + ], + [ + 78, + 0.00025241404461992555 + ], + [ + 79, + 0.0002185439165890904 + ], + [ + 80, + 0.00018507179241290664 + ], + [ + 81, + 0.00015330312473463094 + ], + [ + 82, + 0.00012760799587833576 + ], + [ + 83, + 0.000105693903641229 + ], + [ + 84, + 8.448825826540178e-05 + ], + [ + 85, + 6.754125413434464e-05 + ], + [ + 86, + 5.0729571313869e-05 + ], + [ + 87, + 3.575666630188287e-05 + ], + [ + 88, + 2.2686219715130495e-05 + ], + [ + 89, + 1.250528111314737e-05 + ], + [ + 90, + 8.811805341982264e-06 + ], + [ + 91, + 9.575972742912975e-06 + ], + [ + 92, + 1.1924195485356308e-05 + ], + [ + 93, + 1.9860392347105464e-05 + ], + [ + 94, + 3.7515843339442106e-05 + ], + [ + 95, + 5.6763309750384405e-05 + ], + [ + 96, + 7.091632682178861e-05 + ], + [ + 97, + 6.777209637004247e-05 + ], + [ + 98, + 5.1422098020962444e-05 + ], + [ + 99, + 3.97128246171179e-05 + ], + [ + 100, + 3.919541960607107e-05 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 1, + 1.3457914428272164e-05 + ], + [ + 2, + 1.0820353867359323e-05 + ], + [ + 3, + 2.17360412489685e-05 + ], + [ + 4, + 4.86757034840753e-05 + ], + [ + 5, + 7.250113758701993e-05 + ], + [ + 6, + 6.106906033655733e-05 + ], + [ + 7, + 5.769266504020806e-05 + ], + [ + 8, + 5.601638408131467e-05 + ], + [ + 9, + 5.0224873090635555e-05 + ], + [ + 10, + 6.664607092017426e-05 + ], + [ + 11, + 6.149011669116091e-05 + ], + [ + 12, + 6.827468512194273e-05 + ], + [ + 13, + 8.508516146800172e-05 + ], + [ + 14, + 0.00010485097675580639 + ], + [ + 15, + 0.00014740944640884886 + ], + [ + 16, + 0.00021136234555146457 + ], + [ + 17, + 0.00032601678535596504 + ], + [ + 18, + 0.0005117582489527793 + ], + [ + 19, + 0.0009058431634831458 + ], + [ + 20, + 0.0017417591942640177 + ], + [ + 21, + 0.002821689299226932 + ], + [ + 22, + 0.004361277887605076 + ], + [ + 23, + 0.005491003864844501 + ], + [ + 24, + 0.006907866442544989 + ], + [ + 25, + 0.010307117948935667 + ], + [ + 26, + 0.01101910041119172 + ], + [ + 27, + 0.015261020738955968 + ], + [ + 28, + 0.01862542784588832 + ], + [ + 29, + 0.02198216060492356 + ], + [ + 30, + 0.025230753380961375 + ], + [ + 31, + 0.02821481154387486 + ], + [ + 32, + 0.031084080211171993 + ], + [ + 33, + 0.03373931719451867 + ], + [ + 34, + 0.03625167307338336 + ], + [ + 35, + 0.0387234883753133 + ], + [ + 36, + 0.04138013152799517 + ], + [ + 37, + 0.04356028188753716 + ], + [ + 38, + 0.04428569048638341 + ], + [ + 39, + 0.043809594916219594 + ], + [ + 40, + 0.0425307355448553 + ], + [ + 41, + 0.040440254299924816 + ], + [ + 42, + 0.037416171949945426 + ], + [ + 43, + 0.034221434664999266 + ], + [ + 44, + 0.03138715339743183 + ], + [ + 45, + 0.02923501520216024 + ], + [ + 46, + 0.027782569390265986 + ], + [ + 47, + 0.026737968296792175 + ], + [ + 48, + 0.02603896708139314 + ], + [ + 49, + 0.02546382793438325 + ], + [ + 50, + 0.024999029385658043 + ], + [ + 51, + 0.026764216791048966 + ], + [ + 52, + 0.020826329133698713 + ], + [ + 53, + 0.021279481104766396 + ], + [ + 54, + 0.018734123941052203 + ], + [ + 55, + 0.015997138469236276 + ], + [ + 56, + 0.013448857744418428 + ], + [ + 57, + 0.011177242822413197 + ], + [ + 58, + 0.009282179392775883 + ], + [ + 59, + 0.0077167156997384224 + ], + [ + 60, + 0.00649345165610084 + ], + [ + 61, + 0.00550481133549169 + ], + [ + 62, + 0.004707537155820094 + ], + [ + 63, + 0.004034998935084923 + ], + [ + 64, + 0.003417563485586172 + ], + [ + 65, + 0.002873169396921857 + ], + [ + 66, + 0.002401975558282394 + ], + [ + 67, + 0.0019862419915577883 + ], + [ + 68, + 0.001618985516829237 + ], + [ + 69, + 0.0013056480888685039 + ], + [ + 70, + 0.0010491373798602087 + ], + [ + 71, + 0.0008453143263940042 + ], + [ + 72, + 0.0006926774256204546 + ], + [ + 73, + 0.0005736853109175853 + ], + [ + 74, + 0.00047488006785712433 + ], + [ + 75, + 0.0004006867603921694 + ], + [ + 76, + 0.0003392443104581334 + ], + [ + 77, + 0.0002989738451470876 + ], + [ + 78, + 0.0002629774990582439 + ], + [ + 79, + 0.00023020660353485387 + ], + [ + 80, + 0.00019676042895219403 + ], + [ + 81, + 0.0001625277528769728 + ], + [ + 82, + 0.00013643814781059396 + ], + [ + 83, + 0.00011387588277145998 + ], + [ + 84, + 8.963733677343261e-05 + ], + [ + 85, + 7.222308150379117e-05 + ], + [ + 86, + 5.478499285558727e-05 + ], + [ + 87, + 3.859418435215241e-05 + ], + [ + 88, + 2.3936656536236146e-05 + ], + [ + 89, + 1.3720081592459284e-05 + ], + [ + 90, + 9.438017910736323e-06 + ], + [ + 91, + 9.946463320068918e-06 + ], + [ + 92, + 1.2051745093086702e-05 + ], + [ + 93, + 1.8860146902431004e-05 + ], + [ + 94, + 3.6695458526675986e-05 + ], + [ + 95, + 5.642949597639739e-05 + ], + [ + 96, + 7.299369407731088e-05 + ], + [ + 97, + 7.00860218926901e-05 + ], + [ + 98, + 5.063004052619747e-05 + ], + [ + 99, + 4.0993411127440596e-05 + ], + [ + 100, + 4.862009226742954e-05 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 1, + 1.4571055166172052e-05 + ], + [ + 2, + 1.310848208664071e-05 + ], + [ + 3, + 2.4159793626837804e-05 + ], + [ + 4, + 5.481231821421194e-05 + ], + [ + 5, + 7.849370008606285e-05 + ], + [ + 6, + 6.543989362856352e-05 + ], + [ + 7, + 6.226187268472203e-05 + ], + [ + 8, + 5.906334837995256e-05 + ], + [ + 9, + 5.586482407518308e-05 + ], + [ + 10, + 6.975243387708815e-05 + ], + [ + 11, + 6.520068775107007e-05 + ], + [ + 12, + 7.424266992032223e-05 + ], + [ + 13, + 8.966803179182801e-05 + ], + [ + 14, + 0.00011070448010396569 + ], + [ + 15, + 0.0001603841236325326 + ], + [ + 16, + 0.0002247168357709836 + ], + [ + 17, + 0.00035027258364047086 + ], + [ + 18, + 0.0005552856895596375 + ], + [ + 19, + 0.001006386967790416 + ], + [ + 20, + 0.0019018097462384447 + ], + [ + 21, + 0.003043108828935163 + ], + [ + 22, + 0.004639794392296613 + ], + [ + 23, + 0.005863352959036507 + ], + [ + 24, + 0.007402225879034613 + ], + [ + 25, + 0.010960714022709865 + ], + [ + 26, + 0.011698609479147996 + ], + [ + 27, + 0.01614402517539344 + ], + [ + 28, + 0.01966974894830573 + ], + [ + 29, + 0.0231212778924732 + ], + [ + 30, + 0.026437846880558866 + ], + [ + 31, + 0.029482814680884838 + ], + [ + 32, + 0.03235917650984614 + ], + [ + 33, + 0.03497751721043573 + ], + [ + 34, + 0.03749223392489517 + ], + [ + 35, + 0.03982414267332046 + ], + [ + 36, + 0.04238074775415582 + ], + [ + 37, + 0.04432182827102505 + ], + [ + 38, + 0.04488247217224053 + ], + [ + 39, + 0.04413254124293767 + ], + [ + 40, + 0.04261284579986088 + ], + [ + 41, + 0.040266365996269406 + ], + [ + 42, + 0.0371105228544984 + ], + [ + 43, + 0.03381602915167856 + ], + [ + 44, + 0.030886474770016367 + ], + [ + 45, + 0.028635882351031552 + ], + [ + 46, + 0.027075487736512676 + ], + [ + 47, + 0.02596793035144982 + ], + [ + 48, + 0.025174463952443136 + ], + [ + 49, + 0.02453288645119115 + ], + [ + 50, + 0.02401283920461312 + ], + [ + 51, + 0.02553667632659735 + ], + [ + 52, + 0.019823770195596932 + ], + [ + 53, + 0.020203164386208828 + ], + [ + 54, + 0.017746971098291577 + ], + [ + 55, + 0.015137146126940754 + ], + [ + 56, + 0.012710511851028047 + ], + [ + 57, + 0.010544147238735495 + ], + [ + 58, + 0.008760635050598023 + ], + [ + 59, + 0.007268817343929698 + ], + [ + 60, + 0.006102531498715379 + ], + [ + 61, + 0.005195572162518523 + ], + [ + 62, + 0.0044115646473532975 + ], + [ + 63, + 0.0037798560971613266 + ], + [ + 64, + 0.003203260581143845 + ], + [ + 65, + 0.0026947703956755682 + ], + [ + 66, + 0.0022440655157560637 + ], + [ + 67, + 0.0018540369152761826 + ], + [ + 68, + 0.0015101477113379656 + ], + [ + 69, + 0.0012139629938255837 + ], + [ + 70, + 0.0009759941524414633 + ], + [ + 71, + 0.0007852582201818341 + ], + [ + 72, + 0.0006423087877917522 + ], + [ + 73, + 0.0005360603714628071 + ], + [ + 74, + 0.0004423941842900173 + ], + [ + 75, + 0.0003743093571017406 + ], + [ + 76, + 0.0003193125086391766 + ], + [ + 77, + 0.00027902340441563796 + ], + [ + 78, + 0.00024770793782492493 + ], + [ + 79, + 0.00021864100648265013 + ], + [ + 80, + 0.00018567160211041095 + ], + [ + 81, + 0.00015292773470837985 + ], + [ + 82, + 0.0001292736906510996 + ], + [ + 83, + 0.0001090300389615116 + ], + [ + 84, + 8.77270469573098e-05 + ], + [ + 85, + 7.049738932413917e-05 + ], + [ + 86, + 5.47986493069266e-05 + ], + [ + 87, + 3.8266105945308315e-05 + ], + [ + 88, + 2.52259683950943e-05 + ], + [ + 89, + 1.4926446755590881e-05 + ], + [ + 90, + 1.054556197063953e-05 + ], + [ + 91, + 1.085994683820234e-05 + ], + [ + 92, + 1.1454544305114616e-05 + ], + [ + 93, + 1.7960944172936284e-05 + ], + [ + 94, + 3.4083420315994383e-05 + ], + [ + 95, + 5.2980684637976436e-05 + ], + [ + 96, + 6.850856331412225e-05 + ], + [ + 97, + 7.021034227114705e-05 + ], + [ + 98, + 5.0971355267031495e-05 + ], + [ + 99, + 3.8970054670503294e-05 + ], + [ + 100, + 4.038478657453595e-05 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 1, + 1.4334934352064634e-05 + ], + [ + 2, + 1.3481748392104072e-05 + ], + [ + 3, + 2.300076530075496e-05 + ], + [ + 4, + 5.300329637209536e-05 + ], + [ + 5, + 7.577842571649712e-05 + ], + [ + 6, + 6.303704530617701e-05 + ], + [ + 7, + 6.075248124810078e-05 + ], + [ + 8, + 5.705769246281702e-05 + ], + [ + 9, + 5.236869524485196e-05 + ], + [ + 10, + 6.896704028408471e-05 + ], + [ + 11, + 6.204283687349569e-05 + ], + [ + 12, + 7.068046332764186e-05 + ], + [ + 13, + 8.596024824693554e-05 + ], + [ + 14, + 0.00010917959838040766 + ], + [ + 15, + 0.00015576637224370873 + ], + [ + 16, + 0.00021967070575711832 + ], + [ + 17, + 0.00034294550028596537 + ], + [ + 18, + 0.0005423019188476591 + ], + [ + 19, + 0.0009706788331078572 + ], + [ + 20, + 0.0018420919476675756 + ], + [ + 21, + 0.0029682410058264283 + ], + [ + 22, + 0.004534993626630368 + ], + [ + 23, + 0.005689213207984287 + ], + [ + 24, + 0.007172903592355703 + ], + [ + 25, + 0.010634123907195705 + ], + [ + 26, + 0.011352111622558881 + ], + [ + 27, + 0.015687198842983942 + ], + [ + 28, + 0.01910949695535302 + ], + [ + 29, + 0.022520604934511704 + ], + [ + 30, + 0.0257468959120462 + ], + [ + 31, + 0.028788546166047417 + ], + [ + 32, + 0.03165857912187112 + ], + [ + 33, + 0.03428271119201163 + ], + [ + 34, + 0.036774662898470985 + ], + [ + 35, + 0.03923606913733902 + ], + [ + 36, + 0.04185371417373439 + ], + [ + 37, + 0.04388945112981846 + ], + [ + 38, + 0.044558447638158444 + ], + [ + 39, + 0.04395478684142998 + ], + [ + 40, + 0.04256477768568697 + ], + [ + 41, + 0.040336016220066356 + ], + [ + 42, + 0.03730541507680281 + ], + [ + 43, + 0.03409548270610392 + ], + [ + 44, + 0.03120884435411736 + ], + [ + 45, + 0.029043585307962902 + ], + [ + 46, + 0.027528186020600226 + ], + [ + 47, + 0.02643292793509085 + ], + [ + 48, + 0.02566799383855894 + ], + [ + 49, + 0.025054447366492753 + ], + [ + 50, + 0.02454357230569092 + ], + [ + 51, + 0.026175935631928188 + ], + [ + 52, + 0.020342216696146945 + ], + [ + 53, + 0.02073968853551039 + ], + [ + 54, + 0.018253821948748934 + ], + [ + 55, + 0.015593235569410103 + ], + [ + 56, + 0.01310338509779429 + ], + [ + 57, + 0.01088152668221336 + ], + [ + 58, + 0.009034752788451453 + ], + [ + 59, + 0.007510765232500083 + ], + [ + 60, + 0.0062891087046911005 + ], + [ + 61, + 0.0053387441587786685 + ], + [ + 62, + 0.004551535562680513 + ], + [ + 63, + 0.003881587152649663 + ], + [ + 64, + 0.0033003489290838036 + ], + [ + 65, + 0.002767890378832053 + ], + [ + 66, + 0.0023076917436024172 + ], + [ + 67, + 0.001893614508076103 + ], + [ + 68, + 0.0015449999043867636 + ], + [ + 69, + 0.0012439944874879502 + ], + [ + 70, + 0.0009975929720266131 + ], + [ + 71, + 0.0008006903444902605 + ], + [ + 72, + 0.0006528000773480059 + ], + [ + 73, + 0.0005413218126622499 + ], + [ + 74, + 0.0004454970424484976 + ], + [ + 75, + 0.0003777921532952637 + ], + [ + 76, + 0.0003184357945270983 + ], + [ + 77, + 0.0002773771015944508 + ], + [ + 78, + 0.00024798801827944576 + ], + [ + 79, + 0.0002125772753792644 + ], + [ + 80, + 0.00018472533701691552 + ], + [ + 81, + 0.00015170492502935103 + ], + [ + 82, + 0.00012526321139420964 + ], + [ + 83, + 0.00010517456015513826 + ], + [ + 84, + 8.519167577060743e-05 + ], + [ + 85, + 6.699272566599414e-05 + ], + [ + 86, + 5.161422501579593e-05 + ], + [ + 87, + 3.7011347965561863e-05 + ], + [ + 88, + 2.3289861369832503e-05 + ], + [ + 89, + 1.3545208504828413e-05 + ], + [ + 90, + 9.335687694113909e-06 + ], + [ + 91, + 1.0597838824964655e-05 + ], + [ + 92, + 1.208562591216861e-05 + ], + [ + 93, + 2.0659792253590446e-05 + ], + [ + 94, + 4.0029228881785994e-05 + ], + [ + 95, + 6.0287107088122286e-05 + ], + [ + 96, + 7.800658078548501e-05 + ], + [ + 97, + 7.594060156012598e-05 + ], + [ + 98, + 5.681090313555571e-05 + ], + [ + 99, + 4.323749013618315e-05 + ], + [ + 100, + 4.447848789612578e-05 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 1, + 1.3655826618684164e-05 + ], + [ + 2, + 1.2275154645634882e-05 + ], + [ + 3, + 2.267169004925189e-05 + ], + [ + 4, + 5.2141114785484124e-05 + ], + [ + 5, + 7.484298345709775e-05 + ], + [ + 6, + 6.274135589004283e-05 + ], + [ + 7, + 5.963295778678433e-05 + ], + [ + 8, + 5.822965184696375e-05 + ], + [ + 9, + 5.441205611820453e-05 + ], + [ + 10, + 6.898078606333112e-05 + ], + [ + 11, + 6.336001764845835e-05 + ], + [ + 12, + 7.125927205164196e-05 + ], + [ + 13, + 8.651456565549795e-05 + ], + [ + 14, + 0.0001091938003603403 + ], + [ + 15, + 0.00015419012630168416 + ], + [ + 16, + 0.00021742942946069557 + ], + [ + 17, + 0.0003369292293575677 + ], + [ + 18, + 0.0005277486585508052 + ], + [ + 19, + 0.0009417842680426005 + ], + [ + 20, + 0.001813735203940151 + ], + [ + 21, + 0.002902051772860146 + ], + [ + 22, + 0.004456937388148123 + ], + [ + 23, + 0.00558778318063139 + ], + [ + 24, + 0.0070320188770300746 + ], + [ + 25, + 0.010490262660016958 + ], + [ + 26, + 0.011181073959843794 + ], + [ + 27, + 0.015462469846369311 + ], + [ + 28, + 0.018851257529990666 + ], + [ + 29, + 0.022222707595065207 + ], + [ + 30, + 0.02545424956687075 + ], + [ + 31, + 0.02845595115076934 + ], + [ + 32, + 0.031292454955859805 + ], + [ + 33, + 0.03395331917880498 + ], + [ + 34, + 0.03647973009447305 + ], + [ + 35, + 0.03893550794450347 + ], + [ + 36, + 0.04159337693917925 + ], + [ + 37, + 0.0437394466772224 + ], + [ + 38, + 0.044442834917918485 + ], + [ + 39, + 0.043918692604739906 + ], + [ + 40, + 0.04257774324337426 + ], + [ + 41, + 0.04040790029556566 + ], + [ + 42, + 0.037394270611178594 + ], + [ + 43, + 0.03422175048005701 + ], + [ + 44, + 0.03135728618134839 + ], + [ + 45, + 0.029137957837522148 + ], + [ + 46, + 0.027650996756514834 + ], + [ + 47, + 0.026590338894989372 + ], + [ + 48, + 0.02583246315161917 + ], + [ + 49, + 0.025242116485634538 + ], + [ + 50, + 0.02476807068557644 + ], + [ + 51, + 0.026400319199288723 + ], + [ + 52, + 0.020575437672072375 + ], + [ + 53, + 0.021042640469509953 + ], + [ + 54, + 0.01852013014078214 + ], + [ + 55, + 0.015860789938266232 + ], + [ + 56, + 0.013299507624459184 + ], + [ + 57, + 0.011057960269919108 + ], + [ + 58, + 0.009177032363290557 + ], + [ + 59, + 0.007617650133270683 + ], + [ + 60, + 0.0063958007050556095 + ], + [ + 61, + 0.005415915926281321 + ], + [ + 62, + 0.004628540579552527 + ], + [ + 63, + 0.003936590036731533 + ], + [ + 64, + 0.003349027348659773 + ], + [ + 65, + 0.002809026169430104 + ], + [ + 66, + 0.0023469612824496104 + ], + [ + 67, + 0.0019385539860282785 + ], + [ + 68, + 0.0015773988675698298 + ], + [ + 69, + 0.0012635487396633976 + ], + [ + 70, + 0.0010239380227668282 + ], + [ + 71, + 0.000819545758166401 + ], + [ + 72, + 0.0006680113506325495 + ], + [ + 73, + 0.0005538758008604755 + ], + [ + 74, + 0.0004550936252149331 + ], + [ + 75, + 0.0003853055610034256 + ], + [ + 76, + 0.0003251897452588535 + ], + [ + 77, + 0.0002819815026924424 + ], + [ + 78, + 0.000249305599330276 + ], + [ + 79, + 0.00021957211164837863 + ], + [ + 80, + 0.00018645107360637666 + ], + [ + 81, + 0.00015409959043459893 + ], + [ + 82, + 0.0001268935623754967 + ], + [ + 83, + 0.00010693040368321032 + ], + [ + 84, + 8.525460817189561e-05 + ], + [ + 85, + 6.87469017400277e-05 + ], + [ + 86, + 5.19072304621807e-05 + ], + [ + 87, + 3.7519572251224506e-05 + ], + [ + 88, + 2.3758120454274276e-05 + ], + [ + 89, + 1.3384219017428569e-05 + ], + [ + 90, + 8.98568480820599e-06 + ], + [ + 91, + 1.0019302624095342e-05 + ], + [ + 92, + 1.2237431367682715e-05 + ], + [ + 93, + 2.0611999073063614e-05 + ], + [ + 94, + 4.0099844463152675e-05 + ], + [ + 95, + 6.79547129030322e-05 + ], + [ + 96, + 9.663194880226896e-05 + ], + [ + 97, + 9.653386827959332e-05 + ], + [ + 98, + 6.744167632288274e-05 + ], + [ + 99, + 4.62562834249462e-05 + ], + [ + 100, + 4.8881823570416964e-05 + ] + ], + "color": "#f15c80", + "marker": {} + }, + { + "name": "HUMAN (hg19)", + "data": [ + [ + 1, + 0.0 + ], + [ + 2, + 3e-06 + ], + [ + 3, + 3e-06 + ], + [ + 4, + 1e-05 + ], + [ + 5, + 8e-06 + ], + [ + 6, + 1.2000000000000002e-05 + ], + [ + 7, + 6.999999999999999e-06 + ], + [ + 8, + 9.999999999999999e-06 + ], + [ + 9, + 1.6e-05 + ], + [ + 10, + 1.5000000000000002e-05 + ], + [ + 11, + 1.9999999999999998e-05 + ], + [ + 12, + 1.6e-05 + ], + [ + 13, + 1.6e-05 + ], + [ + 14, + 2.4999999999999998e-05 + ], + [ + 15, + 2.2000000000000003e-05 + ], + [ + 16, + 2.6999999999999996e-05 + ], + [ + 17, + 3.3e-05 + ], + [ + 18, + 3.7000000000000005e-05 + ], + [ + 19, + 4.7000000000000004e-05 + ], + [ + 20, + 5.4999999999999995e-05 + ], + [ + 21, + 6.400000000000001e-05 + ], + [ + 22, + 9.3e-05 + ], + [ + 23, + 0.000166 + ], + [ + 24, + 0.000303 + ], + [ + 25, + 0.0007059999999999999 + ], + [ + 26, + 0.0016020000000000001 + ], + [ + 27, + 0.0033690000000000005 + ], + [ + 28, + 0.006167999999999999 + ], + [ + 29, + 0.010352 + ], + [ + 30, + 0.015647 + ], + [ + 31, + 0.022148 + ], + [ + 32, + 0.028808 + ], + [ + 33, + 0.035106000000000005 + ], + [ + 34, + 0.041161 + ], + [ + 35, + 0.047408 + ], + [ + 36, + 0.052698999999999996 + ], + [ + 37, + 0.057517000000000006 + ], + [ + 38, + 0.061487999999999994 + ], + [ + 39, + 0.063321 + ], + [ + 40, + 0.060248 + ], + [ + 41, + 0.055508 + ], + [ + 42, + 0.051446000000000006 + ], + [ + 43, + 0.048194 + ], + [ + 44, + 0.044423 + ], + [ + 45, + 0.040655000000000004 + ], + [ + 46, + 0.03652 + ], + [ + 47, + 0.032315 + ], + [ + 48, + 0.028137999999999996 + ], + [ + 49, + 0.02458 + ], + [ + 50, + 0.020810000000000002 + ], + [ + 51, + 0.017532 + ], + [ + 52, + 0.014506999999999997 + ], + [ + 53, + 0.012007 + ], + [ + 54, + 0.010018 + ], + [ + 55, + 0.008414999999999999 + ], + [ + 56, + 0.007258 + ], + [ + 57, + 0.006174999999999999 + ], + [ + 58, + 0.005363000000000001 + ], + [ + 59, + 0.0046159999999999994 + ], + [ + 60, + 0.003946 + ], + [ + 61, + 0.0034579999999999993 + ], + [ + 62, + 0.002915 + ], + [ + 63, + 0.0024610000000000005 + ], + [ + 64, + 0.0019950000000000002 + ], + [ + 65, + 0.0016779999999999998 + ], + [ + 66, + 0.0013500000000000003 + ], + [ + 67, + 0.001069 + ], + [ + 68, + 0.0008119999999999999 + ], + [ + 69, + 0.00064 + ], + [ + 70, + 0.000505 + ], + [ + 71, + 0.00040299999999999993 + ], + [ + 72, + 0.00032 + ], + [ + 73, + 0.000279 + ], + [ + 74, + 0.00020700000000000002 + ], + [ + 75, + 0.00020099999999999998 + ], + [ + 76, + 0.000154 + ], + [ + 77, + 0.000112 + ], + [ + 78, + 7.699999999999999e-05 + ], + [ + 79, + 6.3e-05 + ], + [ + 80, + 3.7e-05 + ], + [ + 81, + 2.8000000000000003e-05 + ], + [ + 82, + 1.6e-05 + ], + [ + 83, + 9e-06 + ], + [ + 84, + 4e-06 + ], + [ + 85, + 0.0 + ], + [ + 86, + 1e-06 + ], + [ + 87, + 0.0 + ], + [ + 88, + 0.0 + ], + [ + 89, + 0.0 + ], + [ + 90, + 0.0 + ], + [ + 91, + 0.0 + ], + [ + 92, + 0.0 + ], + [ + 93, + 0.0 + ], + [ + 94, + 0.0 + ], + [ + 95, + 0.0 + ], + [ + 96, + 0.0 + ], + [ + 97, + 0.0 + ], + [ + 98, + 0.0 + ], + [ + 99, + 0.0 + ], + [ + 100, + 0.0 + ] + ], + "color": "#000000", + "marker": {}, + "line": { + "dash": "dash", + "width": 1 + } + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "qualimap_gc_content", + "title": "Qualimap BamQC: GC content distribution", + "ylab": "Fraction of reads", + "xlab": "GC content (%)", + "ymin": 0, + "xmin": 0, + "xmax": 100, + "tt_label": "{point.x}%: {point.y:.3f}", + "extra_series": [ + { + "name": "HUMAN (hg19)", + "data": [ + [ + 1, + 0.0 + ], + [ + 2, + 3e-06 + ], + [ + 3, + 3e-06 + ], + [ + 4, + 1e-05 + ], + [ + 5, + 8e-06 + ], + [ + 6, + 1.2000000000000002e-05 + ], + [ + 7, + 6.999999999999999e-06 + ], + [ + 8, + 9.999999999999999e-06 + ], + [ + 9, + 1.6e-05 + ], + [ + 10, + 1.5000000000000002e-05 + ], + [ + 11, + 1.9999999999999998e-05 + ], + [ + 12, + 1.6e-05 + ], + [ + 13, + 1.6e-05 + ], + [ + 14, + 2.4999999999999998e-05 + ], + [ + 15, + 2.2000000000000003e-05 + ], + [ + 16, + 2.6999999999999996e-05 + ], + [ + 17, + 3.3e-05 + ], + [ + 18, + 3.7000000000000005e-05 + ], + [ + 19, + 4.7000000000000004e-05 + ], + [ + 20, + 5.4999999999999995e-05 + ], + [ + 21, + 6.400000000000001e-05 + ], + [ + 22, + 9.3e-05 + ], + [ + 23, + 0.000166 + ], + [ + 24, + 0.000303 + ], + [ + 25, + 0.0007059999999999999 + ], + [ + 26, + 0.0016020000000000001 + ], + [ + 27, + 0.0033690000000000005 + ], + [ + 28, + 0.006167999999999999 + ], + [ + 29, + 0.010352 + ], + [ + 30, + 0.015647 + ], + [ + 31, + 0.022148 + ], + [ + 32, + 0.028808 + ], + [ + 33, + 0.035106000000000005 + ], + [ + 34, + 0.041161 + ], + [ + 35, + 0.047408 + ], + [ + 36, + 0.052698999999999996 + ], + [ + 37, + 0.057517000000000006 + ], + [ + 38, + 0.061487999999999994 + ], + [ + 39, + 0.063321 + ], + [ + 40, + 0.060248 + ], + [ + 41, + 0.055508 + ], + [ + 42, + 0.051446000000000006 + ], + [ + 43, + 0.048194 + ], + [ + 44, + 0.044423 + ], + [ + 45, + 0.040655000000000004 + ], + [ + 46, + 0.03652 + ], + [ + 47, + 0.032315 + ], + [ + 48, + 0.028137999999999996 + ], + [ + 49, + 0.02458 + ], + [ + 50, + 0.020810000000000002 + ], + [ + 51, + 0.017532 + ], + [ + 52, + 0.014506999999999997 + ], + [ + 53, + 0.012007 + ], + [ + 54, + 0.010018 + ], + [ + 55, + 0.008414999999999999 + ], + [ + 56, + 0.007258 + ], + [ + 57, + 0.006174999999999999 + ], + [ + 58, + 0.005363000000000001 + ], + [ + 59, + 0.0046159999999999994 + ], + [ + 60, + 0.003946 + ], + [ + 61, + 0.0034579999999999993 + ], + [ + 62, + 0.002915 + ], + [ + 63, + 0.0024610000000000005 + ], + [ + 64, + 0.0019950000000000002 + ], + [ + 65, + 0.0016779999999999998 + ], + [ + 66, + 0.0013500000000000003 + ], + [ + 67, + 0.001069 + ], + [ + 68, + 0.0008119999999999999 + ], + [ + 69, + 0.00064 + ], + [ + 70, + 0.000505 + ], + [ + 71, + 0.00040299999999999993 + ], + [ + 72, + 0.00032 + ], + [ + 73, + 0.000279 + ], + [ + 74, + 0.00020700000000000002 + ], + [ + 75, + 0.00020099999999999998 + ], + [ + 76, + 0.000154 + ], + [ + 77, + 0.000112 + ], + [ + 78, + 7.699999999999999e-05 + ], + [ + 79, + 6.3e-05 + ], + [ + 80, + 3.7e-05 + ], + [ + 81, + 2.8000000000000003e-05 + ], + [ + 82, + 1.6e-05 + ], + [ + 83, + 9e-06 + ], + [ + 84, + 4e-06 + ], + [ + 85, + 0.0 + ], + [ + 86, + 1e-06 + ], + [ + 87, + 0.0 + ], + [ + 88, + 0.0 + ], + [ + 89, + 0.0 + ], + [ + 90, + 0.0 + ], + [ + 91, + 0.0 + ], + [ + 92, + 0.0 + ], + [ + 93, + 0.0 + ], + [ + 94, + 0.0 + ], + [ + 95, + 0.0 + ], + [ + 96, + 0.0 + ], + [ + 97, + 0.0 + ], + [ + 98, + 0.0 + ], + [ + 99, + 0.0 + ], + [ + 100, + 0.0 + ] + ], + "dashStyle": "Dash", + "lineWidth": 1, + "color": "#000000" + } + ] + } + }, + "snpeff_variant_effects_region": { + "id": "snpeff_variant_effects_region", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 387, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "SnpEff: Counts by Genomic Region", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "reversed" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "snpeff_variant_effects_region", + "dconfig": {}, + "layout": { + "title": { + "text": "SnpEff: Counts by Genomic Region" + }, + "xaxis": { + "title": { + "text": "# Reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 21162478 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Transcript", + "data": [ + 73, + 75, + 75, + 74, + 75, + 75 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.000345068677884487, + 0.0003544422100407524, + 0.00035556437144491926, + 0.00034967549641398325, + 0.0003547200180708566, + 0.00035516869423792306 + ] + }, + { + "name": "Splice Site Acceptor", + "data": [ + 363, + 372, + 361, + 371, + 362, + 376 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 0.0017158894530420379, + 0.0017580333618021316, + 0.0017114498412215445, + 0.0017531028266160513, + 0.0017121152872220011, + 0.0017805790537794542 + ] + }, + { + "name": "Splice Site Donor", + "data": [ + 513, + 499, + 494, + 503, + 530, + 492 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 0.002424934681571806, + 0.0023582221708044722, + 0.002341983993250535, + 0.0023768483067058595, + 0.00250668812770072, + 0.0023299066342007753 + ] + }, + { + "name": "Motif", + "data": [ + 4237, + 4258, + 4267, + 4252, + 4254, + 4226 + ], + "color": "0.57,0.91,0.88", + "data_pct": [ + 0.020028164221870842, + 0.020122865738046978, + 0.02022924230607294, + 0.020092165010165634, + 0.020119719424978987, + 0.020012572024659506 + ] + }, + { + "name": "Splice Site Region", + "data": [ + 13471, + 13452, + 13380, + 13452, + 13451, + 13428 + ], + "color": "0.96,0.36,0.36", + "data_pct": [ + 0.06367698849016334, + 0.06357275479290933, + 0.0634326838657736, + 0.06356533483460679, + 0.0636178528409479, + 0.06358940301635775 + ] + }, + { + "name": "UTR 5 Prime", + "data": [ + 23776, + 23824, + 23794, + 23841, + 23852, + 23835 + ], + "color": "0.17,0.56,0.56", + "data_pct": [ + 0.1123883956901584, + 0.11258974949347846, + 0.11280398205547211, + 0.11265693932440238, + 0.11281042494701429, + 0.11287261102881194 + ] + }, + { + "name": "UTR 3 Prime", + "data": [ + 65469, + 65680, + 65176, + 65612, + 65659, + 65517 + ], + "color": "0.89,0.83,0.33", + "data_pct": [ + 0.30946988044410245, + 0.31039685807302153, + 0.3089901796439208, + 0.31003930636100363, + 0.31054082222019164, + 0.31026116453848007 + ] + }, + { + "name": "Exon", + "data": [ + 192193, + 192074, + 190525, + 192191, + 192099, + 191454 + ], + "color": "0.95,0.36,0.50", + "data_pct": [ + 0.908490197378811, + 0.9077217740182328, + 0.9032520249272433, + 0.9081686936662144, + 0.9085514766852465, + 0.9066462291550309 + ] + }, + { + "name": "Downstream", + "data": [ + 1247269, + 1246085, + 1239681, + 1247406, + 1246143, + 1243319 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 5.8958008876206325, + 5.888868283981745, + 5.877151940762786, + 5.894423138915963, + 5.893758233051619, + 5.887839810016003 + ] + }, + { + "name": "Upstream", + "data": [ + 1254409, + 1254660, + 1246346, + 1253313, + 1252868, + 1250040 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 5.92955144049865, + 5.929392843329738, + 5.908749761238524, + 5.9223357491499815, + 5.925564794671973, + 5.919667660602311 + ] + }, + { + "name": "Intergenic", + "data": [ + 2060065, + 2057863, + 2047249, + 2060392, + 2057338, + 2052490 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 9.737861724741173, + 9.725246795747903, + 9.705717385016527, + 9.736062100099998, + 9.730386300504799, + 9.719735909818596 + ] + }, + { + "name": "Intron", + "data": [ + 7910832, + 7911193, + 7890065, + 7911861, + 7903237, + 7895710 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 37.394251222004, + 37.3874764130524, + 37.40568003179409, + 37.38626922612749, + 37.379151619443505, + 37.39078681041749 + ] + }, + { + "name": "Unknown", + "data": [ + 8382539, + 8389973, + 8371814, + 8389210, + 8383568, + 8375764 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 39.62399520609794, + 39.65014096402988, + 39.689583770183674, + 39.64190771988044, + 39.650925232776736, + 39.664122175000045 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "snpeff_variant_effects_region", + "title": "SnpEff: Counts by Genomic Region", + "ylab": "# Reads", + "logswitch": true + } + }, + "snpeff_variant_effects_impact": { + "id": "snpeff_variant_effects_impact", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "SnpEff: Counts by Effects Impact", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "reversed" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "snpeff_variant_effects_impact", + "dconfig": {}, + "layout": { + "title": { + "text": "SnpEff: Counts by Effects Impact" + }, + "xaxis": { + "title": { + "text": "# Reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 21162478 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "High", + "data": [ + 1309, + 1309, + 1279, + 1314, + 1319, + 1296 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 0.006187601360969773, + 0.0061861980392445975, + 0.006063557747707357, + 0.006209102733621271, + 0.006238342717806131, + 0.00613731503643131 + ] + }, + { + "name": "Moderate", + "data": [ + 38700, + 38702, + 38431, + 38739, + 38681, + 38519 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.18293366896068008, + 0.18290163217329597, + 0.18219592478666255, + 0.18305512237272026, + 0.18294566691998407, + 0.18240990577800745 + ] + }, + { + "name": "Low", + "data": [ + 8428017, + 8435386, + 8417008, + 8434737, + 8428911, + 8421056 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 39.83896826545178, + 39.864758085157625, + 39.90384211955809, + 39.857038481032326, + 39.86537949650189, + 39.87860618165903 + ] + }, + { + "name": "Modifier", + "data": [ + 12687183, + 12684611, + 12636509, + 12687688, + 12674525, + 12655855 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 59.97191046422656, + 59.94615408462983, + 59.90789839790753, + 59.95369729386133, + 59.94543649386031, + 59.932846597526535 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "snpeff_variant_effects_impact", + "title": "SnpEff: Counts by Effects Impact", + "ylab": "# Reads", + "logswitch": true + } + }, + "snpeff_effects": { + "id": "snpeff_effects", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 748, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "SnpEff: Counts by Effect Types", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "snpeff_effects", + "dconfig": {}, + "layout": { + "title": { + "text": "SnpEff: Counts by Effect Types" + }, + "xaxis": { + "title": { + "text": "# Reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 21162477 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Sequence Feature", + "data": [ + 8381858, + 8389292, + 8371134, + 8388529, + 8382886, + 8375083 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 39.62077614076042, + 39.64692450243518, + 39.686359986549235, + 39.63869163330928, + 39.64769964541241, + 39.660897243256365 + ] + }, + { + "name": "Intron Variant", + "data": [ + 7910832, + 7911193, + 7890065, + 7911861, + 7903237, + 7895710 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 37.394251222004, + 37.38747817994578, + 37.40568003179409, + 37.3862709927576, + 37.379151619443505, + 37.39078681041749 + ] + }, + { + "name": "Intergenic Region", + "data": [ + 2060065, + 2057863, + 2047249, + 2060392, + 2057338, + 2052490 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 9.737861724741173, + 9.725247255352986, + 9.705717385016527, + 9.7360625601625, + 9.730386300504799, + 9.719735909818596 + ] + }, + { + "name": "Upstream Gene Variant", + "data": [ + 1254409, + 1254660, + 1246346, + 1253313, + 1252868, + 1250040 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 5.92955144049865, + 5.929393123546698, + 5.908749761238524, + 5.922336029000764, + 5.925564794671973, + 5.919667660602311 + ] + }, + { + "name": "Downstream Gene Variant", + "data": [ + 1247269, + 1246085, + 1239681, + 1247406, + 1246143, + 1243319 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 5.8958008876206325, + 5.888868562283557, + 5.877151940762786, + 5.894423417447777, + 5.893758233051619, + 5.887839810016003 + ] + }, + { + "name": "Non Coding Exon Variant", + "data": [ + 124984, + 124929, + 123785, + 124878, + 125010, + 124583 + ], + "color": "0.95,0.36,0.50", + "data_pct": [ + 0.5907953922837633, + 0.590401506010844, + 0.5868471429241244, + 0.5900916041160966, + 0.5912473261205038, + 0.5899730857899089 + ] + }, + { + "name": "3 Prime UTR Variant", + "data": [ + 65469, + 65680, + 65176, + 65612, + 65659, + 65517 + ], + "color": "0.89,0.83,0.33", + "data_pct": [ + 0.30946988044410245, + 0.31039687274205535, + 0.3089901796439208, + 0.31003932101142984, + 0.31054082222019164, + 0.31026116453848007 + ] + }, + { + "name": "Synonymous Variant", + "data": [ + 35131, + 35115, + 34948, + 35178, + 35031, + 34988 + ], + "color": "0.17,0.56,0.56", + "data_pct": [ + 0.16606311948986183, + 0.16594985058369782, + 0.16568351537676052, + 0.166228178298788, + 0.16568262604053569, + 0.16568856365328605 + ] + }, + { + "name": "Missense Variant", + "data": [ + 30926, + 30871, + 30662, + 30977, + 30932, + 30730 + ], + "color": "0.96,0.36,0.36", + "data_pct": [ + 0.14618621825007733, + 0.1458931464436661, + 0.14536419676325485, + 0.1463770049224389, + 0.14629599465290316, + 0.14552445298575167 + ] + }, + { + "name": "5 Prime UTR Variant", + "data": [ + 20738, + 20784, + 20770, + 20798, + 20819, + 20806 + ], + "color": "0.57,0.91,0.88", + "data_pct": [ + 0.09802786632833549, + 0.09822302988841167, + 0.09846762659881299, + 0.09827772051447475, + 0.09846554741622884, + 0.0985285313641897 + ] + }, + { + "name": "Splice Region Variant+Intron Variant", + "data": [ + 10247, + 10213, + 10160, + 10215, + 10207, + 10231 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 0.04843724304496354, + 0.04826557949626387, + 0.04816712018507173, + 0.048269396819663406, + 0.04827502965932311, + 0.04844974547664255 + ] + }, + { + "name": "Tf Binding Site Variant", + "data": [ + 4237, + 4258, + 4267, + 4252, + 4254, + 4226 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 0.020028164221870842, + 0.020122866689032758, + 0.02022924230607294, + 0.0200921659595897, + 0.020119719424978987, + 0.020012572024659506 + ] + }, + { + "name": "5 Prime UTR Premature Start Codon Gain Variant", + "data": [ + 3038, + 3040, + 3024, + 3043, + 3033, + 3029 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.014360529361822898, + 0.01436672492594166, + 0.014336355456659143, + 0.014379224133356412, + 0.014344877530785442, + 0.014344079664622254 + ] + }, + { + "name": "Splice Region Variant+Non Coding Exon Variant", + "data": [ + 1865, + 1876, + 1861, + 1859, + 1870, + 1838 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 0.008815795674720113, + 0.008865781566140315, + 0.00882273727011993, + 0.008784415926358716, + 0.008844352450566691, + 0.008704000800124035 + ] + }, + { + "name": "Splice Region Variant+Synonymous Variant", + "data": [ + 904, + 904, + 899, + 910, + 915, + 892 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 0.0042731792439394, + 0.004272210306924757, + 0.004262031599053099, + 0.004300063740175595, + 0.00432758422046445, + 0.004224139670136365 + ] + }, + { + "name": "Missense Variant+Splice Region Variant", + "data": [ + 739, + 744, + 729, + 740, + 722, + 747 + ], + "color": "0.95,0.36,0.50", + "data_pct": [ + 0.0034932294925566557, + 0.003516066889769932, + 0.003456085690444615, + 0.0034967551293735603, + 0.0034147713739621126, + 0.0035374801946097137 + ] + }, + { + "name": "Intragenic Variant", + "data": [ + 675, + 675, + 674, + 675, + 676, + 675 + ], + "color": "0.89,0.83,0.33", + "data_pct": [ + 0.0031907035283839547, + 0.0031899800411219143, + 0.003195338484718341, + 0.0031896077193610184, + 0.0031972097628786542, + 0.0031965182481413076 + ] + }, + { + "name": "Splice Donor Variant+Intron Variant", + "data": [ + 513, + 498, + 494, + 502, + 530, + 492 + ], + "color": "0.17,0.56,0.56", + "data_pct": [ + 0.002424934681571806, + 0.0023534963858943903, + 0.002341983993250535, + 0.0023721230742507126, + 0.00250668812770072, + 0.0023299066342007753 + ] + }, + { + "name": "Splice Region Variant", + "data": [ + 450, + 454, + 455, + 463, + 454, + 462 + ], + "color": "0.96,0.36,0.36", + "data_pct": [ + 0.0021271356855893033, + 0.002145556946176814, + 0.002157090520099177, + 0.0021878346282431876, + 0.0021472385093889187, + 0.0021878391565056062 + ] + }, + { + "name": "Splice Acceptor Variant+Intron Variant", + "data": [ + 359, + 365, + 356, + 366, + 358, + 370 + ], + "color": "0.57,0.91,0.88", + "data_pct": [ + 0.0016969815802812442, + 0.0017249521703844427, + 0.0016877455497918833, + 0.0017294761856090851, + 0.001693196886258222, + 0.0017521655582404204 + ] + }, + { + "name": "Stop Gained", + "data": [ + 312, + 317, + 305, + 320, + 310, + 309 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 0.0014748140753419168, + 0.0014981091452379955, + 0.0014459617772093383, + 0.0015121103262155937, + 0.001466176074692874, + 0.001463295020260243 + ] + }, + { + "name": "Start Lost", + "data": [ + 61, + 61, + 61, + 61, + 61, + 61 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 0.00028834505960210555, + 0.0002882796777902767, + 0.0002891923554418677, + 0.00028824603093484754, + 0.00028850561469763, + 0.00028887053798017743 + ] + }, + { + "name": "Stop Lost", + "data": [ + 45, + 44, + 43, + 44, + 43, + 44 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.00021271356855893033, + 0.00020793943971757664, + 0.00020385690629508703, + 0.00020791516985464416, + 0.00020337281036062445, + 0.00020836563395291484 + ] + }, + { + "name": "Stop Retained Variant", + "data": [ + 45, + 42, + 42, + 43, + 42, + 43 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 0.00021271356855893033, + 0.00019848764700314134, + 0.0001991160480091548, + 0.00020318982508522044, + 0.00019864321011967971, + 0.00020363005136307587 + ] + }, + { + "name": "Initiator Codon Variant", + "data": [ + 8, + 10, + 10, + 9, + 10, + 10 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 3.7815745521587616e-05, + 4.725896357217651e-05, + 4.740858285932257e-05, + 4.252810292481357e-05, + 4.729600240944755e-05, + 4.735582589838974e-05 + ] + }, + { + "name": "Stop Lost+Splice Region Variant", + "data": [ + 8, + 9, + 8, + 8, + 6, + 8 + ], + "color": "0.95,0.36,0.50", + "data_pct": [ + 3.7815745521587616e-05, + 4.253306721495886e-05, + 3.792686628745805e-05, + 3.780275815538984e-05, + 2.837760144566853e-05, + 3.7884660718711797e-05 + ] + }, + { + "name": "Sequence Feature+Intron Variant", + "data": [ + 6, + 6, + 6, + 6, + 6, + 6 + ], + "color": "0.89,0.83,0.33", + "data_pct": [ + 2.836180914119071e-05, + 2.8355378143305906e-05, + 2.844514971559354e-05, + 2.8352068616542382e-05, + 2.837760144566853e-05, + 2.8413495539033842e-05 + ] + }, + { + "name": "Splice Acceptor Variant+Splice Donor Variant+Intron Variant", + "data": [ + 3, + 6, + 4, + 3, + 3, + 5 + ], + "color": "0.17,0.56,0.56", + "data_pct": [ + 1.4180904570595355e-05, + 2.8355378143305906e-05, + 1.8963433143729025e-05, + 1.4176034308271191e-05, + 1.4188800722834265e-05, + 2.367791294919487e-05 + ] + }, + { + "name": "Splice Region Variant+Stop Retained Variant", + "data": [ + 5, + 5, + 5, + 5, + 5, + 5 + ], + "color": "0.96,0.36,0.36", + "data_pct": [ + 2.3634840950992258e-05, + 2.3629481786088255e-05, + 2.3704291429661286e-05, + 2.362672384711865e-05, + 2.3648001204723775e-05, + 2.367791294919487e-05 + ] + }, + { + "name": "Start Lost+Splice Region Variant", + "data": [ + 4, + 4, + 4, + 4, + 4, + 4 + ], + "color": "0.57,0.91,0.88", + "data_pct": [ + 1.8907872760793808e-05, + 1.8903585428870605e-05, + 1.8963433143729025e-05, + 1.890137907769492e-05, + 1.891840096377902e-05, + 1.8942330359355898e-05 + ] + }, + { + "name": "Stop Gained+Splice Region Variant", + "data": [ + 3, + 3, + 3, + 3, + 3, + 2 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 1.4180904570595355e-05, + 1.4177689071652953e-05, + 1.422257485779677e-05, + 1.4176034308271191e-05, + 1.4188800722834265e-05, + 9.471165179677949e-06 + ] + }, + { + "name": "Splice Acceptor Variant+Splice Region Variant+Intron Variant", + "data": [ + 1, + 1, + 1, + 2, + 1, + 1 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 4.726968190198452e-06, + 4.725896357217651e-06, + 4.740858285932256e-06, + 9.45068953884746e-06, + 4.729600240944755e-06, + 4.7355825898389746e-06 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "snpeff_effects", + "title": "SnpEff: Counts by Effect Types", + "ylab": "# Reads", + "logswitch": false + } + }, + "snpeff_variant_effects_class": { + "id": "snpeff_variant_effects_class", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "SnpEff: Counts by Functional Class", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "reversed" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "snpeff_variant_effects_class", + "dconfig": {}, + "layout": { + "title": { + "text": "SnpEff: Counts by Functional Class" + }, + "xaxis": { + "title": { + "text": "# Reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 68302 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Nonsense", + "data": [ + 315, + 320, + 308, + 323, + 313, + 311 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.4619377923772932, + 0.46969719209147354, + 0.4548206559458941, + 0.4728997686744165, + 0.459726220551084, + 0.4584113320460475 + ] + }, + { + "name": "Missense", + "data": [ + 31791, + 31743, + 31517, + 31843, + 31778, + 31604 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 46.62052176973501, + 46.59249365174889, + 46.54085264106085, + 46.62088957863606, + 46.67469596380941, + 46.58402488097519 + ] + }, + { + "name": "Silent", + "data": [ + 36085, + 36066, + 35894, + 36136, + 35993, + 35928 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 52.9175404378877, + 52.937809156159645, + 53.004326702993254, + 52.90621065268952, + 52.86557781563951, + 52.95756378697875 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "snpeff_variant_effects_class", + "title": "SnpEff: Counts by Functional Class", + "ylab": "# Reads", + "logswitch": true + } + }, + "snpeff_qualities": { + "id": "snpeff_qualities", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "SnpEff: Qualities", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "snpeff_qualities", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "SnpEff: Qualities" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Values" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Count" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 30, + 1111 + ], + [ + 46, + 1972 + ], + [ + 61, + 1924 + ], + [ + 77, + 859 + ], + [ + 93, + 1002 + ], + [ + 109, + 1611 + ], + [ + 124, + 1794 + ], + [ + 140, + 1253 + ], + [ + 156, + 1502 + ], + [ + 172, + 2179 + ], + [ + 187, + 2308 + ], + [ + 203, + 2250 + ], + [ + 219, + 2756 + ], + [ + 235, + 3479 + ], + [ + 250, + 3829 + ], + [ + 266, + 3954 + ], + [ + 282, + 4317 + ], + [ + 297, + 4808 + ], + [ + 313, + 5537 + ], + [ + 329, + 5667 + ], + [ + 345, + 5970 + ], + [ + 360, + 6316 + ], + [ + 376, + 7539 + ], + [ + 392, + 6523 + ], + [ + 408, + 6581 + ], + [ + 423, + 6165 + ], + [ + 439, + 6736 + ], + [ + 455, + 6055 + ], + [ + 471, + 5883 + ], + [ + 486, + 5552 + ], + [ + 502, + 5604 + ], + [ + 518, + 4720 + ], + [ + 533, + 4476 + ], + [ + 549, + 4109 + ], + [ + 565, + 3971 + ], + [ + 581, + 3483 + ], + [ + 596, + 2992 + ], + [ + 612, + 2893 + ], + [ + 628, + 2774 + ], + [ + 644, + 2331 + ], + [ + 659, + 1985 + ], + [ + 675, + 1995 + ], + [ + 691, + 2661 + ], + [ + 707, + 1655 + ], + [ + 722, + 1545 + ], + [ + 738, + 1481 + ], + [ + 754, + 1794 + ], + [ + 769, + 1827 + ], + [ + 785, + 1596 + ], + [ + 801, + 1607 + ], + [ + 817, + 1827 + ], + [ + 832, + 1729 + ], + [ + 848, + 1899 + ], + [ + 864, + 1789 + ], + [ + 880, + 2167 + ], + [ + 895, + 2081 + ], + [ + 911, + 2138 + ], + [ + 927, + 2107 + ], + [ + 943, + 2255 + ], + [ + 958, + 2297 + ], + [ + 974, + 2203 + ], + [ + 990, + 2405 + ], + [ + 1005, + 2453 + ], + [ + 1021, + 2434 + ], + [ + 1037, + 2389 + ], + [ + 1053, + 2426 + ], + [ + 1068, + 2395 + ], + [ + 1084, + 2534 + ], + [ + 1100, + 2367 + ], + [ + 1116, + 2264 + ], + [ + 1131, + 2394 + ], + [ + 1147, + 2188 + ], + [ + 1163, + 2164 + ], + [ + 1179, + 2084 + ], + [ + 1194, + 2014 + ], + [ + 1210, + 1894 + ], + [ + 1226, + 1805 + ], + [ + 1241, + 1759 + ], + [ + 1257, + 1689 + ], + [ + 1273, + 1580 + ], + [ + 1289, + 1473 + ], + [ + 1304, + 1426 + ], + [ + 1320, + 1392 + ], + [ + 1336, + 1171 + ], + [ + 1352, + 1152 + ], + [ + 1367, + 988 + ], + [ + 1383, + 1009 + ], + [ + 1399, + 1071 + ], + [ + 1415, + 777 + ], + [ + 1430, + 753 + ], + [ + 1446, + 814 + ], + [ + 1462, + 608 + ], + [ + 1477, + 603 + ], + [ + 1493, + 567 + ], + [ + 1509, + 478 + ], + [ + 1525, + 474 + ], + [ + 1540, + 361 + ], + [ + 1556, + 391 + ], + [ + 1572, + 334 + ], + [ + 1588, + 345 + ], + [ + 1603, + 299 + ], + [ + 1619, + 225 + ], + [ + 1635, + 287 + ], + [ + 1651, + 205 + ], + [ + 1666, + 250 + ], + [ + 1682, + 176 + ], + [ + 1698, + 181 + ], + [ + 1714, + 242 + ], + [ + 1729, + 151 + ], + [ + 1745, + 155 + ], + [ + 1761, + 178 + ], + [ + 1776, + 131 + ], + [ + 1792, + 112 + ], + [ + 1808, + 95 + ], + [ + 1824, + 112 + ], + [ + 1839, + 122 + ], + [ + 1855, + 76 + ], + [ + 1871, + 89 + ], + [ + 1887, + 76 + ], + [ + 1902, + 87 + ], + [ + 1918, + 62 + ], + [ + 1934, + 77 + ], + [ + 1950, + 85 + ], + [ + 1965, + 66 + ], + [ + 1981, + 53 + ], + [ + 1997, + 48 + ], + [ + 2012, + 50 + ], + [ + 2028, + 46 + ], + [ + 2044, + 39 + ], + [ + 2060, + 29 + ], + [ + 2075, + 56 + ], + [ + 2091, + 40 + ], + [ + 2107, + 36 + ], + [ + 2123, + 36 + ], + [ + 2138, + 37 + ], + [ + 2154, + 36 + ], + [ + 2170, + 28 + ], + [ + 2186, + 34 + ], + [ + 2201, + 46 + ], + [ + 2217, + 23 + ], + [ + 2233, + 15 + ], + [ + 2248, + 23 + ], + [ + 2264, + 21 + ], + [ + 2280, + 31 + ], + [ + 2296, + 26 + ], + [ + 2311, + 50 + ], + [ + 2327, + 20 + ], + [ + 2343, + 36 + ], + [ + 2359, + 24 + ], + [ + 2374, + 23 + ], + [ + 2390, + 24 + ], + [ + 2406, + 23 + ], + [ + 2422, + 16 + ], + [ + 2437, + 11 + ], + [ + 2453, + 19 + ], + [ + 2469, + 18 + ], + [ + 2484, + 22 + ], + [ + 2500, + 16 + ], + [ + 2516, + 19 + ], + [ + 2532, + 20 + ], + [ + 2547, + 21 + ], + [ + 2563, + 18 + ], + [ + 2579, + 14 + ], + [ + 2595, + 19 + ], + [ + 2610, + 21 + ], + [ + 2626, + 16 + ], + [ + 2642, + 17 + ], + [ + 2658, + 28 + ], + [ + 2673, + 10 + ], + [ + 2689, + 22 + ], + [ + 2705, + 16 + ], + [ + 2720, + 11 + ], + [ + 2736, + 27 + ], + [ + 2752, + 15 + ], + [ + 2768, + 11 + ], + [ + 2783, + 7 + ], + [ + 2799, + 12 + ], + [ + 2815, + 18 + ], + [ + 2831, + 13 + ], + [ + 2846, + 11 + ], + [ + 2862, + 16 + ], + [ + 2878, + 6 + ], + [ + 2894, + 27 + ], + [ + 2909, + 7 + ], + [ + 2925, + 21 + ], + [ + 2941, + 16 + ], + [ + 2956, + 13 + ], + [ + 2972, + 24 + ], + [ + 2988, + 18 + ], + [ + 3004, + 6 + ], + [ + 3019, + 13 + ], + [ + 3035, + 13 + ], + [ + 3051, + 16 + ], + [ + 3067, + 10 + ], + [ + 3082, + 8 + ], + [ + 3098, + 13 + ], + [ + 3114, + 8 + ], + [ + 3130, + 8 + ], + [ + 3145, + 9 + ], + [ + 3161, + 9 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 30, + 1137 + ], + [ + 47, + 749 + ], + [ + 64, + 1558 + ], + [ + 80, + 789 + ], + [ + 97, + 1559 + ], + [ + 114, + 973 + ], + [ + 131, + 886 + ], + [ + 147, + 1092 + ], + [ + 164, + 1111 + ], + [ + 181, + 1641 + ], + [ + 198, + 1656 + ], + [ + 215, + 1792 + ], + [ + 231, + 2214 + ], + [ + 248, + 2457 + ], + [ + 265, + 3098 + ], + [ + 282, + 3385 + ], + [ + 298, + 3965 + ], + [ + 315, + 4341 + ], + [ + 332, + 4756 + ], + [ + 349, + 5332 + ], + [ + 366, + 5488 + ], + [ + 382, + 6150 + ], + [ + 399, + 6189 + ], + [ + 416, + 6027 + ], + [ + 433, + 6599 + ], + [ + 449, + 6267 + ], + [ + 466, + 7087 + ], + [ + 483, + 5913 + ], + [ + 500, + 5824 + ], + [ + 517, + 5719 + ], + [ + 533, + 5183 + ], + [ + 550, + 5101 + ], + [ + 567, + 4503 + ], + [ + 584, + 3956 + ], + [ + 600, + 3828 + ], + [ + 617, + 3255 + ], + [ + 634, + 3417 + ], + [ + 651, + 2704 + ], + [ + 668, + 2448 + ], + [ + 684, + 2220 + ], + [ + 701, + 1875 + ], + [ + 718, + 2036 + ], + [ + 735, + 1670 + ], + [ + 751, + 1826 + ], + [ + 768, + 1477 + ], + [ + 785, + 1348 + ], + [ + 802, + 1599 + ], + [ + 819, + 1358 + ], + [ + 835, + 1568 + ], + [ + 852, + 1419 + ], + [ + 869, + 1449 + ], + [ + 886, + 1675 + ], + [ + 903, + 1606 + ], + [ + 919, + 1768 + ], + [ + 936, + 1780 + ], + [ + 953, + 1757 + ], + [ + 970, + 1900 + ], + [ + 986, + 1894 + ], + [ + 1003, + 1952 + ], + [ + 1020, + 2073 + ], + [ + 1037, + 2138 + ], + [ + 1054, + 2225 + ], + [ + 1070, + 2232 + ], + [ + 1087, + 2212 + ], + [ + 1104, + 2325 + ], + [ + 1121, + 2287 + ], + [ + 1137, + 2373 + ], + [ + 1154, + 2261 + ], + [ + 1171, + 2244 + ], + [ + 1188, + 2262 + ], + [ + 1205, + 2155 + ], + [ + 1221, + 2277 + ], + [ + 1238, + 2094 + ], + [ + 1255, + 2138 + ], + [ + 1272, + 2101 + ], + [ + 1288, + 1903 + ], + [ + 1305, + 1818 + ], + [ + 1322, + 1751 + ], + [ + 1339, + 1655 + ], + [ + 1356, + 1622 + ], + [ + 1372, + 1453 + ], + [ + 1389, + 1388 + ], + [ + 1406, + 1322 + ], + [ + 1423, + 1212 + ], + [ + 1439, + 1140 + ], + [ + 1456, + 1930 + ], + [ + 1473, + 1001 + ], + [ + 1490, + 1008 + ], + [ + 1507, + 821 + ], + [ + 1523, + 745 + ], + [ + 1540, + 679 + ], + [ + 1557, + 660 + ], + [ + 1574, + 613 + ], + [ + 1590, + 622 + ], + [ + 1607, + 479 + ], + [ + 1624, + 572 + ], + [ + 1641, + 350 + ], + [ + 1658, + 389 + ], + [ + 1674, + 389 + ], + [ + 1691, + 321 + ], + [ + 1708, + 277 + ], + [ + 1725, + 269 + ], + [ + 1741, + 216 + ], + [ + 1758, + 256 + ], + [ + 1775, + 227 + ], + [ + 1792, + 209 + ], + [ + 1809, + 187 + ], + [ + 1825, + 161 + ], + [ + 1842, + 147 + ], + [ + 1859, + 181 + ], + [ + 1876, + 124 + ], + [ + 1892, + 163 + ], + [ + 1909, + 113 + ], + [ + 1926, + 133 + ], + [ + 1943, + 101 + ], + [ + 1960, + 92 + ], + [ + 1976, + 93 + ], + [ + 1993, + 94 + ], + [ + 2010, + 86 + ], + [ + 2027, + 76 + ], + [ + 2043, + 71 + ], + [ + 2060, + 92 + ], + [ + 2077, + 64 + ], + [ + 2094, + 49 + ], + [ + 2111, + 65 + ], + [ + 2127, + 60 + ], + [ + 2144, + 54 + ], + [ + 2161, + 57 + ], + [ + 2178, + 34 + ], + [ + 2194, + 46 + ], + [ + 2211, + 49 + ], + [ + 2228, + 29 + ], + [ + 2245, + 34 + ], + [ + 2262, + 42 + ], + [ + 2278, + 33 + ], + [ + 2295, + 43 + ], + [ + 2312, + 24 + ], + [ + 2329, + 28 + ], + [ + 2345, + 39 + ], + [ + 2362, + 20 + ], + [ + 2379, + 28 + ], + [ + 2396, + 27 + ], + [ + 2413, + 27 + ], + [ + 2429, + 27 + ], + [ + 2446, + 36 + ], + [ + 2463, + 20 + ], + [ + 2480, + 30 + ], + [ + 2496, + 30 + ], + [ + 2513, + 21 + ], + [ + 2530, + 21 + ], + [ + 2547, + 20 + ], + [ + 2564, + 17 + ], + [ + 2580, + 22 + ], + [ + 2597, + 21 + ], + [ + 2614, + 20 + ], + [ + 2631, + 16 + ], + [ + 2648, + 22 + ], + [ + 2664, + 19 + ], + [ + 2681, + 14 + ], + [ + 2698, + 14 + ], + [ + 2715, + 26 + ], + [ + 2731, + 19 + ], + [ + 2748, + 19 + ], + [ + 2765, + 13 + ], + [ + 2782, + 10 + ], + [ + 2799, + 24 + ], + [ + 2815, + 9 + ], + [ + 2832, + 25 + ], + [ + 2849, + 15 + ], + [ + 2866, + 16 + ], + [ + 2882, + 20 + ], + [ + 2899, + 6 + ], + [ + 2916, + 18 + ], + [ + 2933, + 20 + ], + [ + 2950, + 16 + ], + [ + 2966, + 10 + ], + [ + 2983, + 11 + ], + [ + 3000, + 11 + ], + [ + 3017, + 9 + ], + [ + 3033, + 15 + ], + [ + 3050, + 12 + ], + [ + 3067, + 6 + ], + [ + 3084, + 25 + ], + [ + 3101, + 9 + ], + [ + 3117, + 17 + ], + [ + 3134, + 9 + ], + [ + 3151, + 12 + ], + [ + 3168, + 14 + ], + [ + 3184, + 13 + ], + [ + 3208, + 7 + ], + [ + 3226, + 9 + ], + [ + 3248, + 15 + ], + [ + 3265, + 8 + ], + [ + 3281, + 8 + ], + [ + 3298, + 5 + ], + [ + 3315, + 16 + ], + [ + 3332, + 6 + ], + [ + 3348, + 11 + ], + [ + 3365, + 12 + ], + [ + 3382, + 16 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 30, + 1183 + ], + [ + 47, + 776 + ], + [ + 64, + 1575 + ], + [ + 81, + 918 + ], + [ + 98, + 830 + ], + [ + 115, + 1357 + ], + [ + 132, + 1137 + ], + [ + 149, + 960 + ], + [ + 166, + 1523 + ], + [ + 183, + 1396 + ], + [ + 200, + 1532 + ], + [ + 217, + 2152 + ], + [ + 234, + 2146 + ], + [ + 251, + 2543 + ], + [ + 268, + 3171 + ], + [ + 285, + 3436 + ], + [ + 302, + 3821 + ], + [ + 319, + 4578 + ], + [ + 336, + 4800 + ], + [ + 353, + 5091 + ], + [ + 370, + 5791 + ], + [ + 387, + 5727 + ], + [ + 404, + 6045 + ], + [ + 421, + 7103 + ], + [ + 438, + 6461 + ], + [ + 455, + 6097 + ], + [ + 472, + 6443 + ], + [ + 489, + 5931 + ], + [ + 506, + 5672 + ], + [ + 523, + 5515 + ], + [ + 540, + 5113 + ], + [ + 557, + 4496 + ], + [ + 574, + 4701 + ], + [ + 591, + 3972 + ], + [ + 609, + 3778 + ], + [ + 626, + 3201 + ], + [ + 643, + 3368 + ], + [ + 660, + 2697 + ], + [ + 677, + 2308 + ], + [ + 694, + 2345 + ], + [ + 711, + 1965 + ], + [ + 728, + 1656 + ], + [ + 745, + 1895 + ], + [ + 762, + 1479 + ], + [ + 779, + 1368 + ], + [ + 796, + 1562 + ], + [ + 813, + 1399 + ], + [ + 830, + 1299 + ], + [ + 847, + 1565 + ], + [ + 864, + 1501 + ], + [ + 881, + 1487 + ], + [ + 898, + 1619 + ], + [ + 915, + 1602 + ], + [ + 932, + 1591 + ], + [ + 949, + 1786 + ], + [ + 966, + 1843 + ], + [ + 983, + 1865 + ], + [ + 1000, + 1914 + ], + [ + 1017, + 2091 + ], + [ + 1034, + 2044 + ], + [ + 1051, + 2643 + ], + [ + 1068, + 2183 + ], + [ + 1085, + 2408 + ], + [ + 1102, + 2338 + ], + [ + 1119, + 2402 + ], + [ + 1136, + 2194 + ], + [ + 1153, + 2304 + ], + [ + 1170, + 2327 + ], + [ + 1187, + 2284 + ], + [ + 1204, + 2193 + ], + [ + 1221, + 2310 + ], + [ + 1238, + 2105 + ], + [ + 1255, + 2110 + ], + [ + 1272, + 2109 + ], + [ + 1289, + 1964 + ], + [ + 1306, + 1827 + ], + [ + 1323, + 1792 + ], + [ + 1340, + 1769 + ], + [ + 1357, + 1624 + ], + [ + 1374, + 1484 + ], + [ + 1391, + 1415 + ], + [ + 1408, + 1321 + ], + [ + 1425, + 1305 + ], + [ + 1442, + 1187 + ], + [ + 1459, + 1045 + ], + [ + 1476, + 984 + ], + [ + 1493, + 891 + ], + [ + 1510, + 856 + ], + [ + 1527, + 779 + ], + [ + 1544, + 726 + ], + [ + 1561, + 600 + ], + [ + 1578, + 733 + ], + [ + 1595, + 524 + ], + [ + 1612, + 511 + ], + [ + 1629, + 422 + ], + [ + 1646, + 504 + ], + [ + 1663, + 390 + ], + [ + 1680, + 396 + ], + [ + 1697, + 322 + ], + [ + 1714, + 441 + ], + [ + 1732, + 237 + ], + [ + 1749, + 288 + ], + [ + 1766, + 274 + ], + [ + 1783, + 227 + ], + [ + 1800, + 215 + ], + [ + 1817, + 175 + ], + [ + 1834, + 172 + ], + [ + 1851, + 223 + ], + [ + 1868, + 136 + ], + [ + 1885, + 165 + ], + [ + 1902, + 140 + ], + [ + 1919, + 109 + ], + [ + 1936, + 96 + ], + [ + 1953, + 95 + ], + [ + 1970, + 119 + ], + [ + 1987, + 91 + ], + [ + 2004, + 107 + ], + [ + 2021, + 101 + ], + [ + 2038, + 80 + ], + [ + 2055, + 84 + ], + [ + 2072, + 82 + ], + [ + 2089, + 56 + ], + [ + 2106, + 71 + ], + [ + 2123, + 53 + ], + [ + 2140, + 58 + ], + [ + 2157, + 58 + ], + [ + 2174, + 51 + ], + [ + 2191, + 37 + ], + [ + 2208, + 45 + ], + [ + 2225, + 44 + ], + [ + 2242, + 41 + ], + [ + 2259, + 37 + ], + [ + 2276, + 35 + ], + [ + 2293, + 40 + ], + [ + 2310, + 31 + ], + [ + 2327, + 24 + ], + [ + 2344, + 45 + ], + [ + 2361, + 30 + ], + [ + 2378, + 29 + ], + [ + 2395, + 20 + ], + [ + 2412, + 30 + ], + [ + 2429, + 29 + ], + [ + 2446, + 50 + ], + [ + 2463, + 32 + ], + [ + 2480, + 29 + ], + [ + 2497, + 25 + ], + [ + 2514, + 37 + ], + [ + 2531, + 17 + ], + [ + 2548, + 25 + ], + [ + 2565, + 33 + ], + [ + 2582, + 23 + ], + [ + 2599, + 15 + ], + [ + 2616, + 31 + ], + [ + 2633, + 17 + ], + [ + 2650, + 17 + ], + [ + 2667, + 27 + ], + [ + 2684, + 18 + ], + [ + 2701, + 21 + ], + [ + 2718, + 28 + ], + [ + 2735, + 17 + ], + [ + 2752, + 13 + ], + [ + 2769, + 23 + ], + [ + 2786, + 24 + ], + [ + 2803, + 16 + ], + [ + 2820, + 8 + ], + [ + 2837, + 11 + ], + [ + 2855, + 13 + ], + [ + 2872, + 17 + ], + [ + 2889, + 23 + ], + [ + 2906, + 18 + ], + [ + 2923, + 21 + ], + [ + 2940, + 13 + ], + [ + 2957, + 16 + ], + [ + 2974, + 13 + ], + [ + 2991, + 19 + ], + [ + 3008, + 13 + ], + [ + 3025, + 15 + ], + [ + 3042, + 16 + ], + [ + 3059, + 17 + ], + [ + 3076, + 12 + ], + [ + 3093, + 19 + ], + [ + 3110, + 10 + ], + [ + 3127, + 14 + ], + [ + 3144, + 10 + ], + [ + 3161, + 8 + ], + [ + 3178, + 13 + ], + [ + 3195, + 18 + ], + [ + 3219, + 23 + ], + [ + 3242, + 11 + ], + [ + 3259, + 6 + ], + [ + 3276, + 9 + ], + [ + 3293, + 12 + ], + [ + 3310, + 13 + ], + [ + 3327, + 16 + ], + [ + 3344, + 12 + ], + [ + 3361, + 16 + ], + [ + 3378, + 9 + ], + [ + 3395, + 13 + ], + [ + 3412, + 8 + ], + [ + 3429, + 14 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 30, + 1346 + ], + [ + 44, + 941 + ], + [ + 57, + 1119 + ], + [ + 71, + 1181 + ], + [ + 85, + 2069 + ], + [ + 98, + 1435 + ], + [ + 112, + 2432 + ], + [ + 126, + 1742 + ], + [ + 140, + 2122 + ], + [ + 153, + 2440 + ], + [ + 167, + 2901 + ], + [ + 181, + 3723 + ], + [ + 194, + 3725 + ], + [ + 208, + 4978 + ], + [ + 222, + 4696 + ], + [ + 235, + 6096 + ], + [ + 249, + 5491 + ], + [ + 263, + 6312 + ], + [ + 276, + 6326 + ], + [ + 290, + 6820 + ], + [ + 304, + 7776 + ], + [ + 318, + 7124 + ], + [ + 331, + 8588 + ], + [ + 345, + 6947 + ], + [ + 359, + 6877 + ], + [ + 372, + 6959 + ], + [ + 386, + 6669 + ], + [ + 400, + 7126 + ], + [ + 413, + 5961 + ], + [ + 427, + 6404 + ], + [ + 441, + 5303 + ], + [ + 454, + 5306 + ], + [ + 468, + 4555 + ], + [ + 482, + 3857 + ], + [ + 496, + 4019 + ], + [ + 509, + 3476 + ], + [ + 523, + 3676 + ], + [ + 537, + 2981 + ], + [ + 550, + 3158 + ], + [ + 564, + 2421 + ], + [ + 578, + 2148 + ], + [ + 591, + 2114 + ], + [ + 605, + 2205 + ], + [ + 619, + 2155 + ], + [ + 633, + 2099 + ], + [ + 646, + 3171 + ], + [ + 660, + 1912 + ], + [ + 674, + 2155 + ], + [ + 687, + 1855 + ], + [ + 701, + 2204 + ], + [ + 715, + 2103 + ], + [ + 728, + 2222 + ], + [ + 742, + 2575 + ], + [ + 756, + 2456 + ], + [ + 769, + 2912 + ], + [ + 783, + 2163 + ], + [ + 797, + 2561 + ], + [ + 811, + 2698 + ], + [ + 824, + 2754 + ], + [ + 838, + 2979 + ], + [ + 852, + 2582 + ], + [ + 865, + 2739 + ], + [ + 879, + 2736 + ], + [ + 893, + 2665 + ], + [ + 906, + 3063 + ], + [ + 920, + 2550 + ], + [ + 934, + 2661 + ], + [ + 947, + 2461 + ], + [ + 961, + 3954 + ], + [ + 975, + 2592 + ], + [ + 989, + 2294 + ], + [ + 1002, + 2421 + ], + [ + 1016, + 2124 + ], + [ + 1030, + 2044 + ], + [ + 1043, + 2059 + ], + [ + 1057, + 1894 + ], + [ + 1071, + 1987 + ], + [ + 1084, + 1890 + ], + [ + 1098, + 1550 + ], + [ + 1112, + 1475 + ], + [ + 1125, + 1431 + ], + [ + 1139, + 1428 + ], + [ + 1153, + 1248 + ], + [ + 1167, + 1168 + ], + [ + 1180, + 1031 + ], + [ + 1194, + 966 + ], + [ + 1208, + 998 + ], + [ + 1221, + 912 + ], + [ + 1235, + 706 + ], + [ + 1249, + 685 + ], + [ + 1262, + 687 + ], + [ + 1276, + 2140 + ], + [ + 1290, + 533 + ], + [ + 1303, + 493 + ], + [ + 1317, + 495 + ], + [ + 1331, + 413 + ], + [ + 1345, + 374 + ], + [ + 1358, + 330 + ], + [ + 1372, + 286 + ], + [ + 1386, + 329 + ], + [ + 1399, + 482 + ], + [ + 1413, + 243 + ], + [ + 1427, + 176 + ], + [ + 1440, + 245 + ], + [ + 1454, + 190 + ], + [ + 1468, + 197 + ], + [ + 1482, + 162 + ], + [ + 1495, + 128 + ], + [ + 1509, + 143 + ], + [ + 1523, + 147 + ], + [ + 1536, + 194 + ], + [ + 1550, + 102 + ], + [ + 1564, + 105 + ], + [ + 1577, + 153 + ], + [ + 1591, + 689 + ], + [ + 1605, + 102 + ], + [ + 1618, + 89 + ], + [ + 1632, + 85 + ], + [ + 1646, + 76 + ], + [ + 1660, + 86 + ], + [ + 1673, + 67 + ], + [ + 1687, + 53 + ], + [ + 1701, + 81 + ], + [ + 1714, + 127 + ], + [ + 1728, + 49 + ], + [ + 1742, + 43 + ], + [ + 1755, + 74 + ], + [ + 1769, + 45 + ], + [ + 1783, + 52 + ], + [ + 1796, + 53 + ], + [ + 1810, + 34 + ], + [ + 1824, + 53 + ], + [ + 1838, + 42 + ], + [ + 1851, + 59 + ], + [ + 1865, + 27 + ], + [ + 1879, + 39 + ], + [ + 1892, + 26 + ], + [ + 1906, + 109 + ], + [ + 1920, + 39 + ], + [ + 1933, + 24 + ], + [ + 1947, + 33 + ], + [ + 1961, + 30 + ], + [ + 1974, + 28 + ], + [ + 1988, + 31 + ], + [ + 2002, + 26 + ], + [ + 2016, + 39 + ], + [ + 2029, + 22 + ], + [ + 2043, + 23 + ], + [ + 2057, + 17 + ], + [ + 2070, + 23 + ], + [ + 2084, + 21 + ], + [ + 2098, + 26 + ], + [ + 2111, + 26 + ], + [ + 2125, + 12 + ], + [ + 2139, + 27 + ], + [ + 2152, + 19 + ], + [ + 2166, + 28 + ], + [ + 2180, + 15 + ], + [ + 2194, + 22 + ], + [ + 2207, + 11 + ], + [ + 2221, + 26 + ], + [ + 2235, + 25 + ], + [ + 2248, + 15 + ], + [ + 2262, + 22 + ], + [ + 2276, + 16 + ], + [ + 2289, + 28 + ], + [ + 2303, + 15 + ], + [ + 2317, + 22 + ], + [ + 2331, + 23 + ], + [ + 2344, + 19 + ], + [ + 2358, + 24 + ], + [ + 2372, + 15 + ], + [ + 2385, + 17 + ], + [ + 2399, + 21 + ], + [ + 2413, + 21 + ], + [ + 2426, + 11 + ], + [ + 2440, + 14 + ], + [ + 2454, + 16 + ], + [ + 2467, + 16 + ], + [ + 2481, + 18 + ], + [ + 2495, + 11 + ], + [ + 2509, + 6 + ], + [ + 2522, + 13 + ], + [ + 2536, + 10 + ], + [ + 2550, + 21 + ], + [ + 2563, + 11 + ], + [ + 2577, + 23 + ], + [ + 2591, + 18 + ], + [ + 2604, + 18 + ], + [ + 2618, + 15 + ], + [ + 2632, + 15 + ], + [ + 2645, + 9 + ], + [ + 2659, + 9 + ], + [ + 2673, + 18 + ], + [ + 2687, + 11 + ], + [ + 2700, + 15 + ], + [ + 2714, + 9 + ], + [ + 2728, + 11 + ], + [ + 2741, + 10 + ], + [ + 2755, + 19 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 30, + 1140 + ], + [ + 46, + 1950 + ], + [ + 62, + 2279 + ], + [ + 79, + 1583 + ], + [ + 95, + 900 + ], + [ + 111, + 1032 + ], + [ + 127, + 1589 + ], + [ + 143, + 1070 + ], + [ + 159, + 1345 + ], + [ + 176, + 1366 + ], + [ + 192, + 1859 + ], + [ + 208, + 2464 + ], + [ + 224, + 2444 + ], + [ + 240, + 2879 + ], + [ + 257, + 3249 + ], + [ + 273, + 3923 + ], + [ + 289, + 4473 + ], + [ + 305, + 4678 + ], + [ + 321, + 5049 + ], + [ + 337, + 5951 + ], + [ + 354, + 5960 + ], + [ + 370, + 6525 + ], + [ + 386, + 6209 + ], + [ + 402, + 6468 + ], + [ + 418, + 6972 + ], + [ + 435, + 6590 + ], + [ + 451, + 6572 + ], + [ + 467, + 5942 + ], + [ + 483, + 5690 + ], + [ + 499, + 6053 + ], + [ + 515, + 5042 + ], + [ + 532, + 5023 + ], + [ + 548, + 4269 + ], + [ + 564, + 4105 + ], + [ + 580, + 4000 + ], + [ + 596, + 3140 + ], + [ + 613, + 3188 + ], + [ + 629, + 2624 + ], + [ + 645, + 2384 + ], + [ + 661, + 2463 + ], + [ + 677, + 1927 + ], + [ + 693, + 1834 + ], + [ + 710, + 1680 + ], + [ + 726, + 1592 + ], + [ + 742, + 1785 + ], + [ + 758, + 1363 + ], + [ + 774, + 1530 + ], + [ + 791, + 1422 + ], + [ + 807, + 1547 + ], + [ + 823, + 1638 + ], + [ + 839, + 1590 + ], + [ + 855, + 1594 + ], + [ + 871, + 2614 + ], + [ + 888, + 1821 + ], + [ + 904, + 2057 + ], + [ + 920, + 1772 + ], + [ + 936, + 2060 + ], + [ + 952, + 2045 + ], + [ + 968, + 2109 + ], + [ + 985, + 2100 + ], + [ + 1001, + 2148 + ], + [ + 1017, + 2217 + ], + [ + 1033, + 2233 + ], + [ + 1049, + 2288 + ], + [ + 1066, + 2380 + ], + [ + 1082, + 2452 + ], + [ + 1098, + 2403 + ], + [ + 1114, + 2312 + ], + [ + 1130, + 2455 + ], + [ + 1146, + 2328 + ], + [ + 1163, + 2240 + ], + [ + 1179, + 2248 + ], + [ + 1195, + 2125 + ], + [ + 1211, + 2076 + ], + [ + 1227, + 1957 + ], + [ + 1244, + 1838 + ], + [ + 1260, + 1892 + ], + [ + 1276, + 2790 + ], + [ + 1292, + 1586 + ], + [ + 1308, + 1646 + ], + [ + 1324, + 1345 + ], + [ + 1341, + 1312 + ], + [ + 1357, + 1361 + ], + [ + 1373, + 1093 + ], + [ + 1389, + 1193 + ], + [ + 1405, + 937 + ], + [ + 1422, + 973 + ], + [ + 1438, + 849 + ], + [ + 1454, + 845 + ], + [ + 1470, + 768 + ], + [ + 1486, + 663 + ], + [ + 1502, + 591 + ], + [ + 1519, + 519 + ], + [ + 1535, + 630 + ], + [ + 1551, + 449 + ], + [ + 1567, + 450 + ], + [ + 1583, + 372 + ], + [ + 1600, + 322 + ], + [ + 1616, + 336 + ], + [ + 1632, + 323 + ], + [ + 1648, + 279 + ], + [ + 1664, + 214 + ], + [ + 1680, + 248 + ], + [ + 1697, + 186 + ], + [ + 1713, + 265 + ], + [ + 1729, + 151 + ], + [ + 1745, + 176 + ], + [ + 1761, + 225 + ], + [ + 1778, + 129 + ], + [ + 1794, + 152 + ], + [ + 1810, + 105 + ], + [ + 1826, + 111 + ], + [ + 1842, + 112 + ], + [ + 1858, + 106 + ], + [ + 1875, + 84 + ], + [ + 1891, + 102 + ], + [ + 1907, + 74 + ], + [ + 1923, + 84 + ], + [ + 1939, + 132 + ], + [ + 1956, + 72 + ], + [ + 1972, + 100 + ], + [ + 1988, + 59 + ], + [ + 2004, + 65 + ], + [ + 2020, + 58 + ], + [ + 2036, + 54 + ], + [ + 2053, + 64 + ], + [ + 2069, + 46 + ], + [ + 2085, + 46 + ], + [ + 2101, + 30 + ], + [ + 2117, + 35 + ], + [ + 2134, + 31 + ], + [ + 2150, + 25 + ], + [ + 2166, + 58 + ], + [ + 2182, + 31 + ], + [ + 2198, + 46 + ], + [ + 2214, + 41 + ], + [ + 2231, + 32 + ], + [ + 2247, + 34 + ], + [ + 2263, + 31 + ], + [ + 2279, + 27 + ], + [ + 2295, + 34 + ], + [ + 2312, + 21 + ], + [ + 2328, + 45 + ], + [ + 2344, + 22 + ], + [ + 2360, + 16 + ], + [ + 2376, + 30 + ], + [ + 2392, + 23 + ], + [ + 2409, + 23 + ], + [ + 2425, + 24 + ], + [ + 2441, + 14 + ], + [ + 2457, + 38 + ], + [ + 2473, + 20 + ], + [ + 2489, + 21 + ], + [ + 2506, + 19 + ], + [ + 2522, + 24 + ], + [ + 2538, + 26 + ], + [ + 2554, + 8 + ], + [ + 2570, + 18 + ], + [ + 2587, + 23 + ], + [ + 2603, + 24 + ], + [ + 2619, + 22 + ], + [ + 2635, + 15 + ], + [ + 2651, + 21 + ], + [ + 2667, + 33 + ], + [ + 2684, + 11 + ], + [ + 2700, + 19 + ], + [ + 2716, + 19 + ], + [ + 2732, + 11 + ], + [ + 2748, + 19 + ], + [ + 2765, + 23 + ], + [ + 2781, + 23 + ], + [ + 2797, + 6 + ], + [ + 2813, + 10 + ], + [ + 2829, + 19 + ], + [ + 2845, + 16 + ], + [ + 2862, + 15 + ], + [ + 2878, + 12 + ], + [ + 2894, + 15 + ], + [ + 2910, + 12 + ], + [ + 2926, + 11 + ], + [ + 2943, + 10 + ], + [ + 2959, + 16 + ], + [ + 2975, + 13 + ], + [ + 2991, + 15 + ], + [ + 3007, + 10 + ], + [ + 3023, + 9 + ], + [ + 3040, + 11 + ], + [ + 3056, + 17 + ], + [ + 3072, + 21 + ], + [ + 3088, + 8 + ], + [ + 3104, + 10 + ], + [ + 3121, + 14 + ], + [ + 3137, + 14 + ], + [ + 3153, + 16 + ], + [ + 3169, + 14 + ], + [ + 3185, + 18 + ], + [ + 3208, + 6 + ], + [ + 3226, + 15 + ], + [ + 3247, + 5 + ], + [ + 3263, + 10 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 30, + 1218 + ], + [ + 47, + 798 + ], + [ + 64, + 1582 + ], + [ + 82, + 1561 + ], + [ + 99, + 1012 + ], + [ + 116, + 774 + ], + [ + 133, + 1367 + ], + [ + 150, + 1032 + ], + [ + 167, + 1111 + ], + [ + 185, + 1328 + ], + [ + 202, + 1969 + ], + [ + 219, + 1794 + ], + [ + 236, + 2040 + ], + [ + 253, + 2714 + ], + [ + 270, + 2852 + ], + [ + 288, + 3113 + ], + [ + 305, + 3637 + ], + [ + 322, + 4354 + ], + [ + 339, + 4589 + ], + [ + 356, + 4898 + ], + [ + 374, + 5198 + ], + [ + 391, + 5858 + ], + [ + 408, + 5806 + ], + [ + 425, + 5992 + ], + [ + 442, + 6407 + ], + [ + 459, + 6058 + ], + [ + 477, + 6234 + ], + [ + 494, + 5868 + ], + [ + 511, + 6576 + ], + [ + 528, + 5510 + ], + [ + 545, + 5087 + ], + [ + 562, + 4981 + ], + [ + 580, + 4752 + ], + [ + 597, + 4088 + ], + [ + 614, + 3637 + ], + [ + 631, + 3656 + ], + [ + 648, + 3004 + ], + [ + 666, + 2617 + ], + [ + 683, + 2285 + ], + [ + 700, + 2387 + ], + [ + 717, + 2035 + ], + [ + 734, + 1786 + ], + [ + 751, + 1865 + ], + [ + 769, + 1690 + ], + [ + 786, + 1439 + ], + [ + 803, + 1320 + ], + [ + 820, + 1522 + ], + [ + 837, + 1413 + ], + [ + 854, + 1314 + ], + [ + 872, + 1302 + ], + [ + 889, + 1457 + ], + [ + 906, + 1506 + ], + [ + 923, + 1420 + ], + [ + 940, + 1633 + ], + [ + 957, + 1623 + ], + [ + 975, + 1722 + ], + [ + 992, + 1711 + ], + [ + 1009, + 1859 + ], + [ + 1026, + 1973 + ], + [ + 1043, + 1904 + ], + [ + 1061, + 2016 + ], + [ + 1078, + 2091 + ], + [ + 1095, + 2219 + ], + [ + 1112, + 2216 + ], + [ + 1129, + 2209 + ], + [ + 1146, + 2257 + ], + [ + 1164, + 2310 + ], + [ + 1181, + 2289 + ], + [ + 1198, + 2199 + ], + [ + 1215, + 2281 + ], + [ + 1232, + 2184 + ], + [ + 1249, + 2162 + ], + [ + 1267, + 2100 + ], + [ + 1284, + 2131 + ], + [ + 1301, + 1995 + ], + [ + 1318, + 1927 + ], + [ + 1335, + 1809 + ], + [ + 1353, + 1891 + ], + [ + 1370, + 1607 + ], + [ + 1387, + 1538 + ], + [ + 1404, + 1448 + ], + [ + 1421, + 1454 + ], + [ + 1438, + 1307 + ], + [ + 1456, + 2065 + ], + [ + 1473, + 1111 + ], + [ + 1490, + 1081 + ], + [ + 1507, + 1031 + ], + [ + 1524, + 992 + ], + [ + 1541, + 865 + ], + [ + 1559, + 785 + ], + [ + 1576, + 727 + ], + [ + 1593, + 591 + ], + [ + 1610, + 635 + ], + [ + 1627, + 544 + ], + [ + 1645, + 498 + ], + [ + 1662, + 459 + ], + [ + 1679, + 432 + ], + [ + 1696, + 333 + ], + [ + 1713, + 457 + ], + [ + 1730, + 270 + ], + [ + 1748, + 321 + ], + [ + 1765, + 241 + ], + [ + 1782, + 235 + ], + [ + 1799, + 208 + ], + [ + 1816, + 747 + ], + [ + 1833, + 196 + ], + [ + 1851, + 226 + ], + [ + 1868, + 165 + ], + [ + 1885, + 156 + ], + [ + 1902, + 172 + ], + [ + 1919, + 125 + ], + [ + 1937, + 149 + ], + [ + 1954, + 112 + ], + [ + 1971, + 119 + ], + [ + 1988, + 105 + ], + [ + 2005, + 83 + ], + [ + 2022, + 82 + ], + [ + 2040, + 104 + ], + [ + 2057, + 75 + ], + [ + 2074, + 121 + ], + [ + 2091, + 51 + ], + [ + 2108, + 55 + ], + [ + 2125, + 50 + ], + [ + 2143, + 61 + ], + [ + 2160, + 83 + ], + [ + 2177, + 54 + ], + [ + 2194, + 55 + ], + [ + 2211, + 83 + ], + [ + 2229, + 54 + ], + [ + 2246, + 49 + ], + [ + 2263, + 54 + ], + [ + 2280, + 55 + ], + [ + 2297, + 43 + ], + [ + 2314, + 35 + ], + [ + 2332, + 27 + ], + [ + 2349, + 34 + ], + [ + 2366, + 24 + ], + [ + 2383, + 28 + ], + [ + 2400, + 31 + ], + [ + 2417, + 24 + ], + [ + 2435, + 22 + ], + [ + 2452, + 24 + ], + [ + 2469, + 23 + ], + [ + 2486, + 20 + ], + [ + 2503, + 21 + ], + [ + 2521, + 24 + ], + [ + 2538, + 33 + ], + [ + 2555, + 23 + ], + [ + 2572, + 13 + ], + [ + 2589, + 21 + ], + [ + 2606, + 18 + ], + [ + 2624, + 16 + ], + [ + 2641, + 12 + ], + [ + 2658, + 14 + ], + [ + 2675, + 17 + ], + [ + 2692, + 14 + ], + [ + 2709, + 22 + ], + [ + 2727, + 18 + ], + [ + 2744, + 21 + ], + [ + 2761, + 22 + ], + [ + 2778, + 15 + ], + [ + 2795, + 17 + ], + [ + 2812, + 16 + ], + [ + 2830, + 19 + ], + [ + 2847, + 19 + ], + [ + 2864, + 22 + ], + [ + 2881, + 18 + ], + [ + 2898, + 18 + ], + [ + 2916, + 9 + ], + [ + 2933, + 13 + ], + [ + 2950, + 9 + ], + [ + 2967, + 18 + ], + [ + 2984, + 10 + ], + [ + 3001, + 10 + ], + [ + 3019, + 25 + ], + [ + 3036, + 19 + ], + [ + 3053, + 14 + ], + [ + 3070, + 15 + ], + [ + 3087, + 16 + ], + [ + 3104, + 8 + ], + [ + 3122, + 10 + ], + [ + 3139, + 18 + ], + [ + 3156, + 16 + ], + [ + 3173, + 7 + ], + [ + 3190, + 19 + ], + [ + 3215, + 17 + ], + [ + 3238, + 7 + ], + [ + 3255, + 16 + ], + [ + 3272, + 14 + ], + [ + 3289, + 17 + ], + [ + 3306, + 15 + ], + [ + 3324, + 15 + ], + [ + 3341, + 17 + ], + [ + 3358, + 7 + ], + [ + 3375, + 16 + ], + [ + 3392, + 9 + ], + [ + 3409, + 13 + ], + [ + 3427, + 12 + ], + [ + 3444, + 7 + ], + [ + 3461, + 9 + ] + ], + "color": "#f15c80", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "smooth_points": 200, + "id": "snpeff_qualities", + "title": "SnpEff: Qualities", + "ylab": "Count", + "xlab": "Values", + "xDecimals": false, + "ymin": 0, + "xmin": 0 + } + }, + "gatk_varianteval_variant_plot": { + "id": "gatk_varianteval_variant_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "GATK VariantEval: Variant Counts", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "gatk_varianteval_variant_plot", + "dconfig": {}, + "layout": { + "title": { + "text": "GATK VariantEval: Variant Counts" + }, + "xaxis": { + "title": { + "text": "# Variants" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 3545454 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": false + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "SNPs", + "data": [ + 3452732, + 3459835, + 3457524, + 3545454, + 3465116, + 3490344 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 100.0, + 100.0, + 100.0, + 100.0, + 100.0, + 100.0 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "gatk_varianteval_variant_plot", + "title": "GATK VariantEval: Variant Counts", + "ylab": "# Variants", + "cpswitch_counts_label": "Number of Variants" + } + }, + "gatk_compare_overlap": { + "id": "gatk_compare_overlap", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 40, + "l": 60, + "pad": 0, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "GATK - Compare Overlap", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": false, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "violingap": 0, + "grid": { + "columns": 1, + "roworder": "top to bottom", + "ygap": 0.4 + } + }, + "datasets": [ + { + "label": 1, + "uid": "gatk_compare_overlap", + "dconfig": { + "ylab": null + }, + "layout": { + "title": { + "text": null + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}: %{x}", + "orientation": "h", + "box": { + "visible": true + }, + "meanline": { + "visible": true + }, + "fillcolor": "grey", + "line": { + "width": 2, + "color": "grey" + }, + "opacity": 0.5, + "points": false, + "hoveron": "points" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "metrics": [ + "comp_rate", + "concordant_rate", + "eval_variants", + "known_sites", + "novel_sites" + ], + "header_by_metric": { + "comp_rate": { + "title": "Compare rate", + "description": "Ratio of known variants found in the reference set.", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "concordant_rate": { + "title": "Concordant rate", + "description": "Ratio of variants matching alleles in the reference set.", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "eval_variants": { + "title": "M Evaluated variants", + "description": "Number of called variants (millions)", + "dmax": 3.545454, + "dmin": 0.0, + "suffix": "", + "hidden": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.01772727, + 3.56326990635 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "known_sites": { + "title": "M Known sites", + "description": "Number of known variants (millions)", + "dmax": 3.47334, + "dmin": 0.0, + "suffix": "", + "hidden": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.0173667, + 3.4907935334999998 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "novel_sites": { + "title": "M Novel sites", + "description": "Number of novel variants (millions)", + "dmax": 1.958486, + "dmin": 0.0, + "suffix": "", + "hidden": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.00979243, + 1.96832739215 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + } + }, + "violin_values_by_sample_by_metric": { + "comp_rate": { + "P4107_1004": 45.84, + "P4107_1002": 45.75, + "P4107_1003": 44.76, + "P4107_1005": 45.82, + "P4107_1006": 45.91, + "P4107_1001": 45.44 + }, + "concordant_rate": { + "P4107_1004": 99.09, + "P4107_1002": 99.09, + "P4107_1003": 99.08, + "P4107_1005": 99.1, + "P4107_1006": 99.1, + "P4107_1001": 99.09 + }, + "eval_variants": { + "P4107_1004": 3.457524, + "P4107_1002": 3.465116, + "P4107_1003": 3.545454, + "P4107_1005": 3.459835, + "P4107_1006": 3.452732, + "P4107_1001": 3.490344 + }, + "known_sites": { + "P4107_1004": 3.414528, + "P4107_1002": 3.421917, + "P4107_1003": 3.47334, + "P4107_1005": 3.416662, + "P4107_1006": 3.410273, + "P4107_1001": 3.437854 + }, + "novel_sites": { + "P4107_1004": 1.872505, + "P4107_1002": 1.879862, + "P4107_1003": 1.958486, + "P4107_1005": 1.874662, + "P4107_1006": 1.867441, + "P4107_1001": 1.90426 + } + }, + "scatter_values_by_sample_by_metric": { + "comp_rate": {}, + "concordant_rate": {}, + "eval_variants": {}, + "known_sites": {}, + "novel_sites": {} + }, + "all_samples": [ + "P4107_1001", + "P4107_1002", + "P4107_1003", + "P4107_1004", + "P4107_1005", + "P4107_1006" + ], + "scatter_trace_params": { + "mode": "markers", + "marker": { + "size": 4, + "color": "#0b79e6" + }, + "showlegend": false, + "hovertemplate": "%{text}: %{x}", + "hoverlabel": { + "bgcolor": "white" + } + } + } + ], + "plot_type": "violin", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "table_title": "GATK - Compare Overlap" + }, + "static": true, + "violin_height": 70, + "extra_height": 63 + }, + "picard_deduplication": { + "id": "picard_deduplication", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "Picard: Deduplication Stats", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "picard_deduplication", + "dconfig": {}, + "layout": { + "title": { + "text": "Picard: Deduplication Stats" + }, + "xaxis": { + "title": { + "text": "# Reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 996330798 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Unique Pairs", + "data": [ + 777742028, + 716423812, + 592874944, + 753270896, + 757473744, + 697685732 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 85.79829816352141, + 73.97504731530037, + 59.50583332263909, + 87.30963908767, + 88.04035721109015, + 90.94094206513118 + ] + }, + { + "name": "Unique Unpaired", + "data": [ + 754325, + 529253, + 298407, + 648876, + 702038, + 901693 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 0.08321499794556338, + 0.05464854051607747, + 0.029950594782276317, + 0.07520950254880279, + 0.08159712040891455, + 0.11753258969259577 + ] + }, + { + "name": "Duplicate Pairs Optical", + "data": [ + 27290276, + 65079450, + 101534202, + 18809146, + 17123632, + 8211728 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 3.010585969275654, + 6.719842797469335, + 10.19081234905277, + 2.180118410956491, + 1.990261299448096, + 1.070370578113837 + ] + }, + { + "name": "Duplicate Pairs Nonoptical", + "data": [ + 82720916, + 166744530, + 283290938, + 68921102, + 65679516, + 39012346 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 9.125537208756333, + 17.217370904915597, + 28.433421768018057, + 7.988462813442472, + 7.633859385747252, + 5.085125486572014 + ] + }, + { + "name": "Duplicate Unpaired", + "data": [ + 556444, + 655331, + 618736, + 466283, + 483800, + 449788 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 0.061385326373673235, + 0.0676668487565334, + 0.06210146281155107, + 0.05404563040852708, + 0.0562315527846539, + 0.05862832300201206 + ] + }, + { + "name": "Unmapped", + "data": [ + 17413231, + 19034476, + 17713571, + 20641697, + 18908318, + 20924225 + ], + "color": "0.95,0.36,0.50", + "data_pct": [ + 1.9209783341273594, + 1.9654235930420878, + 1.777880502696254, + 2.3925245549737006, + 2.197693430520921, + 2.7274009574883626 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": true, + "l_active": false, + "square": null, + "config": { + "id": "picard_deduplication", + "title": "Picard: Deduplication Stats", + "ylab": "# Reads", + "cpswitch_counts_label": "Number of Reads", + "cpswitch_c_active": false + } + }, + "fastq_screen_plot": { + "id": "fastq_screen_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "FastQ Screen: Mapped Reads", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "fastq_screen_plot", + "dconfig": {}, + "layout": { + "title": { + "text": "FastQ Screen: Mapped Reads" + }, + "xaxis": { + "title": { + "text": "Mapped reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 200018 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Human", + "data": [ + 166360, + 166243, + 166784, + 164664, + 165695, + 165044 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 83.17251447369736, + 83.11568190226683, + 83.3974208323541, + 82.3357051067298, + 82.84998549956498, + 82.52323784856773 + ] + }, + { + "name": "Mouse", + "data": [ + 35, + 32, + 41, + 51, + 35, + 28 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 0.01749842514173724, + 0.015998880078394513, + 0.02050133258661813, + 0.025501147551639826, + 0.017500525015750473, + 0.014000210003150047 + ] + }, + { + "name": "Xtropicalis", + "data": [ + 8, + 3, + 9, + 9, + 5, + 3 + ], + "color": "0.56,0.93,0.49", + "data_pct": [ + 0.003999640032397084, + 0.0014998950073494854, + 0.004500292519013736, + 0.00450020250911291, + 0.0025000750022500674, + 0.001500022500337505 + ] + }, + { + "name": "PhiX", + "data": [ + 5, + 7, + 1, + 4, + 10, + 7 + ], + "color": "0.97,0.64,0.36", + "data_pct": [ + 0.0024997750202481774, + 0.0034997550171487995, + 0.0005000325021126374, + 0.0020000900040501824, + 0.005000150004500135, + 0.0035000525007875117 + ] + }, + { + "name": "Dmelanogaster", + "data": [ + 4, + 0, + 2, + 5, + 7, + 1 + ], + "color": "0.50,0.52,0.91", + "data_pct": [ + 0.001999820016198542, + 0.0, + 0.0010000650042252747, + 0.002500112505062728, + 0.0035001050031500947, + 0.0005000075001125017 + ] + }, + { + "name": "Multiple Genomes", + "data": [ + 28586, + 28689, + 27311, + 27939, + 28723, + 28375 + ], + "color": "0.51,0.00,0.00", + "data_pct": [ + 14.291713745762882, + 14.343495955283132, + 13.656387665198238, + 13.97012865578951, + 14.361930857925737, + 14.187712815692235 + ] + }, + { + "name": "No hits", + "data": [ + 5020, + 5040, + 5839, + 7319, + 5519, + 6539 + ], + "color": "0.80,0.80,0.80", + "data_pct": [ + 2.5097741203291704, + 2.519823612347136, + 2.9196897798356893, + 3.659664684910821, + 2.7595827874836245, + 3.2695490432356484 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": true, + "l_active": false, + "square": null, + "config": { + "id": "fastq_screen_plot", + "title": "FastQ Screen: Mapped Reads", + "cpswitch_c_active": false, + "ylab": "Mapped reads" + } + }, + "fastqc_sequence_counts_plot": { + "id": "fastqc_sequence_counts_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Sequence Counts", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_sequence_counts_plot", + "dconfig": {}, + "layout": { + "title": { + "text": "FastQC: Sequence Counts" + }, + "xaxis": { + "title": { + "text": "Number of reads" + }, + "hoverformat": ",.0f", + "ticksuffix": "", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 498165399 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": true + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Unique Reads", + "data": [ + 445189627, + 452256304, + 478535552, + 402065046, + 420901795, + 369425556 + ], + "color": "0.49,0.71,0.93", + "data_pct": [ + 98.22411797618035, + 93.39634145784889, + 96.05957237507778, + 93.20459410402454, + 97.8419243600582, + 96.30670814857619 + ] + }, + { + "name": "Duplicate Reads", + "data": [ + 8048983, + 31977122, + 19629847, + 29313954, + 9283729, + 14167200 + ], + "color": "0.26,0.26,0.28", + "data_pct": [ + 1.7758820238196389, + 6.603658542151115, + 3.94042762492222, + 6.795405895975465, + 2.1580756399418033, + 3.693291851423805 + ] + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_sequence_counts_plot", + "title": "FastQC: Sequence Counts", + "ylab": "Number of reads", + "cpswitch_counts_label": "Number of reads", + "hide_zero_cats": false + } + }, + "fastqc_per_base_sequence_quality_plot": { + "id": "fastqc_per_base_sequence_quality_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Mean Quality Scores", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1, + "shapes": [ + { + "fillcolor": "#c3e6c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 28, + "y1": 100 + }, + { + "fillcolor": "#e6dcc3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 20, + "y1": 28 + }, + { + "fillcolor": "#e6c3c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 0, + "y1": 20 + } + ] + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_per_base_sequence_quality_plot", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Mean Quality Scores" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Position (bp)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Phred Score" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + }, + "range": [ + 0, + 42.49256151351826 + ] + } + }, + "trace_params": { + "hovertemplate": "%{text}
Base %{x}: %{y:.2f}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 1, + 30.773044606191675 + ], + [ + 2, + 31.21337426924715 + ], + [ + 3, + 35.38702612778225 + ], + [ + 4, + 35.78418786667598 + ], + [ + 5, + 35.972119603843616 + ], + [ + 6, + 40.154876712531035 + ], + [ + 7, + 40.293795980860494 + ], + [ + 8, + 40.43222029719456 + ], + [ + 9, + 40.4162365438413 + ], + [ + 12, + 40.46910620335073 + ], + [ + 17, + 40.31417592672162 + ], + [ + 22, + 40.2031191616142 + ], + [ + 27, + 40.09344585328927 + ], + [ + 32, + 40.029902187725355 + ], + [ + 37, + 39.90872257712813 + ], + [ + 42, + 39.746051853492254 + ], + [ + 47, + 39.60430680187297 + ], + [ + 52, + 39.442604216436244 + ], + [ + 57, + 39.25481203039194 + ], + [ + 62, + 39.08373627524916 + ], + [ + 67, + 39.009092149800665 + ], + [ + 72, + 38.84016290130359 + ], + [ + 77, + 38.19857494493457 + ], + [ + 82, + 38.53369168942284 + ], + [ + 87, + 38.44840578063471 + ], + [ + 92, + 38.25337678170335 + ], + [ + 97, + 38.037019961346715 + ], + [ + 102, + 37.821392217323314 + ], + [ + 107, + 37.605908569868824 + ], + [ + 112, + 37.24280304135878 + ], + [ + 117, + 36.76368132457642 + ], + [ + 122, + 36.34430605827187 + ], + [ + 127, + 35.92465341238092 + ], + [ + 132, + 35.371943068184535 + ], + [ + 137, + 34.70907593729429 + ], + [ + 142, + 33.933056502245314 + ], + [ + 147, + 33.22689981298812 + ], + [ + 150, + 30.954047277420436 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 1, + 30.94147674527514 + ], + [ + 2, + 31.345713801843317 + ], + [ + 3, + 35.640319133565264 + ], + [ + 4, + 36.072508130236386 + ], + [ + 5, + 36.24322113405192 + ], + [ + 6, + 40.58204578729618 + ], + [ + 7, + 40.515951754806146 + ], + [ + 8, + 40.7166240280089 + ], + [ + 9, + 40.707927849752565 + ], + [ + 12, + 40.62590025228278 + ], + [ + 17, + 40.50051224596763 + ], + [ + 22, + 40.55611425316115 + ], + [ + 27, + 40.355336825327484 + ], + [ + 32, + 40.35456246454263 + ], + [ + 37, + 40.2325415529324 + ], + [ + 42, + 40.12177597449792 + ], + [ + 47, + 39.909284022769675 + ], + [ + 52, + 39.725696021328694 + ], + [ + 57, + 39.456378887356514 + ], + [ + 62, + 39.507885749312194 + ], + [ + 67, + 39.3776453918984 + ], + [ + 72, + 39.1973869627468 + ], + [ + 77, + 38.60204845014729 + ], + [ + 82, + 39.09989304242604 + ], + [ + 87, + 38.98662554205334 + ], + [ + 92, + 38.72935254092836 + ], + [ + 97, + 38.589224351956574 + ], + [ + 102, + 38.46371364416252 + ], + [ + 107, + 38.03350293023807 + ], + [ + 112, + 37.83074788913632 + ], + [ + 117, + 37.4081648144906 + ], + [ + 122, + 37.063082929773344 + ], + [ + 127, + 36.55852240346423 + ], + [ + 132, + 35.89350669503235 + ], + [ + 137, + 35.19250184160079 + ], + [ + 142, + 34.66009945467156 + ], + [ + 147, + 33.98347079061638 + ], + [ + 150, + 31.559213545270296 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 1, + 31.13000048217461 + ], + [ + 2, + 31.651721412029794 + ], + [ + 3, + 36.07641229637975 + ], + [ + 4, + 36.469827476534554 + ], + [ + 5, + 36.62354389527538 + ], + [ + 6, + 41.09228069980226 + ], + [ + 7, + 41.2150670547245 + ], + [ + 8, + 41.264797027671726 + ], + [ + 9, + 41.28713609378296 + ], + [ + 12, + 41.32035103795039 + ], + [ + 17, + 41.293022303357375 + ], + [ + 22, + 41.22200562985218 + ], + [ + 27, + 41.074856695388505 + ], + [ + 32, + 41.048323656459864 + ], + [ + 37, + 41.00266455437098 + ], + [ + 42, + 40.9301174628343 + ], + [ + 47, + 40.918424336372425 + ], + [ + 52, + 40.875327528229235 + ], + [ + 57, + 40.81895699187953 + ], + [ + 62, + 40.77629602600034 + ], + [ + 67, + 40.72522589184916 + ], + [ + 72, + 40.489669573623196 + ], + [ + 77, + 40.147472598341594 + ], + [ + 82, + 40.34029982173449 + ], + [ + 87, + 40.291438109411914 + ], + [ + 92, + 40.19195644062414 + ], + [ + 97, + 40.09955796457407 + ], + [ + 102, + 40.00394711100911 + ], + [ + 107, + 39.89349450251403 + ], + [ + 112, + 39.792334113158034 + ], + [ + 117, + 39.63257379844638 + ], + [ + 122, + 39.51006607832092 + ], + [ + 127, + 39.360580027771405 + ], + [ + 132, + 38.96311520124995 + ], + [ + 137, + 38.651625214950194 + ], + [ + 142, + 38.40158887428456 + ], + [ + 147, + 38.04391925522568 + ], + [ + 150, + 36.48077752394066 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 1, + 31.339314152165755 + ], + [ + 2, + 31.81008052307543 + ], + [ + 3, + 36.4539671190612 + ], + [ + 4, + 36.7106954471561 + ], + [ + 5, + 36.79123035399735 + ], + [ + 6, + 41.49312831339376 + ], + [ + 7, + 41.5469917331613 + ], + [ + 8, + 41.591572780027626 + ], + [ + 9, + 41.60564742474216 + ], + [ + 12, + 41.61614816568182 + ], + [ + 17, + 41.61704010398362 + ], + [ + 22, + 41.59003188015473 + ], + [ + 27, + 41.50101196931985 + ], + [ + 32, + 41.42946564139032 + ], + [ + 37, + 41.40858418952537 + ], + [ + 42, + 41.36504110635753 + ], + [ + 47, + 41.34026440483475 + ], + [ + 52, + 41.29950176206437 + ], + [ + 57, + 41.25469217905276 + ], + [ + 62, + 41.20489316802189 + ], + [ + 67, + 41.154444104216076 + ], + [ + 72, + 41.0328023203394 + ], + [ + 77, + 40.76471075944799 + ], + [ + 82, + 40.94223069153785 + ], + [ + 87, + 40.87602894756647 + ], + [ + 92, + 40.80796460695176 + ], + [ + 97, + 40.74422715095072 + ], + [ + 102, + 40.663798783022266 + ], + [ + 107, + 40.585425455050526 + ], + [ + 112, + 40.49610809360929 + ], + [ + 117, + 40.39918243458736 + ], + [ + 122, + 40.262683591559515 + ], + [ + 127, + 40.06430036904269 + ], + [ + 132, + 39.797305976282786 + ], + [ + 137, + 39.512074056351715 + ], + [ + 142, + 39.25458689675073 + ], + [ + 147, + 38.89700134191777 + ], + [ + 150, + 37.047274982460195 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 1, + 31.041652240256543 + ], + [ + 2, + 31.50036083217436 + ], + [ + 3, + 35.84915693325144 + ], + [ + 4, + 36.26332974997889 + ], + [ + 5, + 36.427375876773944 + ], + [ + 6, + 40.920252572568174 + ], + [ + 7, + 40.98461599798772 + ], + [ + 8, + 41.059065352502124 + ], + [ + 9, + 41.075466634556534 + ], + [ + 12, + 41.09690139399836 + ], + [ + 17, + 41.01527810019459 + ], + [ + 22, + 40.888233483906575 + ], + [ + 27, + 40.80996133670459 + ], + [ + 32, + 40.737662749865606 + ], + [ + 37, + 40.6402171802985 + ], + [ + 42, + 40.52235137935315 + ], + [ + 47, + 40.31800305706282 + ], + [ + 52, + 40.21811107851939 + ], + [ + 57, + 40.07696379803404 + ], + [ + 62, + 39.9615537044731 + ], + [ + 67, + 39.847533246496695 + ], + [ + 72, + 39.73916912336408 + ], + [ + 77, + 39.2094592751224 + ], + [ + 82, + 39.51581530515822 + ], + [ + 87, + 39.419785954635856 + ], + [ + 92, + 39.26972368693937 + ], + [ + 97, + 39.07219046295247 + ], + [ + 102, + 38.85347439521864 + ], + [ + 107, + 38.55689448419035 + ], + [ + 112, + 38.18580665556946 + ], + [ + 117, + 37.803347937818735 + ], + [ + 122, + 37.4355753061954 + ], + [ + 127, + 36.868612514163786 + ], + [ + 132, + 36.179115228199876 + ], + [ + 137, + 35.66822588533985 + ], + [ + 142, + 35.176023522176266 + ], + [ + 147, + 34.457258620556274 + ], + [ + 150, + 31.8046540915579 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 1, + 31.001183800294505 + ], + [ + 2, + 31.375599680265545 + ], + [ + 3, + 35.67494237527558 + ], + [ + 4, + 36.088607493081845 + ], + [ + 5, + 36.24574415891003 + ], + [ + 6, + 40.57414957432687 + ], + [ + 7, + 40.69232565380959 + ], + [ + 8, + 40.75507060177419 + ], + [ + 9, + 40.76157641777253 + ], + [ + 12, + 40.78439260724059 + ], + [ + 17, + 40.6418088158906 + ], + [ + 22, + 40.53724609339879 + ], + [ + 27, + 40.45420378815477 + ], + [ + 32, + 40.34440244929707 + ], + [ + 37, + 40.23180582430963 + ], + [ + 42, + 40.09003138192486 + ], + [ + 47, + 39.922970041321065 + ], + [ + 52, + 39.76266873424574 + ], + [ + 57, + 39.54071396300505 + ], + [ + 62, + 39.41526718961565 + ], + [ + 67, + 39.26901158531044 + ], + [ + 72, + 39.09965894962038 + ], + [ + 77, + 38.57873070081122 + ], + [ + 82, + 38.916878708987305 + ], + [ + 87, + 38.765415280926746 + ], + [ + 92, + 38.57184531609079 + ], + [ + 97, + 38.31209821069745 + ], + [ + 102, + 38.0427149169838 + ], + [ + 107, + 37.6657803530904 + ], + [ + 112, + 37.27100523011488 + ], + [ + 117, + 36.72398877138909 + ], + [ + 122, + 36.16954514003121 + ], + [ + 127, + 35.607918140954496 + ], + [ + 132, + 34.90964426397831 + ], + [ + 137, + 34.309701418861906 + ], + [ + 142, + 33.62791976702955 + ], + [ + 147, + 32.849990329376396 + ], + [ + 150, + 30.387457038357788 + ] + ], + "color": "#5cb85c", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_per_base_sequence_quality_plot", + "title": "FastQC: Mean Quality Scores", + "ylab": "Phred Score", + "xlab": "Position (bp)", + "ymin": 0, + "xmin": 0, + "xDecimals": false, + "tt_label": "Base {point.x}: {point.y:.2f}", + "colors": { + "P4107_1003": "#5cb85c", + "P4107_1004": "#5cb85c", + "P4107_1005": "#5cb85c", + "P4107_1002": "#5cb85c", + "P4107_1001": "#5cb85c", + "P4107_1006": "#5cb85c" + }, + "yPlotBands": [ + { + "from": 28, + "to": 100, + "color": "#c3e6c3" + }, + { + "from": 20, + "to": 28, + "color": "#e6dcc3" + }, + { + "from": 0, + "to": 20, + "color": "#e6c3c3" + } + ] + } + }, + "fastqc_per_sequence_quality_scores_plot": { + "id": "fastqc_per_sequence_quality_scores_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Per Sequence Quality Scores", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1, + "shapes": [ + { + "fillcolor": "#c3e6c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 28, + "x1": 100, + "y0": 0, + "y1": 1, + "yref": "paper" + }, + { + "fillcolor": "#e6dcc3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 20, + "x1": 28, + "y0": 0, + "y1": 1, + "yref": "paper" + }, + { + "fillcolor": "#e6c3c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 20, + "y0": 0, + "y1": 1, + "yref": "paper" + } + ] + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_per_sequence_quality_scores_plot", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Per Sequence Quality Scores" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Mean Sequence Quality (Phred Score)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + }, + "range": [ + 0, + 41.0 + ] + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": " reads", + "title": { + "text": "Count" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
Phred %{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 7.0, + 2.0 + ], + [ + 8.0, + 13.0 + ], + [ + 9.0, + 121.0 + ], + [ + 10.0, + 702.0 + ], + [ + 11.0, + 3962.0 + ], + [ + 12.0, + 11946.0 + ], + [ + 13.0, + 33566.0 + ], + [ + 14.0, + 77653.0 + ], + [ + 15.0, + 157422.0 + ], + [ + 16.0, + 294209.0 + ], + [ + 17.0, + 492475.0 + ], + [ + 18.0, + 720687.0 + ], + [ + 19.0, + 963842.0 + ], + [ + 20.0, + 1219092.0 + ], + [ + 21.0, + 1516173.0 + ], + [ + 22.0, + 1885944.0 + ], + [ + 23.0, + 2388458.0 + ], + [ + 24.0, + 3233075.0 + ], + [ + 25.0, + 4949305.0 + ], + [ + 26.0, + 4684978.0 + ], + [ + 27.0, + 4090747.0 + ], + [ + 28.0, + 4478935.0 + ], + [ + 29.0, + 5015234.0 + ], + [ + 30.0, + 5656014.0 + ], + [ + 31.0, + 6451225.0 + ], + [ + 32.0, + 7424908.0 + ], + [ + 33.0, + 8637645.0 + ], + [ + 34.0, + 10176351.0 + ], + [ + 35.0, + 12193425.0 + ], + [ + 36.0, + 14987094.0 + ], + [ + 37.0, + 19130838.0 + ], + [ + 38.0, + 26042098.0 + ], + [ + 39.0, + 39815694.0 + ], + [ + 40.0, + 76771779.0 + ], + [ + 41.0, + 120087144.0 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 4.0, + 25.0 + ], + [ + 5.0, + 139.0 + ], + [ + 6.0, + 585.0 + ], + [ + 7.0, + 1304.0 + ], + [ + 8.0, + 2821.0 + ], + [ + 9.0, + 2098.0 + ], + [ + 10.0, + 2606.0 + ], + [ + 11.0, + 6814.0 + ], + [ + 12.0, + 16942.0 + ], + [ + 13.0, + 37242.0 + ], + [ + 14.0, + 73652.0 + ], + [ + 15.0, + 142281.0 + ], + [ + 16.0, + 260519.0 + ], + [ + 17.0, + 436736.0 + ], + [ + 18.0, + 643278.0 + ], + [ + 19.0, + 858052.0 + ], + [ + 20.0, + 1079212.0 + ], + [ + 21.0, + 1331165.0 + ], + [ + 22.0, + 1635514.0 + ], + [ + 23.0, + 2065815.0 + ], + [ + 24.0, + 2771904.0 + ], + [ + 25.0, + 4013731.0 + ], + [ + 26.0, + 3899894.0 + ], + [ + 27.0, + 3734971.0 + ], + [ + 28.0, + 4188151.0 + ], + [ + 29.0, + 4732353.0 + ], + [ + 30.0, + 5379255.0 + ], + [ + 31.0, + 6196752.0 + ], + [ + 32.0, + 7216376.0 + ], + [ + 33.0, + 8511646.0 + ], + [ + 34.0, + 10214246.0 + ], + [ + 35.0, + 12531450.0 + ], + [ + 36.0, + 15780505.0 + ], + [ + 37.0, + 20674446.0 + ], + [ + 38.0, + 29362020.0 + ], + [ + 39.0, + 47669147.0 + ], + [ + 40.0, + 93655368.0 + ], + [ + 41.0, + 141056509.0 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 11.0, + 53.0 + ], + [ + 12.0, + 131.0 + ], + [ + 13.0, + 241.0 + ], + [ + 14.0, + 713.0 + ], + [ + 15.0, + 2300.0 + ], + [ + 16.0, + 6178.0 + ], + [ + 17.0, + 15427.0 + ], + [ + 18.0, + 35973.0 + ], + [ + 19.0, + 74954.0 + ], + [ + 20.0, + 133756.0 + ], + [ + 21.0, + 214521.0 + ], + [ + 22.0, + 332873.0 + ], + [ + 23.0, + 625270.0 + ], + [ + 24.0, + 1873645.0 + ], + [ + 25.0, + 2263770.0 + ], + [ + 26.0, + 1288657.0 + ], + [ + 27.0, + 1362434.0 + ], + [ + 28.0, + 1720050.0 + ], + [ + 29.0, + 2211087.0 + ], + [ + 30.0, + 2812069.0 + ], + [ + 31.0, + 3521357.0 + ], + [ + 32.0, + 4366396.0 + ], + [ + 33.0, + 5352039.0 + ], + [ + 34.0, + 6527855.0 + ], + [ + 35.0, + 7951809.0 + ], + [ + 36.0, + 9782576.0 + ], + [ + 37.0, + 12356832.0 + ], + [ + 38.0, + 16488919.0 + ], + [ + 39.0, + 24750325.0 + ], + [ + 40.0, + 50915004.0 + ], + [ + 41.0, + 274391786.0 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 10.0, + 8.0 + ], + [ + 11.0, + 240.0 + ], + [ + 12.0, + 415.0 + ], + [ + 13.0, + 592.0 + ], + [ + 14.0, + 1176.0 + ], + [ + 15.0, + 3243.0 + ], + [ + 16.0, + 7274.0 + ], + [ + 17.0, + 15521.0 + ], + [ + 18.0, + 32396.0 + ], + [ + 19.0, + 63717.0 + ], + [ + 20.0, + 110921.0 + ], + [ + 21.0, + 171625.0 + ], + [ + 22.0, + 255367.0 + ], + [ + 23.0, + 435504.0 + ], + [ + 24.0, + 1104544.0 + ], + [ + 25.0, + 1341224.0 + ], + [ + 26.0, + 827368.0 + ], + [ + 27.0, + 954386.0 + ], + [ + 28.0, + 1232766.0 + ], + [ + 29.0, + 1588433.0 + ], + [ + 30.0, + 2009942.0 + ], + [ + 31.0, + 2505847.0 + ], + [ + 32.0, + 3106641.0 + ], + [ + 33.0, + 3835395.0 + ], + [ + 34.0, + 4730571.0 + ], + [ + 35.0, + 5885516.0 + ], + [ + 36.0, + 7446809.0 + ], + [ + 37.0, + 9790707.0 + ], + [ + 38.0, + 13723853.0 + ], + [ + 39.0, + 22000798.0 + ], + [ + 40.0, + 50029383.0 + ], + [ + 41.0, + 364953217.0 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 2.0, + 1.0 + ], + [ + 3.0, + 119.0 + ], + [ + 4.0, + 686.0 + ], + [ + 5.0, + 624.0 + ], + [ + 6.0, + 955.0 + ], + [ + 7.0, + 661.0 + ], + [ + 8.0, + 730.0 + ], + [ + 9.0, + 1166.0 + ], + [ + 10.0, + 3056.0 + ], + [ + 11.0, + 11132.0 + ], + [ + 12.0, + 26048.0 + ], + [ + 13.0, + 54367.0 + ], + [ + 14.0, + 99661.0 + ], + [ + 15.0, + 176234.0 + ], + [ + 16.0, + 296539.0 + ], + [ + 17.0, + 454566.0 + ], + [ + 18.0, + 631059.0 + ], + [ + 19.0, + 817658.0 + ], + [ + 20.0, + 1013795.0 + ], + [ + 21.0, + 1236375.0 + ], + [ + 22.0, + 1500932.0 + ], + [ + 23.0, + 1829820.0 + ], + [ + 24.0, + 2338522.0 + ], + [ + 25.0, + 3607447.0 + ], + [ + 26.0, + 3825112.0 + ], + [ + 27.0, + 3602005.0 + ], + [ + 28.0, + 4043534.0 + ], + [ + 29.0, + 4569951.0 + ], + [ + 30.0, + 5196655.0 + ], + [ + 31.0, + 5974887.0 + ], + [ + 32.0, + 6943973.0 + ], + [ + 33.0, + 8150541.0 + ], + [ + 34.0, + 9720403.0 + ], + [ + 35.0, + 11870874.0 + ], + [ + 36.0, + 14962601.0 + ], + [ + 37.0, + 19846197.0 + ], + [ + 38.0, + 28547559.0 + ], + [ + 39.0, + 47793557.0 + ], + [ + 40.0, + 106696068.0 + ], + [ + 41.0, + 188387356.0 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 2.0, + 257.0 + ], + [ + 3.0, + 140.0 + ], + [ + 4.0, + 247.0 + ], + [ + 5.0, + 640.0 + ], + [ + 6.0, + 2061.0 + ], + [ + 7.0, + 3876.0 + ], + [ + 8.0, + 2156.0 + ], + [ + 9.0, + 2675.0 + ], + [ + 10.0, + 4007.0 + ], + [ + 11.0, + 12792.0 + ], + [ + 12.0, + 32360.0 + ], + [ + 13.0, + 76898.0 + ], + [ + 14.0, + 154000.0 + ], + [ + 15.0, + 268598.0 + ], + [ + 16.0, + 434660.0 + ], + [ + 17.0, + 649473.0 + ], + [ + 18.0, + 893546.0 + ], + [ + 19.0, + 1157234.0 + ], + [ + 20.0, + 1435336.0 + ], + [ + 21.0, + 1749248.0 + ], + [ + 22.0, + 2107005.0 + ], + [ + 23.0, + 2535756.0 + ], + [ + 24.0, + 3153180.0 + ], + [ + 25.0, + 4218597.0 + ], + [ + 26.0, + 4401416.0 + ], + [ + 27.0, + 4510035.0 + ], + [ + 28.0, + 5050153.0 + ], + [ + 29.0, + 5670374.0 + ], + [ + 30.0, + 6412524.0 + ], + [ + 31.0, + 7305795.0 + ], + [ + 32.0, + 8413673.0 + ], + [ + 33.0, + 9793420.0 + ], + [ + 34.0, + 11569918.0 + ], + [ + 35.0, + 13951919.0 + ], + [ + 36.0, + 17319076.0 + ], + [ + 37.0, + 22462006.0 + ], + [ + 38.0, + 31296445.0 + ], + [ + 39.0, + 49758271.0 + ], + [ + 40.0, + 100055550.0 + ], + [ + 41.0, + 136373293.0 + ] + ], + "color": "#5cb85c", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_per_sequence_quality_scores_plot", + "title": "FastQC: Per Sequence Quality Scores", + "ylab": "Count", + "xlab": "Mean Sequence Quality (Phred Score)", + "ymin": 0, + "xmin": 0, + "xDecimals": false, + "colors": { + "P4107_1003": "#5cb85c", + "P4107_1004": "#5cb85c", + "P4107_1005": "#5cb85c", + "P4107_1002": "#5cb85c", + "P4107_1001": "#5cb85c", + "P4107_1006": "#5cb85c" + }, + "tt_label": "Phred {point.x}: {point.y} reads", + "xPlotBands": [ + { + "from": 28, + "to": 100, + "color": "#c3e6c3" + }, + { + "from": 20, + "to": 28, + "color": "#e6dcc3" + }, + { + "from": 0, + "to": 20, + "color": "#e6c3c3" + } + ] + } + }, + "fastqc_per_sequence_gc_content_plot": { + "id": "fastqc_per_sequence_gc_content_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Per Sequence GC Content", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": "Percentages", + "uid": "fastqc_per_sequence_gc_content_plot_Percentages", + "dconfig": { + "name": "Percentages", + "ylab": "Percentage", + "tt_suffix": "%", + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Per Sequence GC Content" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "% GC", + "title": { + "text": "% GC" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 100 + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "%", + "title": { + "text": "Percentage" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 0.0, + 0.0009419103598587952 + ], + [ + 1.0, + 0.0009939200794247597 + ], + [ + 2.0, + 0.0012027410587347224 + ], + [ + 3.0, + 0.0016120406061961969 + ], + [ + 4.0, + 0.002110499672913611 + ], + [ + 5.0, + 0.002691470399995074 + ], + [ + 6.0, + 0.004158561612313195 + ], + [ + 7.0, + 0.006482574870813396 + ], + [ + 8.0, + 0.009218755380610791 + ], + [ + 9.0, + 0.011451914567588494 + ], + [ + 10.0, + 0.01397327799005579 + ], + [ + 11.0, + 0.018761300594308937 + ], + [ + 12.0, + 0.026225933678681174 + ], + [ + 13.0, + 0.03464707634243949 + ], + [ + 14.0, + 0.043378061370629634 + ], + [ + 15.0, + 0.05622042124801798 + ], + [ + 16.0, + 0.07516173543310536 + ], + [ + 17.0, + 0.10472619777725893 + ], + [ + 18.0, + 0.15204265931572325 + ], + [ + 19.0, + 0.2209537128381853 + ], + [ + 20.0, + 0.315223219629024 + ], + [ + 21.0, + 0.4362696502855246 + ], + [ + 22.0, + 0.5833859854620086 + ], + [ + 23.0, + 0.754766744893543 + ], + [ + 24.0, + 0.9515753038862087 + ], + [ + 25.0, + 1.1742901779300474 + ], + [ + 26.0, + 1.417356624695275 + ], + [ + 27.0, + 1.6735463359636165 + ], + [ + 28.0, + 1.9390081158338783 + ], + [ + 29.0, + 2.2057571036758543 + ], + [ + 30.0, + 2.464583668621138 + ], + [ + 31.0, + 2.7129994258413728 + ], + [ + 32.0, + 2.953791131714005 + ], + [ + 33.0, + 3.1831781097821628 + ], + [ + 34.0, + 3.3934290305047536 + ], + [ + 35.0, + 3.5884667823788643 + ], + [ + 36.0, + 3.764788725869514 + ], + [ + 37.0, + 3.890481749191097 + ], + [ + 38.0, + 3.9378766815345205 + ], + [ + 39.0, + 3.911449878237165 + ], + [ + 40.0, + 3.82355332182051 + ], + [ + 41.0, + 3.681233351659438 + ], + [ + 42.0, + 3.491757511374702 + ], + [ + 43.0, + 3.2791497291496747 + ], + [ + 44.0, + 3.0809966081085802 + ], + [ + 45.0, + 2.919993417107635 + ], + [ + 46.0, + 2.7963978584415305 + ], + [ + 47.0, + 2.705716109849523 + ], + [ + 48.0, + 2.630723699292899 + ], + [ + 49.0, + 2.544203640717389 + ], + [ + 50.0, + 2.4238659239588336 + ], + [ + 51.0, + 2.2666774308102644 + ], + [ + 52.0, + 2.088245639397573 + ], + [ + 53.0, + 1.9088002450291293 + ], + [ + 54.0, + 1.7424135918274968 + ], + [ + 55.0, + 1.5981596161295817 + ], + [ + 56.0, + 1.4722863185168713 + ], + [ + 57.0, + 1.3474734195725047 + ], + [ + 58.0, + 1.217186986456974 + ], + [ + 59.0, + 1.077802632572456 + ], + [ + 60.0, + 0.9319602096499022 + ], + [ + 61.0, + 0.7912584065532204 + ], + [ + 62.0, + 0.6650744844750321 + ], + [ + 63.0, + 0.5578520808589558 + ], + [ + 64.0, + 0.4689348825771347 + ], + [ + 65.0, + 0.39375411601857413 + ], + [ + 66.0, + 0.32958793919265517 + ], + [ + 67.0, + 0.2741369750238299 + ], + [ + 68.0, + 0.22645005828986062 + ], + [ + 69.0, + 0.18741409157703007 + ], + [ + 70.0, + 0.1557675458979714 + ], + [ + 71.0, + 0.13042095449546065 + ], + [ + 72.0, + 0.1107336462625637 + ], + [ + 73.0, + 0.09458273825980364 + ], + [ + 74.0, + 0.07965985924960237 + ], + [ + 75.0, + 0.06721206934997384 + ], + [ + 76.0, + 0.05740269732937963 + ], + [ + 77.0, + 0.04972611486151301 + ], + [ + 78.0, + 0.044151950355750265 + ], + [ + 79.0, + 0.038988649599541195 + ], + [ + 80.0, + 0.033453981196606725 + ], + [ + 81.0, + 0.028650446921605836 + ], + [ + 82.0, + 0.024284107131377485 + ], + [ + 83.0, + 0.020113814003372716 + ], + [ + 84.0, + 0.01730620159803109 + ], + [ + 85.0, + 0.015154771970371333 + ], + [ + 86.0, + 0.012685939668167405 + ], + [ + 87.0, + 0.010268204634308987 + ], + [ + 88.0, + 0.008108171895142076 + ], + [ + 89.0, + 0.006252767513432957 + ], + [ + 90.0, + 0.005029561477325161 + ], + [ + 91.0, + 0.004081524659271879 + ], + [ + 92.0, + 0.003405137604565639 + ], + [ + 93.0, + 0.0028768283479218945 + ], + [ + 94.0, + 0.0024491494258769586 + ], + [ + 95.0, + 0.002160814840213015 + ], + [ + 96.0, + 0.001926445226730298 + ], + [ + 97.0, + 0.0017820172335496248 + ], + [ + 98.0, + 0.001823729289341877 + ], + [ + 99.0, + 0.0025028536977094833 + ], + [ + 100.0, + 0.00479779886732946 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 0.0, + 0.0010370094142752896 + ], + [ + 1.0, + 0.0010880346477281984 + ], + [ + 2.0, + 0.001358735715408892 + ], + [ + 3.0, + 0.001852483304720866 + ], + [ + 4.0, + 0.0024309630015206998 + ], + [ + 5.0, + 0.0031397372010556375 + ], + [ + 6.0, + 0.00467026174344266 + ], + [ + 7.0, + 0.007240701465107984 + ], + [ + 8.0, + 0.010459010551845095 + ], + [ + 9.0, + 0.013079429431562243 + ], + [ + 10.0, + 0.0157905081793734 + ], + [ + 11.0, + 0.02072472961568976 + ], + [ + 12.0, + 0.028558439602612645 + ], + [ + 13.0, + 0.0373276896899056 + ], + [ + 14.0, + 0.04609949685040121 + ], + [ + 15.0, + 0.05897459288695158 + ], + [ + 16.0, + 0.07770248079257079 + ], + [ + 17.0, + 0.10692273743226968 + ], + [ + 18.0, + 0.15416199154745272 + ], + [ + 19.0, + 0.22361047250306484 + ], + [ + 20.0, + 0.31900836478038425 + ], + [ + 21.0, + 0.4414354506545306 + ], + [ + 22.0, + 0.590110660492694 + ], + [ + 23.0, + 0.7645844143336084 + ], + [ + 24.0, + 0.9644451396222466 + ], + [ + 25.0, + 1.190505753175852 + ], + [ + 26.0, + 1.4371067546133562 + ], + [ + 27.0, + 1.6980345722829158 + ], + [ + 28.0, + 1.9681781980054314 + ], + [ + 29.0, + 2.2385510304713847 + ], + [ + 30.0, + 2.501489288831229 + ], + [ + 31.0, + 2.753864858943921 + ], + [ + 32.0, + 2.996672209824091 + ], + [ + 33.0, + 3.2275393073844807 + ], + [ + 34.0, + 3.4397889361093656 + ], + [ + 35.0, + 3.633458754713184 + ], + [ + 36.0, + 3.8062673889767717 + ], + [ + 37.0, + 3.929187176364829 + ], + [ + 38.0, + 3.975173348380113 + ], + [ + 39.0, + 3.9449623421049864 + ], + [ + 40.0, + 3.85060854930855 + ], + [ + 41.0, + 3.7025435501210193 + ], + [ + 42.0, + 3.5071673500768306 + ], + [ + 43.0, + 3.287316821257065 + ], + [ + 44.0, + 3.0796578363145404 + ], + [ + 45.0, + 2.9061193901127957 + ], + [ + 46.0, + 2.7674468694904046 + ], + [ + 47.0, + 2.660837257294859 + ], + [ + 48.0, + 2.572280698140634 + ], + [ + 49.0, + 2.4759579589781553 + ], + [ + 50.0, + 2.3534209189562953 + ], + [ + 51.0, + 2.203699749947647 + ], + [ + 52.0, + 2.037692349250112 + ], + [ + 53.0, + 1.870461040333307 + ], + [ + 54.0, + 1.7149590261970649 + ], + [ + 55.0, + 1.5785347540728047 + ], + [ + 56.0, + 1.4563632592883233 + ], + [ + 57.0, + 1.3328988153081014 + ], + [ + 58.0, + 1.2039386398623808 + ], + [ + 59.0, + 1.0655453051414787 + ], + [ + 60.0, + 0.9198204928567747 + ], + [ + 61.0, + 0.7793229193512908 + ], + [ + 62.0, + 0.6542893622694418 + ], + [ + 63.0, + 0.5486528326581058 + ], + [ + 64.0, + 0.4606752181230806 + ], + [ + 65.0, + 0.3862453261075032 + ], + [ + 66.0, + 0.32240857475630996 + ], + [ + 67.0, + 0.26751693039039204 + ], + [ + 68.0, + 0.22064031574758505 + ], + [ + 69.0, + 0.18203443814815407 + ], + [ + 70.0, + 0.15095879243873128 + ], + [ + 71.0, + 0.12635963199862407 + ], + [ + 72.0, + 0.10692971126827693 + ], + [ + 73.0, + 0.09081433856156666 + ], + [ + 74.0, + 0.07640418498922456 + ], + [ + 75.0, + 0.06462247020800795 + ], + [ + 76.0, + 0.055349825391593006 + ], + [ + 77.0, + 0.04781599035298107 + ], + [ + 78.0, + 0.042196008375953636 + ], + [ + 79.0, + 0.03707802636084673 + ], + [ + 80.0, + 0.03179581050776952 + ], + [ + 81.0, + 0.027229807612634965 + ], + [ + 82.0, + 0.02298402002083245 + ], + [ + 83.0, + 0.018999053895700384 + ], + [ + 84.0, + 0.016351901977955517 + ], + [ + 85.0, + 0.014276837074003854 + ], + [ + 86.0, + 0.011901432299340762 + ], + [ + 87.0, + 0.009577750141731303 + ], + [ + 88.0, + 0.007606014241286782 + ], + [ + 89.0, + 0.005932293599551278 + ], + [ + 90.0, + 0.004718962364893158 + ], + [ + 91.0, + 0.003820383595361409 + ], + [ + 92.0, + 0.003162169706878898 + ], + [ + 93.0, + 0.002638202161535589 + ], + [ + 94.0, + 0.00224371550472654 + ], + [ + 95.0, + 0.0019480248580199342 + ], + [ + 96.0, + 0.0017538035252185435 + ], + [ + 97.0, + 0.0016705824155322502 + ], + [ + 98.0, + 0.0017133552763766021 + ], + [ + 99.0, + 0.002205126945486527 + ], + [ + 100.0, + 0.0032917668260132793 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 0.0, + 0.0010797889306116992 + ], + [ + 1.0, + 0.0010534780582148707 + ], + [ + 2.0, + 0.001202302552300897 + ], + [ + 3.0, + 0.0016424011535817711 + ], + [ + 4.0, + 0.0021826433396681956 + ], + [ + 5.0, + 0.002767509692595056 + ], + [ + 6.0, + 0.00427395202097207 + ], + [ + 7.0, + 0.0067840324290148945 + ], + [ + 8.0, + 0.009915721685798653 + ], + [ + 9.0, + 0.012257505236043263 + ], + [ + 10.0, + 0.014692014327774493 + ], + [ + 11.0, + 0.019833645603207616 + ], + [ + 12.0, + 0.0278688933076576 + ], + [ + 13.0, + 0.03643429929555734 + ], + [ + 14.0, + 0.04470112903987016 + ], + [ + 15.0, + 0.056915632806049006 + ], + [ + 16.0, + 0.0748995197635254 + ], + [ + 17.0, + 0.10354591673654831 + ], + [ + 18.0, + 0.15056321389582739 + ], + [ + 19.0, + 0.21989027633678745 + ], + [ + 20.0, + 0.31532131731013413 + ], + [ + 21.0, + 0.4378048031983487 + ], + [ + 22.0, + 0.5859699027774784 + ], + [ + 23.0, + 0.7587185138224678 + ], + [ + 24.0, + 0.9567443392905639 + ], + [ + 25.0, + 1.181082196224757 + ], + [ + 26.0, + 1.4260642359016777 + ], + [ + 27.0, + 1.683023749679352 + ], + [ + 28.0, + 1.9489861021868897 + ], + [ + 29.0, + 2.217640624884564 + ], + [ + 30.0, + 2.4774580557577828 + ], + [ + 31.0, + 2.7258406887617985 + ], + [ + 32.0, + 2.968188975339719 + ], + [ + 33.0, + 3.200400158001541 + ], + [ + 34.0, + 3.4140876751475076 + ], + [ + 35.0, + 3.6128375711876872 + ], + [ + 36.0, + 3.7958322386600214 + ], + [ + 37.0, + 3.9297478565581216 + ], + [ + 38.0, + 3.982000901417443 + ], + [ + 39.0, + 3.956396481739815 + ], + [ + 40.0, + 3.866060361550378 + ], + [ + 41.0, + 3.712912886813318 + ], + [ + 42.0, + 3.5047491460806364 + ], + [ + 43.0, + 3.2734952387277367 + ], + [ + 44.0, + 3.0581416754151087 + ], + [ + 45.0, + 2.8823442485660395 + ], + [ + 46.0, + 2.7436918622880224 + ], + [ + 47.0, + 2.6390371798891477 + ], + [ + 48.0, + 2.5561463411464516 + ], + [ + 49.0, + 2.4648950198625412 + ], + [ + 50.0, + 2.3490219378269077 + ], + [ + 51.0, + 2.2111405644263518 + ], + [ + 52.0, + 2.0622030610866386 + ], + [ + 53.0, + 1.9107972038325518 + ], + [ + 54.0, + 1.7662570933909143 + ], + [ + 55.0, + 1.6371737511804627 + ], + [ + 56.0, + 1.5152752475521019 + ], + [ + 57.0, + 1.3859479212606134 + ], + [ + 58.0, + 1.2478485269306372 + ], + [ + 59.0, + 1.0985651573211788 + ], + [ + 60.0, + 0.9418618898819611 + ], + [ + 61.0, + 0.7936192485687632 + ], + [ + 62.0, + 0.6638553008837998 + ], + [ + 63.0, + 0.5547319428268312 + ], + [ + 64.0, + 0.46462763649111033 + ], + [ + 65.0, + 0.389219401225604 + ], + [ + 66.0, + 0.3245908578786979 + ], + [ + 67.0, + 0.2688936386877831 + ], + [ + 68.0, + 0.22147124681913435 + ], + [ + 69.0, + 0.18226213569458985 + ], + [ + 70.0, + 0.1508995757975701 + ], + [ + 71.0, + 0.12615935816659796 + ], + [ + 72.0, + 0.10635098027344544 + ], + [ + 73.0, + 0.08963754914126261 + ], + [ + 74.0, + 0.07458355748090972 + ], + [ + 75.0, + 0.0627726416340514 + ], + [ + 76.0, + 0.05359026307448506 + ], + [ + 77.0, + 0.04600589331551377 + ], + [ + 78.0, + 0.040524770651312755 + ], + [ + 79.0, + 0.03557253129436606 + ], + [ + 80.0, + 0.029970981333159293 + ], + [ + 81.0, + 0.02503775071221735 + ], + [ + 82.0, + 0.020816188622185223 + ], + [ + 83.0, + 0.016995084964448435 + ], + [ + 84.0, + 0.014681350890503531 + ], + [ + 85.0, + 0.012766220738024235 + ], + [ + 86.0, + 0.010121804201752668 + ], + [ + 87.0, + 0.007481792128701716 + ], + [ + 88.0, + 0.005272722009709834 + ], + [ + 89.0, + 0.0035114003491714717 + ], + [ + 90.0, + 0.002568729313033113 + ], + [ + 91.0, + 0.001915014245552436 + ], + [ + 92.0, + 0.001397142096349659 + ], + [ + 93.0, + 0.0009680546531203212 + ], + [ + 94.0, + 0.000702975511395444 + ], + [ + 95.0, + 0.000545457997795047 + ], + [ + 96.0, + 0.0004201626098612505 + ], + [ + 97.0, + 0.0003280166030089211 + ], + [ + 98.0, + 0.0002968376396840449 + ], + [ + 99.0, + 0.0002962581050497535 + ], + [ + 100.0, + 0.0003209462804705663 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 0.0, + 0.0011911656817820153 + ], + [ + 1.0, + 0.0011470038263738515 + ], + [ + 2.0, + 0.0012913327992759864 + ], + [ + 3.0, + 0.0017372671710452392 + ], + [ + 4.0, + 0.0022761421748780366 + ], + [ + 5.0, + 0.002851450709422569 + ], + [ + 6.0, + 0.004414479287311963 + ], + [ + 7.0, + 0.007004772842707163 + ], + [ + 8.0, + 0.010248561490289987 + ], + [ + 9.0, + 0.012777329551673362 + ], + [ + 10.0, + 0.015293250527847085 + ], + [ + 11.0, + 0.020556841853234198 + ], + [ + 12.0, + 0.029107279635227086 + ], + [ + 13.0, + 0.03800057400375245 + ], + [ + 14.0, + 0.046317455791348085 + ], + [ + 15.0, + 0.05906186468717172 + ], + [ + 16.0, + 0.07772095117209328 + ], + [ + 17.0, + 0.10728711263215246 + ], + [ + 18.0, + 0.15675381055336862 + ], + [ + 19.0, + 0.23011739174662094 + ], + [ + 20.0, + 0.33067433798242246 + ], + [ + 21.0, + 0.4585430833275496 + ], + [ + 22.0, + 0.613230520519229 + ], + [ + 23.0, + 0.7939443457242968 + ], + [ + 24.0, + 0.9985440137375488 + ], + [ + 25.0, + 1.230160299003864 + ], + [ + 26.0, + 1.4837730022418667 + ], + [ + 27.0, + 1.7495559098875333 + ], + [ + 28.0, + 2.023612340408213 + ], + [ + 29.0, + 2.2981547520740895 + ], + [ + 30.0, + 2.564096843134932 + ], + [ + 31.0, + 2.816450331286682 + ], + [ + 32.0, + 3.0599756638066347 + ], + [ + 33.0, + 3.2918721761190852 + ], + [ + 34.0, + 3.50383994860363 + ], + [ + 35.0, + 3.6995537494694934 + ], + [ + 36.0, + 3.8783212412652994 + ], + [ + 37.0, + 4.005172457314681 + ], + [ + 38.0, + 4.047793866911926 + ], + [ + 39.0, + 4.011821626853499 + ], + [ + 40.0, + 3.9066539821773794 + ], + [ + 41.0, + 3.7385934318574288 + ], + [ + 42.0, + 3.517860936224309 + ], + [ + 43.0, + 3.27475594427356 + ], + [ + 44.0, + 3.048473909301285 + ], + [ + 45.0, + 2.8607938525091385 + ], + [ + 46.0, + 2.710338425847653 + ], + [ + 47.0, + 2.595325999554668 + ], + [ + 48.0, + 2.4980624236859303 + ], + [ + 49.0, + 2.3926901289571343 + ], + [ + 50.0, + 2.2666544017150057 + ], + [ + 51.0, + 2.11737408187879 + ], + [ + 52.0, + 1.9593379716329333 + ], + [ + 53.0, + 1.804200786091063 + ], + [ + 54.0, + 1.6617775979854965 + ], + [ + 55.0, + 1.5394833835749715 + ], + [ + 56.0, + 1.4269024688936185 + ], + [ + 57.0, + 1.3089546843659352 + ], + [ + 58.0, + 1.1828057421853966 + ], + [ + 59.0, + 1.044095160969712 + ], + [ + 60.0, + 0.8975334048052817 + ], + [ + 61.0, + 0.7566753530025219 + ], + [ + 62.0, + 0.6322704026391928 + ], + [ + 63.0, + 0.5277248379172085 + ], + [ + 64.0, + 0.4408647915041021 + ], + [ + 65.0, + 0.36911211435471575 + ], + [ + 66.0, + 0.3076353991195431 + ], + [ + 67.0, + 0.2546780076318712 + ], + [ + 68.0, + 0.20940658560657738 + ], + [ + 69.0, + 0.17190504056893718 + ], + [ + 70.0, + 0.14219705933230586 + ], + [ + 71.0, + 0.11879177780524512 + ], + [ + 72.0, + 0.10030662880991979 + ], + [ + 73.0, + 0.0845509835823786 + ], + [ + 74.0, + 0.07043474686901227 + ], + [ + 75.0, + 0.059393580441998946 + ], + [ + 76.0, + 0.05067191510244622 + ], + [ + 77.0, + 0.043767911584352226 + ], + [ + 78.0, + 0.0385523964606481 + ], + [ + 79.0, + 0.03366438164193678 + ], + [ + 80.0, + 0.0282745275572236 + ], + [ + 81.0, + 0.023731577417815165 + ], + [ + 82.0, + 0.019967582187094813 + ], + [ + 83.0, + 0.016265513921799087 + ], + [ + 84.0, + 0.01399398866816827 + ], + [ + 85.0, + 0.01210305831387326 + ], + [ + 86.0, + 0.00964745841747296 + ], + [ + 87.0, + 0.00728971717794302 + ], + [ + 88.0, + 0.00524753246887505 + ], + [ + 89.0, + 0.0035788165415656654 + ], + [ + 90.0, + 0.002632347685886157 + ], + [ + 91.0, + 0.0019682136012592953 + ], + [ + 92.0, + 0.0014422860504893459 + ], + [ + 93.0, + 0.0010391083841834515 + ], + [ + 94.0, + 0.0007796574836604899 + ], + [ + 95.0, + 0.0005915681267629927 + ], + [ + 96.0, + 0.00044794172883326033 + ], + [ + 97.0, + 0.0003748739317033895 + ], + [ + 98.0, + 0.0003729669424925824 + ], + [ + 99.0, + 0.00036855075695176607 + ], + [ + 100.0, + 0.00036353236429174744 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 0.0, + 0.001196963409153844 + ], + [ + 1.0, + 0.0012133813855216375 + ], + [ + 2.0, + 0.0014494285174510445 + ], + [ + 3.0, + 0.001980482935435708 + ], + [ + 4.0, + 0.002601268306021708 + ], + [ + 5.0, + 0.003303524012168645 + ], + [ + 6.0, + 0.0048829539902929715 + ], + [ + 7.0, + 0.0075580515611132475 + ], + [ + 8.0, + 0.010947279475076033 + ], + [ + 9.0, + 0.013548444523384735 + ], + [ + 10.0, + 0.016269801549631247 + ], + [ + 11.0, + 0.021588090057953258 + ], + [ + 12.0, + 0.029911797560998505 + ], + [ + 13.0, + 0.038925266586917084 + ], + [ + 14.0, + 0.04796093602113174 + ], + [ + 15.0, + 0.06132744045420169 + ], + [ + 16.0, + 0.0810852875491415 + ], + [ + 17.0, + 0.1121575985466031 + ], + [ + 18.0, + 0.161674525045007 + ], + [ + 19.0, + 0.2346603808437501 + ], + [ + 20.0, + 0.3346731169598453 + ], + [ + 21.0, + 0.4618785652803785 + ], + [ + 22.0, + 0.6156925969228807 + ], + [ + 23.0, + 0.7949567636051487 + ], + [ + 24.0, + 0.9999793928582156 + ], + [ + 25.0, + 1.2316426153242828 + ], + [ + 26.0, + 1.4843625636571796 + ], + [ + 27.0, + 1.7491942286947098 + ], + [ + 28.0, + 2.021865116045866 + ], + [ + 29.0, + 2.2963640779480623 + ], + [ + 30.0, + 2.5606095489488627 + ], + [ + 31.0, + 2.8118480588732773 + ], + [ + 32.0, + 3.054692852565229 + ], + [ + 33.0, + 3.28306638755267 + ], + [ + 34.0, + 3.490395587598842 + ], + [ + 35.0, + 3.6802316919694134 + ], + [ + 36.0, + 3.8481172717093837 + ], + [ + 37.0, + 3.963613398632864 + ], + [ + 38.0, + 4.000271951903896 + ], + [ + 39.0, + 3.9595301756297947 + ], + [ + 40.0, + 3.8552917208666835 + ], + [ + 41.0, + 3.6966429565858614 + ], + [ + 42.0, + 3.4891608318667284 + ], + [ + 43.0, + 3.2613208294823846 + ], + [ + 44.0, + 3.048800760945738 + ], + [ + 45.0, + 2.8701781344343704 + ], + [ + 46.0, + 2.725935679756579 + ], + [ + 47.0, + 2.613757016636522 + ], + [ + 48.0, + 2.518225148976279 + ], + [ + 49.0, + 2.4140745665269345 + ], + [ + 50.0, + 2.286758632453486 + ], + [ + 51.0, + 2.1352373350705465 + ], + [ + 52.0, + 1.9725757695469248 + ], + [ + 53.0, + 1.8132035817287901 + ], + [ + 54.0, + 1.6660128095715672 + ], + [ + 55.0, + 1.53868593018054 + ], + [ + 56.0, + 1.4229591255262064 + ], + [ + 57.0, + 1.3036413273866982 + ], + [ + 58.0, + 1.1792823844405735 + ], + [ + 59.0, + 1.0435777937625994 + ], + [ + 60.0, + 0.9008837917490308 + ], + [ + 61.0, + 0.7644933633412776 + ], + [ + 62.0, + 0.6424451214967786 + ], + [ + 63.0, + 0.5390056749168998 + ], + [ + 64.0, + 0.45265754825131993 + ], + [ + 65.0, + 0.3799963347022645 + ], + [ + 66.0, + 0.3176351812831699 + ], + [ + 67.0, + 0.26342467544012416 + ], + [ + 68.0, + 0.21750865516734325 + ], + [ + 69.0, + 0.1795402778068434 + ], + [ + 70.0, + 0.14883318934028045 + ], + [ + 71.0, + 0.12466210759150738 + ], + [ + 72.0, + 0.10579537455980062 + ], + [ + 73.0, + 0.09013417397062079 + ], + [ + 74.0, + 0.07569668053826309 + ], + [ + 75.0, + 0.06400935303408029 + ], + [ + 76.0, + 0.054732163809146965 + ], + [ + 77.0, + 0.047107924053997524 + ], + [ + 78.0, + 0.041709714075809645 + ], + [ + 79.0, + 0.0368582536879832 + ], + [ + 80.0, + 0.03178561527890006 + ], + [ + 81.0, + 0.02739168981739872 + ], + [ + 82.0, + 0.023179084899934144 + ], + [ + 83.0, + 0.019205624845789124 + ], + [ + 84.0, + 0.016547461539901668 + ], + [ + 85.0, + 0.014430471907873362 + ], + [ + 86.0, + 0.012156117521225453 + ], + [ + 87.0, + 0.009959619450183305 + ], + [ + 88.0, + 0.007944338665464915 + ], + [ + 89.0, + 0.006201038696801668 + ], + [ + 90.0, + 0.005037737302087451 + ], + [ + 91.0, + 0.00412700427338344 + ], + [ + 92.0, + 0.003415765146205069 + ], + [ + 93.0, + 0.002890286644722675 + ], + [ + 94.0, + 0.002507613560326182 + ], + [ + 95.0, + 0.002215290974809055 + ], + [ + 96.0, + 0.0019684017830141243 + ], + [ + 97.0, + 0.0018018470919370752 + ], + [ + 98.0, + 0.0017772717562418877 + ], + [ + 99.0, + 0.0022022805029704266 + ], + [ + 100.0, + 0.0035746787665197483 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 0.0, + 0.0010784825925551258 + ], + [ + 1.0, + 0.001130222397783067 + ], + [ + 2.0, + 0.0013826332173172452 + ], + [ + 3.0, + 0.001879622177982225 + ], + [ + 4.0, + 0.0025132968927568406 + ], + [ + 5.0, + 0.0032507821762297346 + ], + [ + 6.0, + 0.00490667658235212 + ], + [ + 7.0, + 0.007601007633699689 + ], + [ + 8.0, + 0.010899227158006213 + ], + [ + 9.0, + 0.013438669751912356 + ], + [ + 10.0, + 0.016155175005500472 + ], + [ + 11.0, + 0.02131801326746726 + ], + [ + 12.0, + 0.029451753352010723 + ], + [ + 13.0, + 0.03832937724604673 + ], + [ + 14.0, + 0.04705773897276205 + ], + [ + 15.0, + 0.05981507602299475 + ], + [ + 16.0, + 0.07871499805210114 + ], + [ + 17.0, + 0.10879115928809939 + ], + [ + 18.0, + 0.1572392538371679 + ], + [ + 19.0, + 0.22850085163167808 + ], + [ + 20.0, + 0.3257580058528553 + ], + [ + 21.0, + 0.44989978065918995 + ], + [ + 22.0, + 0.6007411703931825 + ], + [ + 23.0, + 0.7765393489503747 + ], + [ + 24.0, + 0.9774568168277828 + ], + [ + 25.0, + 1.205287808976851 + ], + [ + 26.0, + 1.4536137212445468 + ], + [ + 27.0, + 1.7140668260689533 + ], + [ + 28.0, + 1.983457127271027 + ], + [ + 29.0, + 2.2552583489495426 + ], + [ + 30.0, + 2.517836205690133 + ], + [ + 31.0, + 2.768089839400373 + ], + [ + 32.0, + 3.010881247299891 + ], + [ + 33.0, + 3.241556825542354 + ], + [ + 34.0, + 3.4513927354970275 + ], + [ + 35.0, + 3.643744673102979 + ], + [ + 36.0, + 3.8174049717337057 + ], + [ + 37.0, + 3.94034183789889 + ], + [ + 38.0, + 3.982902405954558 + ], + [ + 39.0, + 3.9485352607864788 + ], + [ + 40.0, + 3.851465428930498 + ], + [ + 41.0, + 3.6995639799461104 + ], + [ + 42.0, + 3.4989162430362555 + ], + [ + 43.0, + 3.275512920573378 + ], + [ + 44.0, + 3.0649642368839976 + ], + [ + 45.0, + 2.8880960703291385 + ], + [ + 46.0, + 2.745494327317256 + ], + [ + 47.0, + 2.6334663964185214 + ], + [ + 48.0, + 2.537608092368539 + ], + [ + 49.0, + 2.4355108944911454 + ], + [ + 50.0, + 2.3101118093219477 + ], + [ + 51.0, + 2.1616340130357345 + ], + [ + 52.0, + 2.0017304350278633 + ], + [ + 53.0, + 1.8416395346547951 + ], + [ + 54.0, + 1.694964798873157 + ], + [ + 55.0, + 1.5670909182867343 + ], + [ + 56.0, + 1.4506127022219122 + ], + [ + 57.0, + 1.33131273618242 + ], + [ + 58.0, + 1.2048858050317535 + ], + [ + 59.0, + 1.067670738373112 + ], + [ + 60.0, + 0.9229183183827251 + ], + [ + 61.0, + 0.7835324966122066 + ], + [ + 62.0, + 0.659756540983134 + ], + [ + 63.0, + 0.5542624980251997 + ], + [ + 64.0, + 0.46615887655280286 + ], + [ + 65.0, + 0.3920203690765565 + ], + [ + 66.0, + 0.32810185212550524 + ], + [ + 67.0, + 0.27257047895325887 + ], + [ + 68.0, + 0.22554671836004947 + ], + [ + 69.0, + 0.18706454872542982 + ], + [ + 70.0, + 0.15520981789479435 + ], + [ + 71.0, + 0.13003911972759277 + ], + [ + 72.0, + 0.11058870382196734 + ], + [ + 73.0, + 0.09437174994455291 + ], + [ + 74.0, + 0.079565229776817 + ], + [ + 75.0, + 0.06737052173865789 + ], + [ + 76.0, + 0.05779556882789305 + ], + [ + 77.0, + 0.05002246290814733 + ], + [ + 78.0, + 0.0443097926861463 + ], + [ + 79.0, + 0.039185455899711605 + ], + [ + 80.0, + 0.03376910362406932 + ], + [ + 81.0, + 0.02897682827417215 + ], + [ + 82.0, + 0.024572987581434013 + ], + [ + 83.0, + 0.02052172773626197 + ], + [ + 84.0, + 0.01779794140134114 + ], + [ + 85.0, + 0.015578535427832135 + ], + [ + 86.0, + 0.013120729200383728 + ], + [ + 87.0, + 0.010826195705850783 + ], + [ + 88.0, + 0.008783080156124829 + ], + [ + 89.0, + 0.0069653471694706955 + ], + [ + 90.0, + 0.005738043687251407 + ], + [ + 91.0, + 0.004805072401936482 + ], + [ + 92.0, + 0.004057658371191702 + ], + [ + 93.0, + 0.0035146662148336483 + ], + [ + 94.0, + 0.0030987620235557413 + ], + [ + 95.0, + 0.002767252184088868 + ], + [ + 96.0, + 0.0025007204795457843 + ], + [ + 97.0, + 0.002351017034568564 + ], + [ + 98.0, + 0.0023579671576588845 + ], + [ + 99.0, + 0.0028229634882255637 + ], + [ + 100.0, + 0.004211222995663544 + ] + ], + "color": "#f0ad4e", + "marker": {} + } + ] + }, + { + "label": "Counts", + "uid": "fastqc_per_sequence_gc_content_plot_Counts", + "dconfig": { + "name": "Counts", + "ylab": "Count", + "tt_suffix": "", + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Per Sequence GC Content" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "% GC", + "title": { + "text": "% GC" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 100 + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Count" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 0.0, + 3613.0 + ], + [ + 1.0, + 3812.5 + ], + [ + 2.0, + 4613.5 + ], + [ + 3.0, + 6183.5 + ], + [ + 4.0, + 8095.5 + ], + [ + 5.0, + 10324.0 + ], + [ + 6.0, + 15951.5 + ], + [ + 7.0, + 24866.0 + ], + [ + 8.0, + 35361.5 + ], + [ + 9.0, + 43927.5 + ], + [ + 10.0, + 53599.0 + ], + [ + 11.0, + 71965.0 + ], + [ + 12.0, + 100598.0 + ], + [ + 13.0, + 132900.0 + ], + [ + 14.0, + 166390.5 + ], + [ + 15.0, + 215651.5 + ], + [ + 16.0, + 288307.0 + ], + [ + 17.0, + 401711.0 + ], + [ + 18.0, + 583208.5 + ], + [ + 19.0, + 847539.0 + ], + [ + 20.0, + 1209140.0 + ], + [ + 21.0, + 1673452.5 + ], + [ + 22.0, + 2237764.5 + ], + [ + 23.0, + 2895150.5 + ], + [ + 24.0, + 3650073.0 + ], + [ + 25.0, + 4504367.5 + ], + [ + 26.0, + 5436727.0 + ], + [ + 27.0, + 6419425.0 + ], + [ + 28.0, + 7437689.0 + ], + [ + 29.0, + 8460890.5 + ], + [ + 30.0, + 9453703.0 + ], + [ + 31.0, + 10406581.5 + ], + [ + 32.0, + 11330215.5 + ], + [ + 33.0, + 12210103.0 + ], + [ + 34.0, + 13016588.0 + ], + [ + 35.0, + 13764718.0 + ], + [ + 36.0, + 14441057.5 + ], + [ + 37.0, + 14923193.5 + ], + [ + 38.0, + 15104992.0 + ], + [ + 39.0, + 15003623.5 + ], + [ + 40.0, + 14666468.0 + ], + [ + 41.0, + 14120554.0 + ], + [ + 42.0, + 13393758.5 + ], + [ + 43.0, + 12578233.0 + ], + [ + 44.0, + 11818153.0 + ], + [ + 45.0, + 11200573.5 + ], + [ + 46.0, + 10726483.0 + ], + [ + 47.0, + 10378644.0 + ], + [ + 48.0, + 10090986.5 + ], + [ + 49.0, + 9759111.0 + ], + [ + 50.0, + 9297517.0 + ], + [ + 51.0, + 8694570.0 + ], + [ + 52.0, + 8010137.5 + ], + [ + 53.0, + 7321817.0 + ], + [ + 54.0, + 6683587.5 + ], + [ + 55.0, + 6130255.0 + ], + [ + 56.0, + 5647427.5 + ], + [ + 57.0, + 5168667.5 + ], + [ + 58.0, + 4668912.0 + ], + [ + 59.0, + 4134258.5 + ], + [ + 60.0, + 3574833.0 + ], + [ + 61.0, + 3035126.0 + ], + [ + 62.0, + 2551107.0 + ], + [ + 63.0, + 2139821.0 + ], + [ + 64.0, + 1798750.5 + ], + [ + 65.0, + 1510370.5 + ], + [ + 66.0, + 1264240.5 + ], + [ + 67.0, + 1051540.5 + ], + [ + 68.0, + 868622.0 + ], + [ + 69.0, + 718887.0 + ], + [ + 70.0, + 597496.5 + ], + [ + 71.0, + 500271.5 + ], + [ + 72.0, + 424754.5 + ], + [ + 73.0, + 362802.5 + ], + [ + 74.0, + 305561.0 + ], + [ + 75.0, + 257813.5 + ], + [ + 76.0, + 220186.5 + ], + [ + 77.0, + 190740.5 + ], + [ + 78.0, + 169359.0 + ], + [ + 79.0, + 149553.5 + ], + [ + 80.0, + 128323.5 + ], + [ + 81.0, + 109898.0 + ], + [ + 82.0, + 93149.5 + ], + [ + 83.0, + 77153.0 + ], + [ + 84.0, + 66383.5 + ], + [ + 85.0, + 58131.0 + ], + [ + 86.0, + 48661.0 + ], + [ + 87.0, + 39387.0 + ], + [ + 88.0, + 31101.5 + ], + [ + 89.0, + 23984.5 + ], + [ + 90.0, + 19292.5 + ], + [ + 91.0, + 15656.0 + ], + [ + 92.0, + 13061.5 + ], + [ + 93.0, + 11035.0 + ], + [ + 94.0, + 9394.5 + ], + [ + 95.0, + 8288.5 + ], + [ + 96.0, + 7389.5 + ], + [ + 97.0, + 6835.5 + ], + [ + 98.0, + 6995.5 + ], + [ + 99.0, + 9600.5 + ], + [ + 100.0, + 18403.5 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 0.0, + 4461.0 + ], + [ + 1.0, + 4680.5 + ], + [ + 2.0, + 5845.0 + ], + [ + 3.0, + 7969.0 + ], + [ + 4.0, + 10457.5 + ], + [ + 5.0, + 13506.5 + ], + [ + 6.0, + 20090.5 + ], + [ + 7.0, + 31148.0 + ], + [ + 8.0, + 44992.5 + ], + [ + 9.0, + 56265.0 + ], + [ + 10.0, + 67927.5 + ], + [ + 11.0, + 89153.5 + ], + [ + 12.0, + 122852.5 + ], + [ + 13.0, + 160576.0 + ], + [ + 14.0, + 198310.5 + ], + [ + 15.0, + 253696.5 + ], + [ + 16.0, + 334260.0 + ], + [ + 17.0, + 459959.5 + ], + [ + 18.0, + 663173.0 + ], + [ + 19.0, + 961926.0 + ], + [ + 20.0, + 1372308.0 + ], + [ + 21.0, + 1898964.0 + ], + [ + 22.0, + 2538534.0 + ], + [ + 23.0, + 3289084.0 + ], + [ + 24.0, + 4148843.5 + ], + [ + 25.0, + 5121309.5 + ], + [ + 26.0, + 6182136.0 + ], + [ + 27.0, + 7304593.5 + ], + [ + 28.0, + 8466695.5 + ], + [ + 29.0, + 9629783.5 + ], + [ + 30.0, + 10760889.5 + ], + [ + 31.0, + 11846557.0 + ], + [ + 32.0, + 12891064.0 + ], + [ + 33.0, + 13884206.5 + ], + [ + 34.0, + 14797260.5 + ], + [ + 35.0, + 15630388.0 + ], + [ + 36.0, + 16373775.0 + ], + [ + 37.0, + 16902550.5 + ], + [ + 38.0, + 17100373.5 + ], + [ + 39.0, + 16970412.0 + ], + [ + 40.0, + 16564521.5 + ], + [ + 41.0, + 15927576.5 + ], + [ + 42.0, + 15087108.5 + ], + [ + 43.0, + 14141357.0 + ], + [ + 44.0, + 13248051.0 + ], + [ + 45.0, + 12501524.5 + ], + [ + 46.0, + 11904984.0 + ], + [ + 47.0, + 11446371.5 + ], + [ + 48.0, + 11065419.5 + ], + [ + 49.0, + 10651059.0 + ], + [ + 50.0, + 10123930.0 + ], + [ + 51.0, + 9479860.5 + ], + [ + 52.0, + 8765731.0 + ], + [ + 53.0, + 8046336.5 + ], + [ + 54.0, + 7377399.0 + ], + [ + 55.0, + 6790530.0 + ], + [ + 56.0, + 6264973.5 + ], + [ + 57.0, + 5733855.0 + ], + [ + 58.0, + 5179095.0 + ], + [ + 59.0, + 4583755.5 + ], + [ + 60.0, + 3956877.5 + ], + [ + 61.0, + 3352486.0 + ], + [ + 62.0, + 2814617.5 + ], + [ + 63.0, + 2360191.0 + ], + [ + 64.0, + 1981729.5 + ], + [ + 65.0, + 1661547.5 + ], + [ + 66.0, + 1386935.0 + ], + [ + 67.0, + 1150802.5 + ], + [ + 68.0, + 949149.0 + ], + [ + 69.0, + 783074.5 + ], + [ + 70.0, + 649393.5 + ], + [ + 71.0, + 543573.0 + ], + [ + 72.0, + 459989.5 + ], + [ + 73.0, + 390664.5 + ], + [ + 74.0, + 328675.0 + ], + [ + 75.0, + 277992.5 + ], + [ + 76.0, + 238103.5 + ], + [ + 77.0, + 205694.5 + ], + [ + 78.0, + 181518.5 + ], + [ + 79.0, + 159502.0 + ], + [ + 80.0, + 136779.0 + ], + [ + 81.0, + 117137.0 + ], + [ + 82.0, + 98872.5 + ], + [ + 83.0, + 81730.0 + ], + [ + 84.0, + 70342.5 + ], + [ + 85.0, + 61416.0 + ], + [ + 86.0, + 51197.5 + ], + [ + 87.0, + 41201.5 + ], + [ + 88.0, + 32719.5 + ], + [ + 89.0, + 25519.5 + ], + [ + 90.0, + 20300.0 + ], + [ + 91.0, + 16434.5 + ], + [ + 92.0, + 13603.0 + ], + [ + 93.0, + 11349.0 + ], + [ + 94.0, + 9652.0 + ], + [ + 95.0, + 8380.0 + ], + [ + 96.0, + 7544.5 + ], + [ + 97.0, + 7186.5 + ], + [ + 98.0, + 7370.5 + ], + [ + 99.0, + 9486.0 + ], + [ + 100.0, + 14160.5 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 0.0, + 4658.0 + ], + [ + 1.0, + 4544.5 + ], + [ + 2.0, + 5186.5 + ], + [ + 3.0, + 7085.0 + ], + [ + 4.0, + 9415.5 + ], + [ + 5.0, + 11938.5 + ], + [ + 6.0, + 18437.0 + ], + [ + 7.0, + 29265.0 + ], + [ + 8.0, + 42774.5 + ], + [ + 9.0, + 52876.5 + ], + [ + 10.0, + 63378.5 + ], + [ + 11.0, + 85558.5 + ], + [ + 12.0, + 120221.0 + ], + [ + 13.0, + 157170.5 + ], + [ + 14.0, + 192832.0 + ], + [ + 15.0, + 245523.0 + ], + [ + 16.0, + 323102.0 + ], + [ + 17.0, + 446677.0 + ], + [ + 18.0, + 649500.5 + ], + [ + 19.0, + 948564.0 + ], + [ + 20.0, + 1360235.0 + ], + [ + 21.0, + 1888605.0 + ], + [ + 22.0, + 2527760.5 + ], + [ + 23.0, + 3272964.5 + ], + [ + 24.0, + 4127209.5 + ], + [ + 25.0, + 5094959.5 + ], + [ + 26.0, + 6151764.5 + ], + [ + 27.0, + 7260238.0 + ], + [ + 28.0, + 8407548.0 + ], + [ + 29.0, + 9566471.5 + ], + [ + 30.0, + 10687273.5 + ], + [ + 31.0, + 11758748.0 + ], + [ + 32.0, + 12804191.5 + ], + [ + 33.0, + 13805905.5 + ], + [ + 34.0, + 14727712.0 + ], + [ + 35.0, + 15585080.5 + ], + [ + 36.0, + 16374484.0 + ], + [ + 37.0, + 16952170.0 + ], + [ + 38.0, + 17177579.5 + ], + [ + 39.0, + 17067127.0 + ], + [ + 40.0, + 16677434.5 + ], + [ + 41.0, + 16016786.0 + ], + [ + 42.0, + 15118808.0 + ], + [ + 43.0, + 14121223.5 + ], + [ + 44.0, + 13192230.0 + ], + [ + 45.0, + 12433874.0 + ], + [ + 46.0, + 11835754.5 + ], + [ + 47.0, + 11384294.5 + ], + [ + 48.0, + 11026719.5 + ], + [ + 49.0, + 10633079.0 + ], + [ + 50.0, + 10133225.0 + ], + [ + 51.0, + 9538431.5 + ], + [ + 52.0, + 8895944.0 + ], + [ + 53.0, + 8242808.5 + ], + [ + 54.0, + 7619290.5 + ], + [ + 55.0, + 7062450.0 + ], + [ + 56.0, + 6536603.5 + ], + [ + 57.0, + 5978710.5 + ], + [ + 58.0, + 5382976.5 + ], + [ + 59.0, + 4738997.0 + ], + [ + 60.0, + 4063009.5 + ], + [ + 61.0, + 3423519.5 + ], + [ + 62.0, + 2863743.0 + ], + [ + 63.0, + 2393006.0 + ], + [ + 64.0, + 2004313.5 + ], + [ + 65.0, + 1679017.0 + ], + [ + 66.0, + 1400222.0 + ], + [ + 67.0, + 1159955.0 + ], + [ + 68.0, + 955384.0 + ], + [ + 69.0, + 786243.5 + ], + [ + 70.0, + 650951.5 + ], + [ + 71.0, + 544227.0 + ], + [ + 72.0, + 458777.5 + ], + [ + 73.0, + 386679.0 + ], + [ + 74.0, + 321739.0 + ], + [ + 75.0, + 270789.0 + ], + [ + 76.0, + 231178.0 + ], + [ + 77.0, + 198460.5 + ], + [ + 78.0, + 174816.0 + ], + [ + 79.0, + 153453.0 + ], + [ + 80.0, + 129289.0 + ], + [ + 81.0, + 108008.0 + ], + [ + 82.0, + 89797.0 + ], + [ + 83.0, + 73313.5 + ], + [ + 84.0, + 63332.5 + ], + [ + 85.0, + 55071.0 + ], + [ + 86.0, + 43663.5 + ], + [ + 87.0, + 32275.0 + ], + [ + 88.0, + 22745.5 + ], + [ + 89.0, + 15147.5 + ], + [ + 90.0, + 11081.0 + ], + [ + 91.0, + 8261.0 + ], + [ + 92.0, + 6027.0 + ], + [ + 93.0, + 4176.0 + ], + [ + 94.0, + 3032.5 + ], + [ + 95.0, + 2353.0 + ], + [ + 96.0, + 1812.5 + ], + [ + 97.0, + 1415.0 + ], + [ + 98.0, + 1280.5 + ], + [ + 99.0, + 1278.0 + ], + [ + 100.0, + 1384.5 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 0.0, + 5934.0 + ], + [ + 1.0, + 5714.0 + ], + [ + 2.0, + 6433.0 + ], + [ + 3.0, + 8654.5 + ], + [ + 4.0, + 11339.0 + ], + [ + 5.0, + 14205.0 + ], + [ + 6.0, + 21991.5 + ], + [ + 7.0, + 34895.5 + ], + [ + 8.0, + 51055.0 + ], + [ + 9.0, + 63652.5 + ], + [ + 10.0, + 76186.0 + ], + [ + 11.0, + 102407.5 + ], + [ + 12.0, + 145003.0 + ], + [ + 13.0, + 189306.5 + ], + [ + 14.0, + 230738.5 + ], + [ + 15.0, + 294227.0 + ], + [ + 16.0, + 387180.5 + ], + [ + 17.0, + 534469.5 + ], + [ + 18.0, + 780896.5 + ], + [ + 19.0, + 1146370.0 + ], + [ + 20.0, + 1647312.0 + ], + [ + 21.0, + 2284312.5 + ], + [ + 22.0, + 3054915.0 + ], + [ + 23.0, + 3955172.5 + ], + [ + 24.0, + 4974421.5 + ], + [ + 25.0, + 6128258.5 + ], + [ + 26.0, + 7391674.5 + ], + [ + 27.0, + 8715718.5 + ], + [ + 28.0, + 10080978.5 + ], + [ + 29.0, + 11448659.5 + ], + [ + 30.0, + 12773496.5 + ], + [ + 31.0, + 14030639.5 + ], + [ + 32.0, + 15243803.5 + ], + [ + 33.0, + 16399036.5 + ], + [ + 34.0, + 17454991.0 + ], + [ + 35.0, + 18429973.5 + ], + [ + 36.0, + 19320535.0 + ], + [ + 37.0, + 19952466.5 + ], + [ + 38.0, + 20164792.5 + ], + [ + 39.0, + 19985590.5 + ], + [ + 40.0, + 19461679.5 + ], + [ + 41.0, + 18624456.5 + ], + [ + 42.0, + 17524839.0 + ], + [ + 43.0, + 16313769.0 + ], + [ + 44.0, + 15186505.5 + ], + [ + 45.0, + 14251544.5 + ], + [ + 46.0, + 13502024.5 + ], + [ + 47.0, + 12929070.0 + ], + [ + 48.0, + 12444534.5 + ], + [ + 49.0, + 11919604.0 + ], + [ + 50.0, + 11291735.0 + ], + [ + 51.0, + 10548069.0 + ], + [ + 52.0, + 9760784.5 + ], + [ + 53.0, + 8987941.5 + ], + [ + 54.0, + 8278435.5 + ], + [ + 55.0, + 7669205.5 + ], + [ + 56.0, + 7108364.0 + ], + [ + 57.0, + 6520786.5 + ], + [ + 58.0, + 5892353.5 + ], + [ + 59.0, + 5201342.5 + ], + [ + 60.0, + 4471219.5 + ], + [ + 61.0, + 3769510.5 + ], + [ + 62.0, + 3149765.5 + ], + [ + 63.0, + 2628953.5 + ], + [ + 64.0, + 2196245.0 + ], + [ + 65.0, + 1838796.5 + ], + [ + 66.0, + 1532539.5 + ], + [ + 67.0, + 1268723.0 + ], + [ + 68.0, + 1043195.5 + ], + [ + 69.0, + 856375.0 + ], + [ + 70.0, + 708379.5 + ], + [ + 71.0, + 591782.0 + ], + [ + 72.0, + 499695.0 + ], + [ + 73.0, + 421205.5 + ], + [ + 74.0, + 350883.0 + ], + [ + 75.0, + 295879.5 + ], + [ + 76.0, + 252431.0 + ], + [ + 77.0, + 218037.5 + ], + [ + 78.0, + 192055.5 + ], + [ + 79.0, + 167705.0 + ], + [ + 80.0, + 140854.5 + ], + [ + 81.0, + 118223.0 + ], + [ + 82.0, + 99472.0 + ], + [ + 83.0, + 81029.5 + ], + [ + 84.0, + 69713.5 + ], + [ + 85.0, + 60293.5 + ], + [ + 86.0, + 48060.5 + ], + [ + 87.0, + 36315.0 + ], + [ + 88.0, + 26141.5 + ], + [ + 89.0, + 17828.5 + ], + [ + 90.0, + 13113.5 + ], + [ + 91.0, + 9805.0 + ], + [ + 92.0, + 7185.0 + ], + [ + 93.0, + 5176.5 + ], + [ + 94.0, + 3884.0 + ], + [ + 95.0, + 2947.0 + ], + [ + 96.0, + 2231.5 + ], + [ + 97.0, + 1867.5 + ], + [ + 98.0, + 1858.0 + ], + [ + 99.0, + 1836.0 + ], + [ + 100.0, + 1811.0 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 0.0, + 5796.0 + ], + [ + 1.0, + 5875.5 + ], + [ + 2.0, + 7018.5 + ], + [ + 3.0, + 9590.0 + ], + [ + 4.0, + 12596.0 + ], + [ + 5.0, + 15996.5 + ], + [ + 6.0, + 23644.5 + ], + [ + 7.0, + 36598.0 + ], + [ + 8.0, + 53009.5 + ], + [ + 9.0, + 65605.0 + ], + [ + 10.0, + 78782.5 + ], + [ + 11.0, + 104535.0 + ], + [ + 12.0, + 144840.5 + ], + [ + 13.0, + 188486.0 + ], + [ + 14.0, + 232239.0 + ], + [ + 15.0, + 296963.0 + ], + [ + 16.0, + 392635.5 + ], + [ + 17.0, + 543095.5 + ], + [ + 18.0, + 782869.0 + ], + [ + 19.0, + 1136285.0 + ], + [ + 20.0, + 1620572.0 + ], + [ + 21.0, + 2236533.0 + ], + [ + 22.0, + 2981339.5 + ], + [ + 23.0, + 3849382.0 + ], + [ + 24.0, + 4842153.5 + ], + [ + 25.0, + 5963925.5 + ], + [ + 26.0, + 7187659.5 + ], + [ + 27.0, + 8470041.5 + ], + [ + 28.0, + 9790383.0 + ], + [ + 29.0, + 11119576.5 + ], + [ + 30.0, + 12399120.0 + ], + [ + 31.0, + 13615680.5 + ], + [ + 32.0, + 14791596.5 + ], + [ + 33.0, + 15897439.0 + ], + [ + 34.0, + 16901379.5 + ], + [ + 35.0, + 17820614.0 + ], + [ + 36.0, + 18633558.5 + ], + [ + 37.0, + 19192820.0 + ], + [ + 38.0, + 19370330.0 + ], + [ + 39.0, + 19173048.0 + ], + [ + 40.0, + 18668299.0 + ], + [ + 41.0, + 17900081.5 + ], + [ + 42.0, + 16895400.5 + ], + [ + 43.0, + 15792141.5 + ], + [ + 44.0, + 14763065.5 + ], + [ + 45.0, + 13898129.5 + ], + [ + 46.0, + 13199671.0 + ], + [ + 47.0, + 12656473.5 + ], + [ + 48.0, + 12193884.0 + ], + [ + 49.0, + 11689560.5 + ], + [ + 50.0, + 11073064.5 + ], + [ + 51.0, + 10339360.0 + ], + [ + 52.0, + 9551711.5 + ], + [ + 53.0, + 8779991.0 + ], + [ + 54.0, + 8067256.0 + ], + [ + 55.0, + 7450707.0 + ], + [ + 56.0, + 6890328.5 + ], + [ + 57.0, + 6312561.5 + ], + [ + 58.0, + 5710384.0 + ], + [ + 59.0, + 5053268.0 + ], + [ + 60.0, + 4362307.5 + ], + [ + 61.0, + 3701870.5 + ], + [ + 62.0, + 3110882.0 + ], + [ + 63.0, + 2610002.0 + ], + [ + 64.0, + 2191882.5 + ], + [ + 65.0, + 1840038.5 + ], + [ + 66.0, + 1538070.0 + ], + [ + 67.0, + 1275569.0 + ], + [ + 68.0, + 1053232.0 + ], + [ + 69.0, + 869379.5 + ], + [ + 70.0, + 720688.0 + ], + [ + 71.0, + 603645.5 + ], + [ + 72.0, + 512288.0 + ], + [ + 73.0, + 436452.5 + ], + [ + 74.0, + 366542.5 + ], + [ + 75.0, + 309949.5 + ], + [ + 76.0, + 265027.0 + ], + [ + 77.0, + 228108.5 + ], + [ + 78.0, + 201969.0 + ], + [ + 79.0, + 178477.0 + ], + [ + 80.0, + 153914.0 + ], + [ + 81.0, + 132637.5 + ], + [ + 82.0, + 112239.0 + ], + [ + 83.0, + 92998.5 + ], + [ + 84.0, + 80127.0 + ], + [ + 85.0, + 69876.0 + ], + [ + 86.0, + 58863.0 + ], + [ + 87.0, + 48227.0 + ], + [ + 88.0, + 38468.5 + ], + [ + 89.0, + 30027.0 + ], + [ + 90.0, + 24394.0 + ], + [ + 91.0, + 19984.0 + ], + [ + 92.0, + 16540.0 + ], + [ + 93.0, + 13995.5 + ], + [ + 94.0, + 12142.5 + ], + [ + 95.0, + 10727.0 + ], + [ + 96.0, + 9531.5 + ], + [ + 97.0, + 8725.0 + ], + [ + 98.0, + 8606.0 + ], + [ + 99.0, + 10664.0 + ], + [ + 100.0, + 17309.5 + ] + ], + "color": "#f0ad4e", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 0.0, + 4888.0 + ], + [ + 1.0, + 5122.5 + ], + [ + 2.0, + 6266.5 + ], + [ + 3.0, + 8519.0 + ], + [ + 4.0, + 11391.0 + ], + [ + 5.0, + 14733.5 + ], + [ + 6.0, + 22238.5 + ], + [ + 7.0, + 34450.0 + ], + [ + 8.0, + 49398.5 + ], + [ + 9.0, + 60908.0 + ], + [ + 10.0, + 73220.0 + ], + [ + 11.0, + 96619.5 + ], + [ + 12.0, + 133484.0 + ], + [ + 13.0, + 173720.0 + ], + [ + 14.0, + 213279.5 + ], + [ + 15.0, + 271099.5 + ], + [ + 16.0, + 356759.5 + ], + [ + 17.0, + 493073.5 + ], + [ + 18.0, + 712654.5 + ], + [ + 19.0, + 1035633.0 + ], + [ + 20.0, + 1476431.0 + ], + [ + 21.0, + 2039078.0 + ], + [ + 22.0, + 2722735.5 + ], + [ + 23.0, + 3519504.5 + ], + [ + 24.0, + 4430121.5 + ], + [ + 25.0, + 5462718.5 + ], + [ + 26.0, + 6588204.5 + ], + [ + 27.0, + 7768654.5 + ], + [ + 28.0, + 8989610.5 + ], + [ + 29.0, + 10221493.5 + ], + [ + 30.0, + 11411573.5 + ], + [ + 31.0, + 12545796.5 + ], + [ + 32.0, + 13646198.5 + ], + [ + 33.0, + 14691688.0 + ], + [ + 34.0, + 15642726.0 + ], + [ + 35.0, + 16514521.5 + ], + [ + 36.0, + 17301601.0 + ], + [ + 37.0, + 17858787.0 + ], + [ + 38.0, + 18051684.0 + ], + [ + 39.0, + 17895922.0 + ], + [ + 40.0, + 17455973.0 + ], + [ + 41.0, + 16767511.0 + ], + [ + 42.0, + 15858116.5 + ], + [ + 43.0, + 14845587.0 + ], + [ + 44.0, + 13891318.5 + ], + [ + 45.0, + 13089700.0 + ], + [ + 46.0, + 12443387.0 + ], + [ + 47.0, + 11935643.5 + ], + [ + 48.0, + 11501185.5 + ], + [ + 49.0, + 11038451.0 + ], + [ + 50.0, + 10470105.5 + ], + [ + 51.0, + 9797160.5 + ], + [ + 52.0, + 9072430.5 + ], + [ + 53.0, + 8346851.5 + ], + [ + 54.0, + 7682078.5 + ], + [ + 55.0, + 7102516.5 + ], + [ + 56.0, + 6574603.0 + ], + [ + 57.0, + 6033900.5 + ], + [ + 58.0, + 5460896.5 + ], + [ + 59.0, + 4838997.5 + ], + [ + 60.0, + 4182937.0 + ], + [ + 61.0, + 3551199.5 + ], + [ + 62.0, + 2990210.5 + ], + [ + 63.0, + 2512080.5 + ], + [ + 64.0, + 2112769.0 + ], + [ + 65.0, + 1776751.5 + ], + [ + 66.0, + 1487054.0 + ], + [ + 67.0, + 1235369.5 + ], + [ + 68.0, + 1022244.0 + ], + [ + 69.0, + 847831.5 + ], + [ + 70.0, + 703456.5 + ], + [ + 71.0, + 589375.5 + ], + [ + 72.0, + 501220.5 + ], + [ + 73.0, + 427720.5 + ], + [ + 74.0, + 360613.0 + ], + [ + 75.0, + 305343.0 + ], + [ + 76.0, + 261946.5 + ], + [ + 77.0, + 226716.5 + ], + [ + 78.0, + 200825.0 + ], + [ + 79.0, + 177600.0 + ], + [ + 80.0, + 153051.5 + ], + [ + 81.0, + 131331.5 + ], + [ + 82.0, + 111372.0 + ], + [ + 83.0, + 93010.5 + ], + [ + 84.0, + 80665.5 + ], + [ + 85.0, + 70606.5 + ], + [ + 86.0, + 59467.0 + ], + [ + 87.0, + 49067.5 + ], + [ + 88.0, + 39807.5 + ], + [ + 89.0, + 31569.0 + ], + [ + 90.0, + 26006.5 + ], + [ + 91.0, + 21778.0 + ], + [ + 92.0, + 18390.5 + ], + [ + 93.0, + 15929.5 + ], + [ + 94.0, + 14044.5 + ], + [ + 95.0, + 12542.0 + ], + [ + 96.0, + 11334.0 + ], + [ + 97.0, + 10655.5 + ], + [ + 98.0, + 10687.0 + ], + [ + 99.0, + 12794.5 + ], + [ + 100.0, + 19086.5 + ] + ], + "color": "#f0ad4e", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_per_sequence_gc_content_plot", + "title": "FastQC: Per Sequence GC Content", + "xlab": "% GC", + "ylab": "Percentage", + "ymin": 0, + "xmax": 100, + "xmin": 0, + "yDecimals": false, + "tt_label": "{point.x}% GC: {point.y}", + "colors": { + "P4107_1003": "#f0ad4e", + "P4107_1004": "#f0ad4e", + "P4107_1005": "#f0ad4e", + "P4107_1002": "#f0ad4e", + "P4107_1001": "#f0ad4e", + "P4107_1006": "#f0ad4e" + }, + "data_labels": [ + { + "name": "Percentages", + "ylab": "Percentage", + "tt_suffix": "%", + "categories": [] + }, + { + "name": "Counts", + "ylab": "Count", + "tt_suffix": "", + "categories": [] + } + ] + } + }, + "fastqc_per_base_n_content_plot": { + "id": "fastqc_per_base_n_content_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Per Base N Content", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1, + "shapes": [ + { + "fillcolor": "#e6c3c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 20, + "y1": 100 + }, + { + "fillcolor": "#e6dcc3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 5, + "y1": 20 + }, + { + "fillcolor": "#c3e6c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 0, + "y1": 5 + } + ] + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_per_base_n_content_plot", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Per Base N Content" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Position in Read (bp)" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "%", + "title": { + "text": "Percentage N-Count" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": 100, + "minallowed": 0, + "maxallowed": null + }, + "range": [ + 0, + 100 + ] + } + }, + "trace_params": { + "hovertemplate": "%{text}
Base %{x}: %{y:.2f}%", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + [ + 1, + 1.196644860519733 + ], + [ + 2, + 0.0025394118756507486 + ], + [ + 3, + 0.012835748128674256 + ], + [ + 4, + 0.006019665293157934 + ], + [ + 5, + 0.007065044784109531 + ], + [ + 6, + 0.0017948722681301104 + ], + [ + 7, + 0.025852677989570794 + ], + [ + 8, + 0.0009051265816917565 + ], + [ + 9, + 0.005973261914257838 + ], + [ + 12, + 0.007831378338124821 + ], + [ + 17, + 0.009296682338808294 + ], + [ + 22, + 0.008708297922080676 + ], + [ + 27, + 0.011700690197601126 + ], + [ + 32, + 0.0063642494854621295 + ], + [ + 37, + 0.010877734093602123 + ], + [ + 42, + 0.009744970262160008 + ], + [ + 47, + 0.007941442981785611 + ], + [ + 52, + 0.011218355750180016 + ], + [ + 57, + 0.00820124976499817 + ], + [ + 62, + 0.01838256820470301 + ], + [ + 67, + 0.007711720186916147 + ], + [ + 72, + 0.0104124489775297 + ], + [ + 77, + 0.015821883768837385 + ], + [ + 82, + 0.008674199259383304 + ], + [ + 87, + 0.013969763287187832 + ], + [ + 92, + 0.01054894790557515 + ], + [ + 97, + 0.013678360495420825 + ], + [ + 102, + 0.014848507723122904 + ], + [ + 107, + 0.00759696306673737 + ], + [ + 112, + 0.009469626167810113 + ], + [ + 117, + 0.011060323568779803 + ], + [ + 122, + 0.01642163440646413 + ], + [ + 127, + 0.01603789410454873 + ], + [ + 132, + 0.009405652071281554 + ], + [ + 137, + 0.012599872975703431 + ], + [ + 142, + 0.009821249074891288 + ], + [ + 147, + 0.01024310271385834 + ], + [ + 150, + 0.009537719215948906 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + [ + 1, + 1.1286888398411101 + ], + [ + 2, + 0.06517699558853589 + ], + [ + 3, + 0.006731514284985563 + ], + [ + 4, + 0.00843938207460463 + ], + [ + 5, + 0.003282769691710965 + ], + [ + 6, + 0.008633716833298184 + ], + [ + 7, + 0.017178402311836045 + ], + [ + 8, + 0.010012889229624565 + ], + [ + 9, + 0.009536815562394425 + ], + [ + 12, + 0.01350645169547825 + ], + [ + 17, + 0.012760819910806668 + ], + [ + 22, + 0.013514773686340966 + ], + [ + 27, + 0.014039105602261038 + ], + [ + 32, + 0.011692769094666235 + ], + [ + 37, + 0.01175148794639589 + ], + [ + 42, + 0.011126083359327545 + ], + [ + 47, + 0.014020276516789533 + ], + [ + 52, + 0.012529524354706088 + ], + [ + 57, + 0.014848337853414146 + ], + [ + 62, + 0.010201412542184938 + ], + [ + 67, + 0.012629713686042118 + ], + [ + 72, + 0.009694328998388147 + ], + [ + 77, + 0.01206339988325595 + ], + [ + 82, + 0.010682042383183495 + ], + [ + 87, + 0.013435412577946256 + ], + [ + 92, + 0.01332983022459863 + ], + [ + 97, + 0.012492610048868126 + ], + [ + 102, + 0.013687303899142826 + ], + [ + 107, + 0.23374542933248493 + ], + [ + 112, + 0.011713039418778768 + ], + [ + 117, + 0.008943304191704972 + ], + [ + 122, + 0.012717071344316088 + ], + [ + 127, + 0.010535779906903608 + ], + [ + 132, + 0.010623370023022903 + ], + [ + 137, + 0.2246780391429443 + ], + [ + 142, + 0.00989703223951348 + ], + [ + 147, + 0.010540800996362676 + ], + [ + 150, + 0.014853591400718541 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + [ + 1, + 1.511424756420688 + ], + [ + 2, + 0.0 + ], + [ + 3, + 0.0038040794753569367 + ], + [ + 4, + 9.597129206567775e-05 + ], + [ + 5, + 0.0 + ], + [ + 6, + 0.0 + ], + [ + 7, + 0.0 + ], + [ + 8, + 0.0018190500696603218 + ], + [ + 9, + 0.0 + ], + [ + 12, + 0.0033286738575591304 + ], + [ + 17, + 0.00035643830599078766 + ], + [ + 22, + 0.0023686827592441914 + ], + [ + 27, + 0.0035049457669473942 + ], + [ + 32, + 0.001644957218594322 + ], + [ + 37, + 0.005191305093664736 + ], + [ + 42, + 0.003592988995755473 + ], + [ + 47, + 0.001376840319069774 + ], + [ + 52, + 0.004215736046492759 + ], + [ + 57, + 0.004304845622990456 + ], + [ + 62, + 0.002397705961579029 + ], + [ + 67, + 0.005494565104003672 + ], + [ + 72, + 0.004364746545381208 + ], + [ + 77, + 0.004678484580844223 + ], + [ + 82, + 0.0049680675229902245 + ], + [ + 87, + 0.0038894800164124815 + ], + [ + 92, + 0.007728795328469861 + ], + [ + 97, + 0.009771963864722205 + ], + [ + 102, + 0.007279260232881063 + ], + [ + 107, + 0.010079535628762641 + ], + [ + 112, + 0.006624708203227325 + ], + [ + 117, + 0.002995417023081791 + ], + [ + 122, + 0.0038606886287927784 + ], + [ + 127, + 0.0008263730965114204 + ], + [ + 132, + 0.0020676018072275193 + ], + [ + 137, + 0.006810020886505833 + ], + [ + 142, + 0.005752667607834411 + ], + [ + 147, + 0.007548907109525499 + ], + [ + 150, + 0.004146122087537872 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + [ + 1, + 1.5367131108196457 + ], + [ + 2, + 6.423569373592726e-05 + ], + [ + 3, + 0.010346362895428632 + ], + [ + 4, + 0.0 + ], + [ + 5, + 0.0007870879848080336 + ], + [ + 6, + 0.0 + ], + [ + 7, + 0.006560270959324495 + ], + [ + 8, + 0.0 + ], + [ + 9, + 0.0 + ], + [ + 12, + 6.664453225102453e-05 + ], + [ + 17, + 0.00012542019201939797 + ], + [ + 22, + 0.00010249607881738892 + ], + [ + 27, + 0.00041937878547843504 + ], + [ + 32, + 0.0007397543079863722 + ], + [ + 37, + 0.0010818495244387697 + ], + [ + 42, + 0.0022453988218479218 + ], + [ + 47, + 0.0010688016491486596 + ], + [ + 52, + 0.0013414420217490858 + ], + [ + 57, + 0.0019940365227975217 + ], + [ + 62, + 0.003616630146567044 + ], + [ + 67, + 0.0025228167241699577 + ], + [ + 72, + 0.0007927086080099272 + ], + [ + 77, + 0.006256717159113654 + ], + [ + 82, + 0.002098941440130008 + ], + [ + 87, + 0.006109697715075551 + ], + [ + 92, + 0.009979456642270734 + ], + [ + 97, + 0.003327529377446786 + ], + [ + 102, + 0.003586599959745498 + ], + [ + 107, + 0.004200773486478133 + ], + [ + 112, + 0.0031171574804616247 + ], + [ + 117, + 0.004140472228983531 + ], + [ + 122, + 0.008379184922074446 + ], + [ + 127, + 0.004595863150262671 + ], + [ + 132, + 0.005549723054932605 + ], + [ + 137, + 0.0041113252829508545 + ], + [ + 142, + 0.009244680600548895 + ], + [ + 147, + 0.009431847353171954 + ], + [ + 150, + 0.0031332966985127765 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + [ + 1, + 1.4947311795034983 + ], + [ + 2, + 0.04013147163450877 + ], + [ + 3, + 0.01529117901084342 + ], + [ + 4, + 0.02165319335059699 + ], + [ + 5, + 0.013750599695280018 + ], + [ + 6, + 0.007563707508287542 + ], + [ + 7, + 0.007517035802480931 + ], + [ + 8, + 0.012653401584879436 + ], + [ + 9, + 0.009757690705143514 + ], + [ + 12, + 0.013211066515676677 + ], + [ + 17, + 0.013702234591298122 + ], + [ + 22, + 0.016364008708477717 + ], + [ + 27, + 0.025398164066435185 + ], + [ + 32, + 0.027513094480181546 + ], + [ + 37, + 0.01266042299194769 + ], + [ + 42, + 0.02468280659336392 + ], + [ + 47, + 0.015503142899515572 + ], + [ + 52, + 0.015951686903993283 + ], + [ + 57, + 0.02710622459177364 + ], + [ + 62, + 0.018359657806852846 + ], + [ + 67, + 0.016946744192748067 + ], + [ + 72, + 0.011744790207853186 + ], + [ + 77, + 0.013316346319305929 + ], + [ + 82, + 0.012101890710865548 + ], + [ + 87, + 0.017101380357827673 + ], + [ + 92, + 0.012006027853186657 + ], + [ + 97, + 0.017855809896114027 + ], + [ + 102, + 0.013508443756214385 + ], + [ + 107, + 0.01405582439077636 + ], + [ + 112, + 0.017421680427323494 + ], + [ + 117, + 0.01699097905727805 + ], + [ + 122, + 0.012818652465350461 + ], + [ + 127, + 0.015032915137915324 + ], + [ + 132, + 0.01858772962938746 + ], + [ + 137, + 0.017847549417210205 + ], + [ + 142, + 0.012314061111510299 + ], + [ + 147, + 0.008940192410426455 + ], + [ + 150, + 0.018008050522311525 + ] + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + [ + 1, + 1.1595082334225675 + ], + [ + 2, + 0.0054302522902892145 + ], + [ + 3, + 0.001964748766659575 + ], + [ + 4, + 0.004096958994733481 + ], + [ + 5, + 0.013268728363631686 + ], + [ + 6, + 0.0025121425555514787 + ], + [ + 7, + 0.021366008513705396 + ], + [ + 8, + 0.009181697914041347 + ], + [ + 9, + 0.004263758553138268 + ], + [ + 12, + 0.014766614874227067 + ], + [ + 17, + 0.014064909430377082 + ], + [ + 22, + 0.01284193330307848 + ], + [ + 27, + 0.011658980244423573 + ], + [ + 32, + 0.012406621757135828 + ], + [ + 37, + 0.01217349951717485 + ], + [ + 42, + 0.011460982990835667 + ], + [ + 47, + 0.012448145139267813 + ], + [ + 52, + 0.01171722770926334 + ], + [ + 57, + 0.01299743638345374 + ], + [ + 62, + 0.013103208484378681 + ], + [ + 67, + 0.009705439702058923 + ], + [ + 72, + 0.011105629328445783 + ], + [ + 77, + 0.009955903800869921 + ], + [ + 82, + 0.015110495551118208 + ], + [ + 87, + 0.011863773035576118 + ], + [ + 92, + 0.010190217466248076 + ], + [ + 97, + 0.011204120496265752 + ], + [ + 102, + 0.011217579190793123 + ], + [ + 107, + 0.01180848207084564 + ], + [ + 112, + 0.008354495659582047 + ], + [ + 117, + 0.011052191692142027 + ], + [ + 122, + 0.009358955539996912 + ], + [ + 127, + 0.013623243615542815 + ], + [ + 132, + 0.011160302517034018 + ], + [ + 137, + 0.006898970941597407 + ], + [ + 142, + 0.011610970212798067 + ], + [ + 147, + 0.009994735444096433 + ], + [ + 150, + 0.009821647807100988 + ] + ], + "color": "#5cb85c", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_per_base_n_content_plot", + "title": "FastQC: Per Base N Content", + "ylab": "Percentage N-Count", + "xlab": "Position in Read (bp)", + "yCeiling": 100, + "yMinRange": 5, + "ymin": 0, + "xmin": 0, + "xDecimals": false, + "colors": { + "P4107_1003": "#5cb85c", + "P4107_1004": "#5cb85c", + "P4107_1005": "#5cb85c", + "P4107_1002": "#5cb85c", + "P4107_1001": "#5cb85c", + "P4107_1006": "#5cb85c" + }, + "tt_label": "Base {point.x}: {point.y:.2f}%", + "yPlotBands": [ + { + "from": 20, + "to": 100, + "color": "#e6c3c3" + }, + { + "from": 5, + "to": 20, + "color": "#e6dcc3" + }, + { + "from": 0, + "to": 5, + "color": "#c3e6c3" + } + ] + } + }, + "fastqc_sequence_duplication_levels_plot": { + "id": "fastqc_sequence_duplication_levels_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Sequence Duplication Levels", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1 + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_sequence_duplication_levels_plot", + "dconfig": { + "categories": [ + 1.0, + 2.0, + 3.0, + 4.0, + 5.0, + 6.0, + 7.0, + 8.0, + 9.0, + ">10", + ">50", + ">100", + ">500", + ">1k", + ">5k", + ">10k+" + ] + }, + "layout": { + "title": { + "text": "FastQC: Sequence Duplication Levels" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Sequence Duplication Level" + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + }, + "type": "category" + }, + "yaxis": { + "hoverformat": ",.2f", + "ticksuffix": "%", + "title": { + "text": "% of Library" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": 0, + "maxallowed": 100 + } + } + }, + "trace_params": { + "hovertemplate": "%{text}
%{x}: %{y}", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001", + "data": [ + 95.55199525143145, + 1.087374088251428, + 0.24713306805934845, + 0.14828139692055586, + 0.13592604026319846, + 0.08649929698689472, + 0.03707151631068243, + 0.037071905341515214, + 0.024714862917200944, + 0.5190772246527684, + 0.2720435279872413, + 0.5573088535549824, + 0.03735834600918427, + 0.06322477746384567, + 0.013134274935384929, + 1.1817855689142631 + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1002", + "data": [ + 97.31746117070257, + 0.8322055612758856, + 0.11178984696955385, + 0.07452725813786741, + 0.08694927690920692, + 0.04968576342603937, + 0.0, + 0.03726501607780344, + 0.0, + 0.3851355254043767, + 0.1242886289080721, + 0.2862414371719626, + 0.024993792301641404, + 0.025653553127539055, + 0.0, + 0.6438031695874814 + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1003", + "data": [ + 90.984104061615, + 3.543742125539718, + 0.6195411617956669, + 0.35933725244927006, + 0.16108373117823077, + 0.1363029002485554, + 0.0743477355355224, + 0.02478281152537286, + 0.09913217816241036, + 1.1525886770224356, + 0.6199327003651913, + 1.0553190700777042, + 0.1371614331351406, + 0.08820618629730202, + 0.013544504019542724, + 0.9308734710329104 + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1004", + "data": [ + 94.62543805340307, + 2.10557321819072, + 0.6478739314026088, + 0.22426587010991184, + 0.1370524754188994, + 0.08721591822298848, + 0.074757106986924, + 0.099676950191924, + 0.0498388788694074, + 0.5732149455689484, + 0.26179101863919335, + 0.6365725261397052, + 0.10018344666515303, + 0.025162300305306362, + 0.0, + 0.3513833598852209 + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1005", + "data": [ + 91.02680185354684, + 3.520677900072772, + 1.0698969243405088, + 0.3607822102781069, + 0.22393565699535223, + 0.037322921384848266, + 0.03732323327242777, + 0.0746470903228369, + 0.07464771410463215, + 1.3811521840678616, + 0.43567719385838355, + 1.0842828726985034, + 0.06255828734390137, + 0.11350750020152353, + 0.0, + 0.4967864575115237 + ], + "color": "#5cb85c", + "marker": {} + }, + { + "name": "P4107_1006", + "data": [ + 97.75286444331208, + 0.7096233439939603, + 0.17429499266440296, + 0.09959801852844107, + 0.0248997245994066, + 0.037349916851573954, + 0.0, + 0.024900384508672203, + 0.012450302240490877, + 0.28639137922931385, + 0.12457221728805754, + 0.2744519548251638, + 0.01255906387220272, + 0.01258308482104328, + 0.0, + 0.45346117326521956 + ], + "color": "#5cb85c", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_sequence_duplication_levels_plot", + "title": "FastQC: Sequence Duplication Levels", + "ylab": "% of Library", + "xlab": "Sequence Duplication Level", + "ymax": 100, + "ymin": 0, + "colors": { + "P4107_1003": "#5cb85c", + "P4107_1004": "#5cb85c", + "P4107_1005": "#5cb85c", + "P4107_1002": "#5cb85c", + "P4107_1001": "#5cb85c", + "P4107_1006": "#5cb85c" + }, + "tt_decimals": 2, + "tt_suffix": "%", + "data_labels": [ + { + "categories": [ + 1.0, + 2.0, + 3.0, + 4.0, + 5.0, + 6.0, + 7.0, + 8.0, + 9.0, + ">10", + ">50", + ">100", + ">500", + ">1k", + ">5k", + ">10k+" + ] + } + ] + } + }, + "fastqc_overrepresented_sequences_plot": { + "id": "fastqc_overrepresented_sequences_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 320, + "hoverlabel": { + "namelength": -1, + "bgcolor": "rgba(255, 255, 255, 0.8)", + "font": { + "color": "black" + } + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": true, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Overrepresented sequences sample summary", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "showgrid": false, + "categoryorder": "trace", + "type": "category" + }, + "barmode": "relative", + "bargroupgap": 0, + "bargap": 0.2, + "legend": { + "tracegroupgap": 0, + "traceorder": "normal" + }, + "hovermode": "y unified" + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_overrepresented_sequences_plot", + "dconfig": {}, + "layout": { + "title": { + "text": "FastQC: Overrepresented sequences sample summary" + }, + "xaxis": { + "title": { + "text": "Percentage of Total Sequences" + }, + "hoverformat": ",.2f", + "ticksuffix": "%", + "autorangeoptions": { + "minallowed": 0, + "maxallowed": 1.157093800801598 + } + }, + "yaxis": { + "title": null, + "hoverformat": null, + "ticksuffix": "", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "showlegend": false + }, + "trace_params": { + "hovertemplate": "%{meta}: %{x}", + "orientation": "h", + "marker": { + "line": { + "width": 0 + } + }, + "textposition": "inside", + "insidetextanchor": "start" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "cats": [ + { + "name": "Top overrepresented sequence", + "data": [ + 0.390560945370475, + 0.464848744250051, + 0.31712941187230065, + 0.7694815927525448, + 0.6473386119798861, + 1.157093800801598 + ], + "color": "0.49,0.71,0.93" + } + ], + "samples": [ + "P4107_1006", + "P4107_1005", + "P4107_1004", + "P4107_1003", + "P4107_1002", + "P4107_1001" + ] + } + ], + "plot_type": "bar_graph", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "xaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_overrepresented_sequences_plot", + "title": "FastQC: Overrepresented sequences sample summary", + "ymin": 0, + "yCeiling": 100, + "yMinRange": 20, + "tt_decimals": 2, + "tt_suffix": "%", + "tt_percentages": false, + "cpswitch": false, + "ylab": "Percentage of Total Sequences" + } + }, + "fastqc_top_overrepresented_sequences_table": { + "id": "fastqc_top_overrepresented_sequences_table", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 40, + "l": 60, + "pad": 0, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Top overrepresented sequences", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": false, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "violingap": 0, + "grid": { + "columns": 1, + "roworder": "top to bottom", + "ygap": 0.4 + } + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_top_overrepresented_sequences_table", + "dconfig": { + "ylab": null + }, + "layout": { + "title": { + "text": null + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}: %{x}", + "orientation": "h", + "box": { + "visible": true + }, + "meanline": { + "visible": true + }, + "fillcolor": "grey", + "line": { + "width": 2, + "color": "grey" + }, + "opacity": 0.5, + "points": false, + "hoveron": "points" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "metrics": [ + "samples", + "total_count", + "total_percent" + ], + "header_by_metric": { + "samples": { + "title": "Samples", + "description": "Number of samples where this sequence is overrepresented", + "dmax": 4.0, + "dmin": 0.0, + "suffix": "", + "hidden": null, + "modify": null, + "tt_decimals": 2, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.02, + 4.0201 + ] + }, + "show_points": true, + "show_only_outliers": false + }, + "total_count": { + "title": "Occurrences", + "description": "Total number of occurrences of the sequence (among the samples where the sequence is overrepresented)", + "dmax": 11244411.0, + "dmin": 0.0, + "suffix": "", + "hidden": null, + "modify": null, + "tt_decimals": 2, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -56222.055, + 11300914.165275 + ] + }, + "show_points": true, + "show_only_outliers": false + }, + "total_percent": { + "title": "% of all reads", + "description": "Total number of occurrences as the percentage of all reads (among samples where the sequence is overrepresented)", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + } + }, + "violin_values_by_sample_by_metric": { + "samples": { + "ATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGGCTATAGTGTAGATCTC": 4, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGATTCCATCTCGTATG": 1, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACATTCAGAAATCTCGTATG": 1 + }, + "total_count": { + "ATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGGCTATAGTGTAGATCTC": 11244411, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGATTCCATCTCGTATG": 3319382, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACATTCAGAAATCTCGTATG": 1579829 + }, + "total_percent": { + "ATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGGCTATAGTGTAGATCTC": 0.4194431948512701, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGATTCCATCTCGTATG": 0.12382082005111682, + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACATTCAGAAATCTCGTATG": 0.05893136804397199 + } + }, + "scatter_values_by_sample_by_metric": { + "samples": {}, + "total_count": {}, + "total_percent": {} + }, + "all_samples": [ + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACATTCAGAAATCTCGTATG", + "ATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGATTCCATCTCGTATG", + "ATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGGCTATAGTGTAGATCTC" + ], + "scatter_trace_params": { + "mode": "markers", + "marker": { + "size": 4, + "color": "#0b79e6" + }, + "showlegend": false, + "hovertemplate": "%{text}: %{x}", + "hoverlabel": { + "bgcolor": "white" + } + } + } + ], + "plot_type": "violin", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "namespace": "FastQC", + "table_title": "FastQC: Top overrepresented sequences", + "col1_header": "Overrepresented sequence", + "sortRows": false + }, + "static": true, + "violin_height": 70, + "extra_height": 63 + }, + "fastqc_adapter_content_plot": { + "id": "fastqc_adapter_content_plot", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Adapter Content", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)" + }, + "hoverdistance": -1, + "shapes": [ + { + "fillcolor": "#e6c3c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 20, + "y1": 100 + }, + { + "fillcolor": "#e6dcc3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 5, + "y1": 20 + }, + { + "fillcolor": "#c3e6c3", + "layer": "below", + "line": { + "width": 0 + }, + "type": "rect", + "x0": 0, + "x1": 1, + "xref": "paper", + "y0": 0, + "y1": 5 + } + ] + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc_adapter_content_plot", + "dconfig": { + "categories": [] + }, + "layout": { + "title": { + "text": "FastQC: Adapter Content" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": "Position (bp)" + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "%", + "title": { + "text": "% of Sequences" + }, + "rangemode": "tozero", + "autorangeoptions": { + "clipmin": null, + "clipmax": 100, + "minallowed": 0, + "maxallowed": null + }, + "range": [ + 0, + 100 + ] + } + }, + "trace_params": { + "hovertemplate": "%{text}
Base %{x}: %{y:.2f}%", + "mode": "lines", + "line": { + "width": 2 + }, + "marker": { + "size": 4 + } + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "lines": [ + { + "name": "P4107_1001 - illumina_universal_adapter", + "data": [ + [ + 1, + 8.08148733653354e-06 + ], + [ + 2, + 1.0427725595527147e-05 + ], + [ + 3, + 1.3295350134297114e-05 + ], + [ + 4, + 1.5902281533178902e-05 + ], + [ + 5, + 2.0594758051166116e-05 + ], + [ + 6, + 2.4244462009600618e-05 + ], + [ + 7, + 3.284733562591052e-05 + ], + [ + 8, + 4.014674354277952e-05 + ], + [ + 9, + 5.99594221742811e-05 + ], + [ + 10, + 9.267641123024753e-05 + ], + [ + 12, + 0.00019525916177624584 + ], + [ + 14, + 0.0003995122368786339 + ], + [ + 16, + 0.0007346332682048875 + ], + [ + 18, + 0.001235685483069967 + ], + [ + 20, + 0.0019804857837304934 + ], + [ + 22, + 0.003134835007155349 + ], + [ + 24, + 0.004803531795579581 + ], + [ + 26, + 0.007085509195590753 + ], + [ + 28, + 0.009690615742493323 + ], + [ + 30, + 0.012641401392887618 + ], + [ + 32, + 0.016028587359454723 + ], + [ + 34, + 0.019570885744255292 + ], + [ + 36, + 0.023308443290832113 + ], + [ + 38, + 0.02732168383284068 + ], + [ + 40, + 0.031781752416617584 + ], + [ + 42, + 0.03645545902853285 + ], + [ + 44, + 0.04111573994374388 + ], + [ + 46, + 0.04603462845372398 + ], + [ + 48, + 0.05116598187271294 + ], + [ + 50, + 0.05643758820096175 + ], + [ + 52, + 0.06181386282487566 + ], + [ + 54, + 0.06732804411979042 + ], + [ + 56, + 0.07291847815812247 + ], + [ + 58, + 0.07869921818857288 + ], + [ + 60, + 0.08444632880397773 + ], + [ + 62, + 0.09021247001859442 + ], + [ + 64, + 0.0959268636449433 + ], + [ + 66, + 0.10188005218742974 + ], + [ + 68, + 0.10798861384128954 + ], + [ + 70, + 0.11410212866480722 + ], + [ + 72, + 0.120257354390707 + ], + [ + 74, + 0.1264297858638394 + ], + [ + 76, + 0.13279447852763934 + ], + [ + 78, + 0.13913883712652803 + ], + [ + 80, + 0.14542753774005054 + ], + [ + 82, + 0.15181308585504155 + ], + [ + 84, + 0.1581991553563123 + ], + [ + 86, + 0.1645098845401554 + ], + [ + 88, + 0.17088787255408963 + ], + [ + 90, + 0.17737300544851792 + ], + [ + 92, + 0.18393269658095418 + ], + [ + 94, + 0.19063355304863994 + ], + [ + 96, + 0.1973761204187078 + ], + [ + 98, + 0.20439358870478774 + ], + [ + 100, + 0.21152159088218025 + ], + [ + 102, + 0.21885997242346256 + ], + [ + 104, + 0.2265087091477817 + ], + [ + 106, + 0.23437721018902663 + ], + [ + 108, + 0.24256284443494547 + ], + [ + 110, + 0.25102350994344635 + ], + [ + 112, + 0.2598684371401424 + ], + [ + 114, + 0.26902919407581305 + ], + [ + 116, + 0.2785963716165693 + ], + [ + 118, + 0.2885969515023897 + ], + [ + 120, + 0.2988839028023772 + ], + [ + 122, + 0.3097014949886071 + ], + [ + 124, + 0.3210743635627989 + ], + [ + 126, + 0.33282484615011865 + ], + [ + 128, + 0.34504249084411803 + ], + [ + 130, + 0.3577604056735628 + ], + [ + 132, + 0.370969336031987 + ], + [ + 134, + 0.3847120355943322 + ], + [ + 136, + 0.39904351061311494 + ], + [ + 138, + 0.4140672562648706 + ] + ], + "color": "#7cb5ec", + "marker": {} + }, + { + "name": "P4107_1002 - illumina_universal_adapter", + "data": [ + [ + 1, + 8.36848243177983e-06 + ], + [ + 2, + 1.1622892266360874e-05 + ], + [ + 3, + 1.673696486355966e-05 + ], + [ + 4, + 2.1386121770104008e-05 + ], + [ + 5, + 2.6267736521975574e-05 + ], + [ + 6, + 3.347392972711932e-05 + ], + [ + 7, + 4.323715923086245e-05 + ], + [ + 8, + 4.974597890002454e-05 + ], + [ + 9, + 6.764523299022029e-05 + ], + [ + 10, + 0.0001103012476077647 + ], + [ + 12, + 0.00021897529029823884 + ], + [ + 14, + 0.00043876418305512294 + ], + [ + 16, + 0.0008047690605228269 + ], + [ + 18, + 0.001360575768700204 + ], + [ + 20, + 0.0021525596477300337 + ], + [ + 22, + 0.0033436736471866963 + ], + [ + 24, + 0.005140224104798096 + ], + [ + 26, + 0.007514316079124969 + ], + [ + 28, + 0.010285678511116055 + ], + [ + 30, + 0.013394453505599598 + ], + [ + 32, + 0.016961635371068415 + ], + [ + 34, + 0.020749303502830094 + ], + [ + 36, + 0.024785236613401245 + ], + [ + 38, + 0.029152654611409007 + ], + [ + 40, + 0.0338722462450875 + ], + [ + 42, + 0.038813486434285505 + ], + [ + 44, + 0.043852358918520934 + ], + [ + 46, + 0.049068712967663686 + ], + [ + 48, + 0.05454867421340752 + ], + [ + 50, + 0.060239823411631116 + ], + [ + 52, + 0.06606719290721647 + ], + [ + 54, + 0.07211516489801735 + ], + [ + 56, + 0.0782845961130017 + ], + [ + 58, + 0.08459082876996113 + ], + [ + 60, + 0.09085545147260696 + ], + [ + 62, + 0.09717993207042458 + ], + [ + 64, + 0.10348523489600268 + ], + [ + 66, + 0.1099665083104935 + ], + [ + 68, + 0.11658086384143414 + ], + [ + 70, + 0.12326623524412225 + ], + [ + 72, + 0.13002192514502187 + ], + [ + 74, + 0.13689221676366775 + ], + [ + 76, + 0.14389442820953685 + ], + [ + 78, + 0.15094266630878078 + ], + [ + 80, + 0.15797463235885176 + ], + [ + 82, + 0.1649451133088337 + ], + [ + 84, + 0.1719856802991818 + ], + [ + 86, + 0.17898231275676307 + ], + [ + 88, + 0.1860134652043754 + ], + [ + 90, + 0.1930527536765742 + ], + [ + 92, + 0.2001434153325903 + ], + [ + 94, + 0.20725790391775245 + ], + [ + 96, + 0.2144459654109607 + ], + [ + 98, + 0.2217120165112762 + ], + [ + 100, + 0.22907139943649057 + ], + [ + 102, + 0.23657060575566927 + ], + [ + 104, + 0.24431400904136422 + ], + [ + 106, + 0.25229242720868494 + ], + [ + 108, + 0.260450767748289 + ], + [ + 110, + 0.2689214154030901 + ], + [ + 112, + 0.27764265261515403 + ], + [ + 114, + 0.2864955771965958 + ], + [ + 116, + 0.29568324107530874 + ], + [ + 118, + 0.30514299686197716 + ], + [ + 120, + 0.3149112242093949 + ], + [ + 122, + 0.3249758353096047 + ], + [ + 124, + 0.33532671824633503 + ], + [ + 126, + 0.3458578722421166 + ], + [ + 128, + 0.3566935460152769 + ], + [ + 130, + 0.36791498358275765 + ], + [ + 132, + 0.3795223011734816 + ], + [ + 134, + 0.391580354526295 + ], + [ + 136, + 0.4040226606974343 + ], + [ + 138, + 0.41707051955565105 + ] + ], + "color": "#434348", + "marker": {} + }, + { + "name": "P4107_1003 - illumina_universal_adapter", + "data": [ + [ + 1, + 2.086332436210386e-06 + ], + [ + 2, + 3.2454060118828224e-06 + ], + [ + 3, + 6.490812023765645e-06 + ], + [ + 4, + 9.736218035648467e-06 + ], + [ + 5, + 1.2749809332396802e-05 + ], + [ + 6, + 1.5067956483741675e-05 + ], + [ + 7, + 2.4572359804255656e-05 + ], + [ + 8, + 2.781776581613848e-05 + ], + [ + 9, + 7.649885599438082e-05 + ], + [ + 10, + 9.1334997762988e-05 + ], + [ + 12, + 0.00012622311239072833 + ], + [ + 14, + 0.00020028791387619705 + ], + [ + 16, + 0.00031978839952802524 + ], + [ + 18, + 0.0004905199372245751 + ], + [ + 20, + 0.0007158438403352969 + ], + [ + 22, + 0.0010262437439003754 + ], + [ + 24, + 0.0014435102311424525 + ], + [ + 26, + 0.0019414482392513313 + ], + [ + 28, + 0.0024947899642773523 + ], + [ + 30, + 0.003123935101152351 + ], + [ + 32, + 0.003830506352882268 + ], + [ + 34, + 0.004574979310536674 + ], + [ + 36, + 0.00536106300955772 + ], + [ + 38, + 0.006219241084985593 + ], + [ + 40, + 0.0071281865830279175 + ], + [ + 42, + 0.008074686064922029 + ], + [ + 44, + 0.009074966560727342 + ], + [ + 46, + 0.010090778642446665 + ], + [ + 48, + 0.011173932898912557 + ], + [ + 50, + 0.012280848163679733 + ], + [ + 52, + 0.01341430621332981 + ], + [ + 54, + 0.014604211146115133 + ], + [ + 56, + 0.01582587469487388 + ], + [ + 58, + 0.01710769416221003 + ], + [ + 60, + 0.018386731852964563 + ], + [ + 62, + 0.019710393876382487 + ], + [ + 64, + 0.021061873665616543 + ], + [ + 66, + 0.022468177634979915 + ], + [ + 68, + 0.023910065163116424 + ], + [ + 70, + 0.025386493083807974 + ], + [ + 72, + 0.02690221359871482 + ], + [ + 74, + 0.028465108408151533 + ], + [ + 76, + 0.030106704313376406 + ], + [ + 78, + 0.03180973111811192 + ], + [ + 80, + 0.0335670025661889 + ], + [ + 82, + 0.03539996151875729 + ], + [ + 84, + 0.0373184601012103 + ], + [ + 86, + 0.03935692279874542 + ], + [ + 88, + 0.04154154467417283 + ], + [ + 90, + 0.043890523182630585 + ], + [ + 92, + 0.046383690443902 + ], + [ + 94, + 0.049031478120168115 + ], + [ + 96, + 0.05193924599945755 + ], + [ + 98, + 0.0550543721414348 + ], + [ + 100, + 0.05844234420312533 + ], + [ + 102, + 0.06218638366726243 + ], + [ + 104, + 0.06620663036448228 + ], + [ + 106, + 0.07060786454602566 + ], + [ + 108, + 0.07529040588438472 + ], + [ + 110, + 0.08029366288113238 + ], + [ + 112, + 0.08571407045776452 + ], + [ + 114, + 0.09156611703397709 + ], + [ + 116, + 0.09784505040810981 + ], + [ + 118, + 0.10443658592560139 + ], + [ + 120, + 0.11150241435025812 + ], + [ + 122, + 0.11900614077180391 + ], + [ + 124, + 0.12699099863461133 + ], + [ + 126, + 0.13542163619462236 + ], + [ + 128, + 0.1443769863623403 + ], + [ + 130, + 0.15390804837509475 + ], + [ + 132, + 0.16388593325127093 + ], + [ + 134, + 0.1745314445070344 + ], + [ + 136, + 0.18582000978258098 + ], + [ + 138, + 0.19767605748077677 + ] + ], + "color": "#90ed7d", + "marker": {} + }, + { + "name": "P4107_1004 - illumina_universal_adapter", + "data": [ + [ + 1, + 7.627988631141361e-06 + ], + [ + 2, + 2.2281756264649766e-05 + ], + [ + 3, + 3.191711032503885e-05 + ], + [ + 4, + 4.054878167080408e-05 + ], + [ + 5, + 5.7209914733560206e-05 + ], + [ + 6, + 6.985631693782088e-05 + ], + [ + 7, + 9.414543863171838e-05 + ], + [ + 8, + 0.00011341614675249655 + ], + [ + 9, + 0.0001585818689105704 + ], + [ + 10, + 0.00021197778932855995 + ], + [ + 12, + 0.00028604957366780106 + ], + [ + 14, + 0.000418535691998151 + ], + [ + 16, + 0.0006140530848068795 + ], + [ + 18, + 0.0008585501940892527 + ], + [ + 20, + 0.0011935794842306982 + ], + [ + 22, + 0.0016100074425281392 + ], + [ + 24, + 0.0021268036722879666 + ], + [ + 26, + 0.0027101440660273557 + ], + [ + 28, + 0.003344471541669637 + ], + [ + 30, + 0.0040528708016511605 + ], + [ + 32, + 0.004840962469173818 + ], + [ + 34, + 0.005681446374399841 + ], + [ + 36, + 0.0065760287779440905 + ], + [ + 38, + 0.007522903050920243 + ], + [ + 40, + 0.008533410808003548 + ], + [ + 42, + 0.0095912923892171 + ], + [ + 44, + 0.010672760514224312 + ], + [ + 46, + 0.011825189007155432 + ], + [ + 48, + 0.012977818236629477 + ], + [ + 50, + 0.014181334179734953 + ], + [ + 52, + 0.015429614371912651 + ], + [ + 54, + 0.01669445532888164 + ], + [ + 56, + 0.017990310081732512 + ], + [ + 58, + 0.01931075506109167 + ], + [ + 60, + 0.02064796154178504 + ], + [ + 62, + 0.0220316385321655 + ], + [ + 64, + 0.02347142138629343 + ], + [ + 66, + 0.024945931662347348 + ], + [ + 68, + 0.02643359018196284 + ], + [ + 70, + 0.027957983488933563 + ], + [ + 72, + 0.029525635520904574 + ], + [ + 74, + 0.031101818855949887 + ], + [ + 76, + 0.03273179958449904 + ], + [ + 78, + 0.034386069434742095 + ], + [ + 80, + 0.03611541475203901 + ], + [ + 82, + 0.03790628581974237 + ], + [ + 84, + 0.039773838246842996 + ], + [ + 86, + 0.04168695786918754 + ], + [ + 88, + 0.043705664913110516 + ], + [ + 90, + 0.04584672087994614 + ], + [ + 92, + 0.048080416761341546 + ], + [ + 94, + 0.05047630776942017 + ], + [ + 96, + 0.05302234971160653 + ], + [ + 98, + 0.05573500298442044 + ], + [ + 100, + 0.05867689738925445 + ], + [ + 102, + 0.06184552371932199 + ], + [ + 104, + 0.06530602098280214 + ], + [ + 106, + 0.06897668940672452 + ], + [ + 108, + 0.0728854313705557 + ], + [ + 110, + 0.07715158474906444 + ], + [ + 112, + 0.08172275730454737 + ], + [ + 114, + 0.08658068201159833 + ], + [ + 116, + 0.0917961185015983 + ], + [ + 118, + 0.09731105391364203 + ], + [ + 120, + 0.10328457195799742 + ], + [ + 122, + 0.10959151340015086 + ], + [ + 124, + 0.11632401631330481 + ], + [ + 126, + 0.12343470687332904 + ], + [ + 128, + 0.13091053720493342 + ], + [ + 130, + 0.13895244458758566 + ], + [ + 132, + 0.1474266381154264 + ], + [ + 134, + 0.1563539943889198 + ], + [ + 136, + 0.16597067995081688 + ], + [ + 138, + 0.1760927197595271 + ] + ], + "color": "#f7a35c", + "marker": {} + }, + { + "name": "P4107_1005 - illumina_universal_adapter", + "data": [ + [ + 1, + 6.401871150464528e-06 + ], + [ + 2, + 1.1151646520164016e-05 + ], + [ + 3, + 1.7140493725437285e-05 + ], + [ + 4, + 2.1064221204754255e-05 + ], + [ + 5, + 2.6433532492240632e-05 + ], + [ + 6, + 3.469401139606583e-05 + ], + [ + 7, + 5.018240934073808e-05 + ], + [ + 8, + 6.629034320319722e-05 + ], + [ + 9, + 8.983270807909902e-05 + ], + [ + 10, + 0.00014011837340613493 + ], + [ + 12, + 0.00028632885000384094 + ], + [ + 14, + 0.0005483925432276952 + ], + [ + 16, + 0.0009745299986787777 + ], + [ + 18, + 0.0015655672642474706 + ], + [ + 20, + 0.0024088589043417255 + ], + [ + 22, + 0.003633474901833811 + ], + [ + 24, + 0.0053898592287596435 + ], + [ + 26, + 0.00767388164566731 + ], + [ + 28, + 0.010318473966726948 + ], + [ + 30, + 0.013287806364693212 + ], + [ + 32, + 0.016654158029974574 + ], + [ + 34, + 0.020148340606292635 + ], + [ + 36, + 0.023888788709930983 + ], + [ + 38, + 0.027895947026176586 + ], + [ + 40, + 0.032246018472917234 + ], + [ + 42, + 0.036816954474348906 + ], + [ + 44, + 0.04147813620780487 + ], + [ + 46, + 0.0463438680501168 + ], + [ + 48, + 0.05141642163298326 + ], + [ + 50, + 0.056705812787075136 + ], + [ + 52, + 0.06213170835505272 + ], + [ + 54, + 0.06767738086713576 + ], + [ + 56, + 0.07337205176744654 + ], + [ + 58, + 0.07919558613865701 + ], + [ + 60, + 0.08502583214897685 + ], + [ + 62, + 0.09084275813706424 + ], + [ + 64, + 0.0968086825133794 + ], + [ + 66, + 0.10288075404360872 + ], + [ + 68, + 0.10910223698601096 + ], + [ + 70, + 0.1154190252037661 + ], + [ + 72, + 0.12177143673679396 + ], + [ + 74, + 0.1282533312766393 + ], + [ + 76, + 0.13486171439969946 + ], + [ + 78, + 0.1415122259651691 + ], + [ + 80, + 0.14819071990292548 + ], + [ + 82, + 0.15493003161661129 + ], + [ + 84, + 0.16173635646540435 + ], + [ + 86, + 0.1685868748763329 + ], + [ + 88, + 0.1755049227023002 + ], + [ + 90, + 0.18252653628252422 + ], + [ + 92, + 0.18975208043568642 + ], + [ + 94, + 0.19700395486535455 + ], + [ + 96, + 0.20444045099852318 + ], + [ + 98, + 0.2122125290871597 + ], + [ + 100, + 0.22007505941979313 + ], + [ + 102, + 0.22812283099184483 + ], + [ + 104, + 0.23643793231242155 + ], + [ + 106, + 0.24504173737068702 + ], + [ + 108, + 0.25396759785021533 + ], + [ + 110, + 0.26320188396081523 + ], + [ + 112, + 0.27275533432506166 + ], + [ + 114, + 0.2825645497673678 + ], + [ + 116, + 0.29273412860185327 + ], + [ + 118, + 0.30317206974472677 + ], + [ + 120, + 0.3139442505152463 + ], + [ + 122, + 0.32503900298696026 + ], + [ + 124, + 0.3364400127140335 + ], + [ + 126, + 0.3482029346730806 + ], + [ + 128, + 0.3603470777335392 + ], + [ + 130, + 0.37292303732869525 + ], + [ + 132, + 0.3859691214294653 + ], + [ + 134, + 0.39939539407178387 + ], + [ + 136, + 0.413137010496256 + ], + [ + 138, + 0.42730094390468615 + ] + ], + "color": "#8085e9", + "marker": {} + }, + { + "name": "P4107_1006 - illumina_universal_adapter", + "data": [ + [ + 1, + 5.074589739828211e-06 + ], + [ + 2, + 9.928545143142152e-06 + ], + [ + 3, + 1.4341231873427553e-05 + ], + [ + 4, + 1.6768209575084523e-05 + ], + [ + 5, + 2.0739627632341386e-05 + ], + [ + 6, + 2.6696754718226676e-05 + ], + [ + 7, + 3.971418057256861e-05 + ], + [ + 8, + 4.876018836965368e-05 + ], + [ + 9, + 6.795537564639517e-05 + ], + [ + 10, + 0.0001061251158633639 + ], + [ + 12, + 0.0002081684965012138 + ], + [ + 14, + 0.0004163369930024276 + ], + [ + 16, + 0.0007526940390184323 + ], + [ + 18, + 0.0012625799907029103 + ], + [ + 20, + 0.0019773249238408883 + ], + [ + 22, + 0.00304309908637307 + ], + [ + 24, + 0.004624275059002586 + ], + [ + 26, + 0.006774908254175433 + ], + [ + 28, + 0.009229575565064945 + ], + [ + 30, + 0.012013208671697233 + ], + [ + 32, + 0.015245281067294773 + ], + [ + 34, + 0.018595503150095706 + ], + [ + 36, + 0.022183017461817736 + ], + [ + 38, + 0.026069822251021377 + ], + [ + 40, + 0.030313392762368593 + ], + [ + 42, + 0.0347625944753471 + ], + [ + 44, + 0.03928339203052449 + ], + [ + 46, + 0.04397319548747182 + ], + [ + 48, + 0.048868299194545675 + ], + [ + 50, + 0.05398514040981636 + ], + [ + 52, + 0.0592177043345888 + ], + [ + 54, + 0.06455021561380218 + ], + [ + 56, + 0.07007214147091309 + ], + [ + 58, + 0.0756217569372565 + ], + [ + 60, + 0.08123381192083348 + ], + [ + 62, + 0.08690808578730749 + ], + [ + 64, + 0.0926183230506333 + ], + [ + 66, + 0.09845752108365172 + ], + [ + 68, + 0.1044136553150227 + ], + [ + 70, + 0.11046157343038361 + ], + [ + 72, + 0.11654004940135175 + ], + [ + 74, + 0.12268670138230281 + ], + [ + 76, + 0.12883776604998415 + ], + [ + 78, + 0.13505965433968656 + ], + [ + 80, + 0.14129136085736385 + ], + [ + 82, + 0.14746084849214414 + ], + [ + 84, + 0.15361886314142567 + ], + [ + 86, + 0.15980997294118432 + ], + [ + 88, + 0.16601950570804194 + ], + [ + 90, + 0.17220520996655603 + ], + [ + 92, + 0.17837767616487923 + ], + [ + 94, + 0.18462581994062685 + ], + [ + 96, + 0.19088841526541617 + ], + [ + 98, + 0.19728824514751733 + ], + [ + 100, + 0.20383490718056874 + ], + [ + 102, + 0.21049111416169952 + ], + [ + 104, + 0.21731334848105727 + ], + [ + 106, + 0.2242660880104632 + ], + [ + 108, + 0.23143979282788818 + ], + [ + 110, + 0.23890120482012775 + ], + [ + 112, + 0.24664789700948028 + ], + [ + 114, + 0.25466034325716425 + ], + [ + 116, + 0.2629723006166663 + ], + [ + 118, + 0.2716314261046736 + ], + [ + 120, + 0.2806198483399285 + ], + [ + 122, + 0.28996900771538414 + ], + [ + 124, + 0.29969820973548567 + ], + [ + 126, + 0.30982256785228424 + ], + [ + 128, + 0.32053259981536 + ], + [ + 130, + 0.3315656404470925 + ], + [ + 132, + 0.3430218577362595 + ], + [ + 134, + 0.35504962827416664 + ], + [ + 136, + 0.36753201586246154 + ], + [ + 138, + 0.3806767477289722 + ] + ], + "color": "#f15c80", + "marker": {} + } + ] + } + ], + "plot_type": "xy_line", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [ + "yaxis" + ], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "id": "fastqc_adapter_content_plot", + "title": "FastQC: Adapter Content", + "ylab": "% of Sequences", + "xlab": "Position (bp)", + "yCeiling": 100, + "yMinRange": 5, + "ymin": 0, + "xDecimals": false, + "tt_label": "Base {point.x}: {point.y:.2f}%", + "hide_empty": true, + "yPlotBands": [ + { + "from": 20, + "to": 100, + "color": "#e6c3c3" + }, + { + "from": 5, + "to": 20, + "color": "#e6dcc3" + }, + { + "from": 0, + "to": 5, + "color": "#c3e6c3" + } + ] + } + }, + "fastqc-status-check-heatmap": { + "id": "fastqc-status-check-heatmap", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 560, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 65, + "l": 60, + "pad": 5, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "FastQC: Status Checks", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "type": "category", + "tickmode": "array", + "tickvals": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ], + "ticktext": [ + "Basic
Statistics", + "Per Base
Sequence
Quality", + "Per Tile
Sequence
Quality", + "Per
Sequence
Quality
Scores", + "Per Base
Sequence
Content", + "Per
Sequence
GC Content", + "Per Base N
Content", + "Sequence
Length
Distribution", + "Sequence
Duplication
Levels", + "Overrepresented
Sequences", + "Adapter
Content", + "Kmer
Content" + ], + "tickangle": 0, + "showgrid": false + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.05)", + "tickfont": { + "color": "rgba(0,0,0,1)", + "size": 10 + }, + "zerolinecolor": "rgba(0,0,0,0.05)", + "type": "category", + "tickmode": "array", + "tickvals": [ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "ticktext": [ + "P4107_1001", + "P4107_1002", + "P4107_1003", + "P4107_1004", + "P4107_1005", + "P4107_1006" + ], + "showgrid": false, + "autorange": "reversed", + "ticklabelposition": "outside right" + } + }, + "datasets": [ + { + "label": 1, + "uid": "fastqc-status-check-heatmap", + "dconfig": { + "ylab": null + }, + "layout": { + "title": { + "text": "FastQC: Status Checks" + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": ",.1f", + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + } + }, + "trace_params": { + "colorscale": [ + [ + 0.0, + "#ffffff" + ], + [ + 0.25, + "#d9534f" + ], + [ + 0.5, + "#fee391" + ], + [ + 1.0, + "#5cb85c" + ] + ], + "reversescale": false, + "showscale": false, + "zmin": 0, + "zmax": 1, + "hovertemplate": "x: %{x}
y: %{y}
z: %{z}" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "rows": [ + [ + 1, + 1, + 0.5, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.25, + 1, + 0.25 + ], + [ + 1, + 1, + 0.25, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.5, + 1, + 0.25 + ], + [ + 1, + 1, + 0.5, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.5, + 1, + 0.25 + ], + [ + 1, + 1, + 0.25, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.5, + 1, + 0.25 + ], + [ + 1, + 1, + 0.5, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.5, + 1, + 0.25 + ], + [ + 1, + 1, + 0.5, + 1, + 0.5, + 0.5, + 1, + 1, + 1, + 0.5, + 1, + 0.25 + ] + ], + "xcats": [ + "Basic Statistics", + "Per Base Sequence Quality", + "Per Tile Sequence Quality", + "Per Sequence Quality Scores", + "Per Base Sequence Content", + "Per Sequence GC Content", + "Per Base N Content", + "Sequence Length Distribution", + "Sequence Duplication Levels", + "Overrepresented Sequences", + "Adapter Content", + "Kmer Content" + ], + "ycats": [ + "P4107_1001", + "P4107_1002", + "P4107_1003", + "P4107_1004", + "P4107_1005", + "P4107_1006" + ] + } + ], + "plot_type": "heatmap", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [], + "p_active": false, + "l_active": false, + "square": false, + "config": { + "id": "fastqc-status-check-heatmap", + "title": "FastQC: Status Checks", + "xTitle": "Section Name", + "yTitle": "Sample", + "min": 0, + "max": 1, + "square": false, + "colstops": [ + [ + 0, + "#ffffff" + ], + [ + 0.25, + "#d9534f" + ], + [ + 0.5, + "#fee391" + ], + [ + 1, + "#5cb85c" + ] + ], + "decimalPlaces": 1, + "legend": false, + "datalabels": false, + "xcats_samples": false, + "angled_xticks": false + }, + "xcats_samples": false, + "ycats_samples": true + }, + "general_stats_table": { + "id": "general_stats_table", + "layout": { + "autosize": true, + "colorway": [ + "#7cb5ec", + "#434348", + "#90ed7d", + "#f7a35c", + "#8085e9", + "#f15c80", + "#e4d354", + "#2b908f", + "#f45b5b", + "#91e8e1" + ], + "font": { + "family": "'Lucida Grande', 'Open Sans', verdana, arial, sans-serif" + }, + "height": 500, + "hoverlabel": { + "namelength": -1 + }, + "margin": { + "b": 40, + "l": 60, + "pad": 0, + "r": 15, + "t": 50 + }, + "modebar": { + "activecolor": "rgba(0, 0, 0, 1)", + "bgcolor": "rgba(0, 0, 0, 0)", + "color": "rgba(0, 0, 0, 0.5)" + }, + "paper_bgcolor": "rgba(0,0,0,0)", + "plot_bgcolor": "rgba(0,0,0,0)", + "showlegend": false, + "title": { + "font": { + "size": 20 + }, + "text": "General Statistics", + "x": 0.5, + "xanchor": "center" + }, + "xaxis": { + "automargin": false, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "yaxis": { + "automargin": true, + "color": "rgba(0,0,0,0.3)", + "gridcolor": "rgba(0,0,0,0.1)", + "tickfont": { + "color": "rgba(0,0,0,0.5)", + "size": 9 + }, + "zerolinecolor": "rgba(0,0,0,0.1)" + }, + "violingap": 0, + "grid": { + "columns": 1, + "roworder": "top to bottom", + "ygap": 0.4 + } + }, + "datasets": [ + { + "label": 1, + "uid": "general_stats_table", + "dconfig": { + "ylab": null + }, + "layout": { + "title": { + "text": null + }, + "xaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + }, + "yaxis": { + "hoverformat": null, + "ticksuffix": "", + "title": { + "text": null + }, + "rangemode": "normal", + "autorangeoptions": { + "clipmin": null, + "clipmax": null, + "minallowed": null, + "maxallowed": null + } + } + }, + "trace_params": { + "hovertemplate": "%{text}: %{x}", + "orientation": "h", + "box": { + "visible": true + }, + "meanline": { + "visible": true + }, + "fillcolor": "grey", + "line": { + "width": 2, + "color": "grey" + }, + "opacity": 0.5, + "points": false, + "hoveron": "points" + }, + "pct_range": { + "xaxis": { + "min": 0, + "max": 100 + }, + "yaxis": { + "min": 0, + "max": 100 + } + }, + "metrics": [ + "mqc-generalstats-qualimap-avg_gc", + "mqc-generalstats-qualimap-median_insert_size", + "mqc-generalstats-qualimap-1_x_pc", + "mqc-generalstats-qualimap-5_x_pc", + "mqc-generalstats-qualimap-10_x_pc", + "mqc-generalstats-qualimap-30_x_pc", + "mqc-generalstats-qualimap-50_x_pc", + "mqc-generalstats-qualimap-median_coverage", + "mqc-generalstats-qualimap-mean_coverage", + "mqc-generalstats-qualimap-percentage_aligned", + "mqc-generalstats-qualimap-mapped_reads", + "mqc-generalstats-qualimap-total_reads", + "mqc-generalstats-snpeff-Change_rate", + "mqc-generalstats-snpeff-Ts_Tv_ratio", + "mqc-generalstats-snpeff-Number_of_variants_before_filter", + "mqc-generalstats-gatk_gatk_varianteval-known_titv", + "mqc-generalstats-gatk_gatk_varianteval-novel_titv", + "mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION", + "mqc-generalstats-fastqc-percent_duplicates", + "mqc-generalstats-fastqc-percent_gc", + "mqc-generalstats-fastqc-avg_sequence_length", + "mqc-generalstats-fastqc-median_sequence_length", + "mqc-generalstats-fastqc-percent_fails", + "mqc-generalstats-fastqc-total_sequences" + ], + "header_by_metric": { + "mqc-generalstats-qualimap-avg_gc": { + "namespace": "QualiMap", + "title": "% GC", + "description": "Mean GC content", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-median_insert_size": { + "namespace": "QualiMap", + "title": "Ins. size", + "description": "Median insert size", + "dmax": 368.0, + "dmin": 0.0, + "suffix": "", + "color": "55,126,184", + "hidden": null, + "modify": null, + "tt_decimals": 2, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -1.84, + 369.8492 + ] + }, + "show_points": true, + "show_only_outliers": false + }, + "mqc-generalstats-qualimap-1_x_pc": { + "namespace": "QualiMap", + "title": "≥ 1X", + "description": "Fraction of genome with at least 1X coverage", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-5_x_pc": { + "namespace": "QualiMap", + "title": "≥ 5X", + "description": "Fraction of genome with at least 5X coverage", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-10_x_pc": { + "namespace": "QualiMap", + "title": "≥ 10X", + "description": "Fraction of genome with at least 10X coverage", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-30_x_pc": { + "namespace": "QualiMap", + "title": "≥ 30X", + "description": "Fraction of genome with at least 30X coverage", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": false, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-50_x_pc": { + "namespace": "QualiMap", + "title": "≥ 50X", + "description": "Fraction of genome with at least 50X coverage", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-median_coverage": { + "namespace": "QualiMap", + "title": "Median cov", + "description": "Median coverage", + "dmax": 46.0, + "dmin": 0.0, + "suffix": "X", + "color": "55,126,184", + "hidden": null, + "modify": null, + "tt_decimals": 2, + "xaxis": { + "ticksuffix": "X", + "tickvals": null, + "range": [ + -0.23, + 46.23115 + ] + }, + "show_points": true, + "show_only_outliers": false + }, + "mqc-generalstats-qualimap-mean_coverage": { + "namespace": "QualiMap", + "title": "Mean cov", + "description": "Mean coverage", + "dmax": 47.04, + "dmin": 0.0, + "suffix": "X", + "color": "55,126,184", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "X", + "tickvals": null, + "range": [ + -0.2352, + 47.276376 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-percentage_aligned": { + "namespace": "QualiMap", + "title": "% Aligned", + "description": "% mapped reads", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "55,126,184", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-mapped_reads": { + "namespace": "QualiMap", + "title": "M Aligned", + "description": "Number of mapped reads (millions)", + "dmax": 1002.8289269999999, + "dmin": 0.0, + "suffix": " M", + "color": "55,126,184", + "hidden": true, + "xaxis": { + "ticksuffix": " M", + "tickvals": null, + "range": [ + -5.014144635, + 1007.868142358175 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-qualimap-total_reads": { + "namespace": "QualiMap", + "title": "M Total reads", + "description": "Number of reads (millions)", + "dmax": 1002.8289269999999, + "dmin": 0.0, + "suffix": " M", + "color": "55,126,184", + "hidden": true, + "xaxis": { + "ticksuffix": " M", + "tickvals": null, + "range": [ + -5.014144635, + 1007.868142358175 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-snpeff-Change_rate": { + "namespace": "SnpEff", + "title": "Change rate", + "description": "Change rate", + "dmax": 765.0, + "dmin": 0.0, + "suffix": "", + "color": "77,175,74", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -3.825, + 768.844125 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-snpeff-Ts_Tv_ratio": { + "namespace": "SnpEff", + "title": "Ts/Tv", + "description": "Transitions / Transversions ratio", + "dmax": 1.996252, + "dmin": 0, + "suffix": "", + "color": "77,175,74", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.00998126, + 2.0062831663 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-snpeff-Number_of_variants_before_filter": { + "namespace": "SnpEff", + "title": "M Variants", + "description": "Number of variants before filter (millions)", + "dmax": 4.072201, + "dmin": 0.0, + "suffix": "M", + "color": "77,175,74", + "hidden": null, + "xaxis": { + "ticksuffix": "M", + "tickvals": null, + "range": [ + -0.020361004999999998, + 4.092663810025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-gatk_gatk_varianteval-known_titv": { + "namespace": "GATK: GATK VariantEval", + "title": "TiTV ratio (known)", + "description": "TiTV ratio from variants found in 'hapmap'", + "dmax": 2.07, + "dmin": 0.0, + "suffix": "", + "color": "152,78,163", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.01035, + 2.08040175 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-gatk_gatk_varianteval-novel_titv": { + "namespace": "GATK: GATK VariantEval", + "title": "TiTV ratio (novel)", + "description": "TiTV ratio from variants NOT found in 'hapmap'", + "dmax": 2.07, + "dmin": 0.0, + "suffix": "", + "color": "152,78,163", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "", + "tickvals": null, + "range": [ + -0.01035, + 2.08040175 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": { + "namespace": "Picard: Mark Duplicates", + "title": "Duplication", + "description": "Mark Duplicates - Percent Duplication", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "255,127,0", + "hidden": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-fastqc-percent_duplicates": { + "namespace": "FastQC", + "title": "% Dups", + "description": "% Duplicate Reads", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "228,26,28", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-fastqc-percent_gc": { + "namespace": "FastQC", + "title": "% GC", + "description": "Average % GC Content", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "228,26,28", + "hidden": null, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-fastqc-avg_sequence_length": { + "namespace": "FastQC", + "title": "Average Read Length", + "description": "Average Read Length (bp)", + "dmax": 151.0, + "dmin": 0.0, + "suffix": " bp", + "color": "228,26,28", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": " bp", + "tickvals": null, + "range": [ + -0.755, + 151.758775 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-fastqc-median_sequence_length": { + "namespace": "FastQC", + "title": "Median Read Length", + "description": "Median Read Length (bp)", + "dmax": 151.0, + "dmin": 0.0, + "suffix": " bp", + "color": "228,26,28", + "hidden": true, + "modify": null, + "tt_decimals": 2, + "xaxis": { + "ticksuffix": " bp", + "tickvals": null, + "range": [ + -0.755, + 151.758775 + ] + }, + "show_points": true, + "show_only_outliers": false + }, + "mqc-generalstats-fastqc-percent_fails": { + "namespace": "FastQC", + "title": "% Failed", + "description": "Percentage of modules failed in FastQC report (includes those not plotted here)", + "dmax": 100.0, + "dmin": 0.0, + "suffix": "%", + "color": "228,26,28", + "hidden": true, + "modify": null, + "xaxis": { + "ticksuffix": "%", + "tickvals": null, + "range": [ + -0.5, + 100.5025 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + }, + "mqc-generalstats-fastqc-total_sequences": { + "namespace": "FastQC", + "title": "M Seqs", + "description": "Total Sequences (millions)", + "dmax": 1002.8289269999999, + "dmin": 0.0, + "suffix": " M", + "color": "228,26,28", + "hidden": null, + "xaxis": { + "ticksuffix": " M", + "tickvals": null, + "range": [ + -5.014144635, + 1007.868142358175 + ] + }, + "show_points": true, + "show_only_outliers": false, + "hoverformat": ".2f" + } + }, + "violin_values_by_sample_by_metric": { + "mqc-generalstats-qualimap-avg_gc": { + "P4107_1003": 41.35698208795284, + "P4107_1004": 40.99306639893834, + "P4107_1005": 41.17477503107992, + "P4107_1002": 41.29061839482755, + "P4107_1006": 41.269984866552605, + "P4107_1001": 41.36746349676451 + }, + "mqc-generalstats-qualimap-median_insert_size": { + "P4107_1003": 365, + "P4107_1004": 363, + "P4107_1005": 368, + "P4107_1002": 367, + "P4107_1006": 362, + "P4107_1001": 358 + }, + "mqc-generalstats-qualimap-1_x_pc": { + "P4107_1003": 92.29751163907807, + "P4107_1004": 92.29608730699667, + "P4107_1005": 92.29828148121867, + "P4107_1002": 92.29794180799979, + "P4107_1006": 92.29880346765438, + "P4107_1001": 92.29432810535144 + }, + "mqc-generalstats-qualimap-5_x_pc": { + "P4107_1003": 92.22753318515709, + "P4107_1004": 92.2323784611382, + "P4107_1005": 92.2346776709854, + "P4107_1002": 92.22694426994362, + "P4107_1006": 92.23074228464515, + "P4107_1001": 92.21025634005906 + }, + "mqc-generalstats-qualimap-10_x_pc": { + "P4107_1003": 92.07815353718176, + "P4107_1004": 92.0764160970611, + "P4107_1005": 92.11250283024343, + "P4107_1002": 92.07669477353262, + "P4107_1006": 92.10216755684698, + "P4107_1001": 91.9610844336904 + }, + "mqc-generalstats-qualimap-30_x_pc": { + "P4107_1003": 82.37846792457299, + "P4107_1004": 84.74393690711297, + "P4107_1005": 85.26307080995146, + "P4107_1002": 82.33885866147037, + "P4107_1006": 84.09635794292338, + "P4107_1001": 74.66018701572433 + }, + "mqc-generalstats-qualimap-50_x_pc": { + "P4107_1003": 16.220900002951474, + "P4107_1004": 40.45506563396865, + "P4107_1005": 35.61445297024546, + "P4107_1002": 15.934603451516617, + "P4107_1006": 23.664833468422913, + "P4107_1001": 5.240211027996628 + }, + "mqc-generalstats-qualimap-median_coverage": { + "P4107_1003": 40, + "P4107_1004": 46, + "P4107_1005": 45, + "P4107_1002": 40, + "P4107_1006": 43, + "P4107_1001": 36 + }, + "mqc-generalstats-qualimap-mean_coverage": { + "P4107_1003": 40.46, + "P4107_1004": 47.04, + "P4107_1005": 45.58, + "P4107_1002": 40.38, + "P4107_1006": 42.59, + "P4107_1001": 35.78 + }, + "mqc-generalstats-qualimap-percentage_aligned": { + "P4107_1003": 97.62248337302556, + "P4107_1004": 98.23363980405004, + "P4107_1005": 98.04765753107331, + "P4107_1002": 97.81653054978287, + "P4107_1006": 98.09145739981456, + "P4107_1001": 97.28985936468062 + }, + "mqc-generalstats-qualimap-mapped_reads": { + "P4107_1003": 847.56241, + "P4107_1004": 985.1153559999999, + "P4107_1005": 955.9213169999999, + "P4107_1002": 847.0675259999999, + "P4107_1006": 894.970438, + "P4107_1001": 751.147332 + }, + "mqc-generalstats-qualimap-total_reads": { + "P4107_1003": 868.2041069999999, + "P4107_1004": 1002.8289269999999, + "P4107_1005": 974.955793, + "P4107_1002": 865.9758439999999, + "P4107_1006": 912.3836689999999, + "P4107_1001": 772.071557 + }, + "mqc-generalstats-snpeff-Change_rate": { + "P4107_1004": 765.0, + "P4107_1003": 761.0, + "P4107_1006": 761.0, + "P4107_1002": 762.0, + "P4107_1005": 762.0, + "P4107_1001": 764.0 + }, + "mqc-generalstats-snpeff-Ts_Tv_ratio": { + "P4107_1004": 1.996252, + "P4107_1003": 1.993752, + "P4107_1006": 1.993421, + "P4107_1002": 1.994323, + "P4107_1005": 1.993718, + "P4107_1001": 1.995169 + }, + "mqc-generalstats-snpeff-Number_of_variants_before_filter": { + "P4107_1004": 4.052117, + "P4107_1003": 4.072201, + "P4107_1006": 4.072161, + "P4107_1002": 4.067653, + "P4107_1005": 4.06962, + "P4107_1001": 4.059325 + }, + "mqc-generalstats-gatk_gatk_varianteval-known_titv": { + "P4107_1004": 2.07, + "P4107_1002": 2.07, + "P4107_1003": 2.07, + "P4107_1005": 2.07, + "P4107_1006": 2.07, + "P4107_1001": 2.07 + }, + "mqc-generalstats-gatk_gatk_varianteval-novel_titv": { + "P4107_1004": 1.49, + "P4107_1002": 1.48, + "P4107_1003": 1.47, + "P4107_1005": 1.46, + "P4107_1006": 1.48, + "P4107_1001": 1.49 + }, + "mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": { + "P4107_1001": 6.3884, + "P4107_1002": 9.8979, + "P4107_1003": 10.4732, + "P4107_1006": 12.4364, + "P4107_1005": 24.4861, + "P4107_1004": 39.3866 + }, + "mqc-generalstats-fastqc-percent_duplicates": { + "P4107_1003": 6.795406093848555, + "P4107_1004": 3.940427809644561, + "P4107_1005": 6.603658645191075, + "P4107_1002": 2.1580757020873165, + "P4107_1001": 3.693292003886029, + "P4107_1006": 1.7758820535142377 + }, + "mqc-generalstats-fastqc-percent_gc": { + "P4107_1003": 41.0, + "P4107_1004": 40.0, + "P4107_1005": 41.0, + "P4107_1002": 41.0, + "P4107_1001": 41.0, + "P4107_1006": 41.0 + }, + "mqc-generalstats-fastqc-avg_sequence_length": { + "P4107_1003": 151.0, + "P4107_1004": 151.0, + "P4107_1005": 151.0, + "P4107_1002": 151.0, + "P4107_1001": 151.0, + "P4107_1006": 151.0 + }, + "mqc-generalstats-fastqc-median_sequence_length": { + "P4107_1003": 151, + "P4107_1004": 151, + "P4107_1005": 151, + "P4107_1002": 151, + "P4107_1001": 151, + "P4107_1006": 151 + }, + "mqc-generalstats-fastqc-percent_fails": { + "P4107_1003": 8.333333333333332, + "P4107_1004": 16.666666666666664, + "P4107_1005": 8.333333333333332, + "P4107_1002": 16.666666666666664, + "P4107_1001": 16.666666666666664, + "P4107_1006": 8.333333333333332 + }, + "mqc-generalstats-fastqc-total_sequences": { + "P4107_1003": 431.37899999999996, + "P4107_1004": 498.165399, + "P4107_1005": 484.23342599999995, + "P4107_1002": 430.185524, + "P4107_1001": 383.592756, + "P4107_1006": 453.23861 + } + }, + "scatter_values_by_sample_by_metric": { + "mqc-generalstats-qualimap-avg_gc": {}, + "mqc-generalstats-qualimap-median_insert_size": {}, + "mqc-generalstats-qualimap-1_x_pc": {}, + "mqc-generalstats-qualimap-5_x_pc": {}, + "mqc-generalstats-qualimap-10_x_pc": {}, + "mqc-generalstats-qualimap-30_x_pc": {}, + "mqc-generalstats-qualimap-50_x_pc": {}, + "mqc-generalstats-qualimap-median_coverage": {}, + "mqc-generalstats-qualimap-mean_coverage": {}, + "mqc-generalstats-qualimap-percentage_aligned": {}, + "mqc-generalstats-qualimap-mapped_reads": {}, + "mqc-generalstats-qualimap-total_reads": {}, + "mqc-generalstats-snpeff-Change_rate": {}, + "mqc-generalstats-snpeff-Ts_Tv_ratio": {}, + "mqc-generalstats-snpeff-Number_of_variants_before_filter": {}, + "mqc-generalstats-gatk_gatk_varianteval-known_titv": {}, + "mqc-generalstats-gatk_gatk_varianteval-novel_titv": {}, + "mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": {}, + "mqc-generalstats-fastqc-percent_duplicates": {}, + "mqc-generalstats-fastqc-percent_gc": {}, + "mqc-generalstats-fastqc-avg_sequence_length": {}, + "mqc-generalstats-fastqc-median_sequence_length": {}, + "mqc-generalstats-fastqc-percent_fails": {}, + "mqc-generalstats-fastqc-total_sequences": {} + }, + "all_samples": [ + "P4107_1001", + "P4107_1002", + "P4107_1003", + "P4107_1004", + "P4107_1005", + "P4107_1006" + ], + "scatter_trace_params": { + "mode": "markers", + "marker": { + "size": 4, + "color": "black" + }, + "showlegend": false, + "hovertemplate": "%{text}: %{x}", + "hoverlabel": { + "bgcolor": "white" + } + } + } + ], + "plot_type": "violin", + "pct_axis_update": { + "ticksuffix": "%", + "hoverformat": ".1f" + }, + "axis_controlled_by_switches": [], + "p_active": false, + "l_active": false, + "square": null, + "config": { + "table_title": "General Statistics", + "save_file": true, + "raw_data_fn": "multiqc_general_stats" + }, + "static": true, + "violin_height": 70, + "extra_height": 63 + } + }, + "report_saved_raw_data": { + "multiqc_qualimap_bamqc_genome_results": { + "P4107_1003": { + "total_reads": 868204107, + "mapped_reads": 847562410, + "mapped_bases": 125495980571, + "sequenced_bases": 125419666954, + "mean_insert_size": 28161.14, + "median_insert_size": 363.0, + "mean_mapping_quality": 50.34, + "gc_percentage": 40.91, + "mean_coverage": 40.46, + "percentage_aligned": 97.62248337302556 + }, + "P4107_1004": { + "total_reads": 1002828927, + "mapped_reads": 985115356, + "mapped_bases": 145914179420, + "sequenced_bases": 145832795553, + "mean_insert_size": 28253.13, + "median_insert_size": 361.0, + "mean_mapping_quality": 50.37, + "gc_percentage": 40.55, + "mean_coverage": 47.04, + "percentage_aligned": 98.23363980405004 + }, + "P4107_1005": { + "total_reads": 974955793, + "mapped_reads": 955921317, + "mapped_bases": 141381675087, + "sequenced_bases": 141297632099, + "mean_insert_size": 30723.18, + "median_insert_size": 365.0, + "mean_mapping_quality": 50.34, + "gc_percentage": 40.73, + "mean_coverage": 45.58, + "percentage_aligned": 98.04765753107331 + }, + "P4107_1002": { + "total_reads": 865975844, + "mapped_reads": 847067526, + "mapped_bases": 125247746115, + "sequenced_bases": 125167789762, + "mean_insert_size": 29317.24, + "median_insert_size": 364.0, + "mean_mapping_quality": 50.33, + "gc_percentage": 40.84, + "mean_coverage": 40.38, + "percentage_aligned": 97.81653054978287 + }, + "P4107_1006": { + "total_reads": 912383669, + "mapped_reads": 894970438, + "mapped_bases": 132096608584, + "sequenced_bases": 132012607144, + "mean_insert_size": 30869.34, + "median_insert_size": 360.0, + "mean_mapping_quality": 50.33, + "gc_percentage": 40.82, + "mean_coverage": 42.59, + "percentage_aligned": 98.09145739981456 + }, + "P4107_1001": { + "total_reads": 772071557, + "mapped_reads": 751147332, + "mapped_bases": 110979222236, + "sequenced_bases": 110894377611, + "mean_insert_size": 28931.62, + "median_insert_size": 355.0, + "mean_mapping_quality": 50.32, + "gc_percentage": 40.92, + "mean_coverage": 35.78, + "percentage_aligned": 97.28985936468062 + } + }, + "multiqc_snpeff": { + "P4107_1004": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4052117.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3860097.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.261242, + "Number_of_effects": 21093227.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 765.0, + "HIGH": 1279.0, + "HIGH_percent": 0.006064, + "LOW": 8417008.0, + "LOW_percent": 39.903842, + "MODERATE": 38431.0, + "MODERATE_percent": 0.182196, + "MODIFIER": 12636509.0, + "MODIFIER_percent": 59.907898, + "MISSENSE": 31517.0, + "MISSENSE_percent": 46.540853, + "NONSENSE": 308.0, + "NONSENSE_percent": 0.454821, + "SILENT": 35894.0, + "SILENT_percent": 53.004327, + "Missense_Silent_ratio": 0.878058, + "Type": "Count", + "3_prime_UTR_variant": 65176.0, + "3_prime_UTR_variant_percent": 0.30899, + "5_prime_UTR_premature_start_codon_gain_variant": 3024.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014336, + "5_prime_UTR_variant": 20770.0, + "5_prime_UTR_variant_percent": 0.098468, + "TF_binding_site_variant": 4267.0, + "TF_binding_site_variant_percent": 0.020229, + "downstream_gene_variant": 1239681.0, + "downstream_gene_variant_percent": 5.877152, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2047249.0, + "intergenic_region_percent": 9.705717, + "intragenic_variant": 674.0, + "intragenic_variant_percent": 0.003195, + "intron_variant": 7890065.0, + "intron_variant_percent": 37.40568, + "missense_variant": 30662.0, + "missense_variant_percent": 0.145364, + "missense_variant+splice_region_variant": 729.0, + "missense_variant+splice_region_variant_percent": 0.003456, + "non_coding_exon_variant": 123785.0, + "non_coding_exon_variant_percent": 0.586847, + "sequence_feature": 8371134.0, + "sequence_feature_percent": 39.68636, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 356.0, + "splice_acceptor_variant+intron_variant_percent": 0.001688, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 4.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.9e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 494.0, + "splice_donor_variant+intron_variant_percent": 0.002342, + "splice_region_variant": 455.0, + "splice_region_variant_percent": 0.002157, + "splice_region_variant+intron_variant": 10160.0, + "splice_region_variant+intron_variant_percent": 0.048167, + "splice_region_variant+non_coding_exon_variant": 1861.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008823, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 899.0, + "splice_region_variant+synonymous_variant_percent": 0.004262, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 305.0, + "stop_gained_percent": 0.001446, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 43.0, + "stop_lost_percent": 0.000204, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000199, + "synonymous_variant": 34948.0, + "synonymous_variant_percent": 0.165684, + "upstream_gene_variant": 1246346.0, + "upstream_gene_variant_percent": 5.90875, + "DOWNSTREAM": 1239681.0, + "DOWNSTREAM_percent": 5.877152, + "EXON": 190525.0, + "EXON_percent": 0.903252, + "INTERGENIC": 2047249.0, + "INTERGENIC_percent": 9.705717, + "INTRON": 7890065.0, + "INTRON_percent": 37.40568, + "MOTIF": 4267.0, + "MOTIF_percent": 0.020229, + "NONE": 8371814.0, + "NONE_percent": 39.689584, + "SPLICE_SITE_ACCEPTOR": 361.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001711, + "SPLICE_SITE_DONOR": 494.0, + "SPLICE_SITE_DONOR_percent": 0.002342, + "SPLICE_SITE_REGION": 13380.0, + "SPLICE_SITE_REGION_percent": 0.063433, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000356, + "UPSTREAM": 1246346.0, + "UPSTREAM_percent": 5.90875, + "UTR_3_PRIME": 65176.0, + "UTR_3_PRIME_percent": 0.30899, + "UTR_5_PRIME": 23794.0, + "UTR_5_PRIME_percent": 0.112804, + "Transitions": 3703540.0, + "Transversions": 1855247.0, + "Ts_Tv_ratio": 1.996252, + "Het": 2542103.0, + "Hom": 1508342.0, + "Missing": 0.0 + }, + "P4107_1003": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4072201.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3872914.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.10616, + "Number_of_effects": 21162478.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101728650.0, + "Change_rate": 761.0, + "HIGH": 1314.0, + "HIGH_percent": 0.006209, + "LOW": 8434737.0, + "LOW_percent": 39.857038, + "MODERATE": 38739.0, + "MODERATE_percent": 0.183055, + "MODIFIER": 12687688.0, + "MODIFIER_percent": 59.953697, + "MISSENSE": 31843.0, + "MISSENSE_percent": 46.62089, + "NONSENSE": 323.0, + "NONSENSE_percent": 0.4729, + "SILENT": 36136.0, + "SILENT_percent": 52.906211, + "Missense_Silent_ratio": 0.881199, + "Type": "Count", + "3_prime_UTR_variant": 65612.0, + "3_prime_UTR_variant_percent": 0.310039, + "5_prime_UTR_premature_start_codon_gain_variant": 3043.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014379, + "5_prime_UTR_variant": 20798.0, + "5_prime_UTR_variant_percent": 0.098278, + "TF_binding_site_variant": 4252.0, + "TF_binding_site_variant_percent": 0.020092, + "downstream_gene_variant": 1247406.0, + "downstream_gene_variant_percent": 5.894423, + "initiator_codon_variant": 9.0, + "initiator_codon_variant_percent": 4.3e-05, + "intergenic_region": 2060392.0, + "intergenic_region_percent": 9.736062, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.00319, + "intron_variant": 7911861.0, + "intron_variant_percent": 37.386269, + "missense_variant": 30977.0, + "missense_variant_percent": 0.146377, + "missense_variant+splice_region_variant": 740.0, + "missense_variant+splice_region_variant_percent": 0.003497, + "non_coding_exon_variant": 124878.0, + "non_coding_exon_variant_percent": 0.590092, + "sequence_feature": 8388529.0, + "sequence_feature_percent": 39.63869, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 366.0, + "splice_acceptor_variant+intron_variant_percent": 0.001729, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 2.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 9e-06, + "splice_donor_variant+intron_variant": 502.0, + "splice_donor_variant+intron_variant_percent": 0.002372, + "splice_donor_variant+splice_region_variant+intron_variant": 1.0, + "splice_donor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_region_variant": 463.0, + "splice_region_variant_percent": 0.002188, + "splice_region_variant+intron_variant": 10215.0, + "splice_region_variant+intron_variant_percent": 0.048269, + "splice_region_variant+non_coding_exon_variant": 1859.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008784, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 910.0, + "splice_region_variant+synonymous_variant_percent": 0.0043, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 320.0, + "stop_gained_percent": 0.001512, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 43.0, + "stop_retained_variant_percent": 0.000203, + "synonymous_variant": 35178.0, + "synonymous_variant_percent": 0.166228, + "upstream_gene_variant": 1253313.0, + "upstream_gene_variant_percent": 5.922336, + "DOWNSTREAM": 1247406.0, + "DOWNSTREAM_percent": 5.894423, + "EXON": 192191.0, + "EXON_percent": 0.908169, + "INTERGENIC": 2060392.0, + "INTERGENIC_percent": 9.736062, + "INTRON": 7911861.0, + "INTRON_percent": 37.386269, + "MOTIF": 4252.0, + "MOTIF_percent": 0.020092, + "NONE": 8389210.0, + "NONE_percent": 39.641908, + "SPLICE_SITE_ACCEPTOR": 371.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001753, + "SPLICE_SITE_DONOR": 503.0, + "SPLICE_SITE_DONOR_percent": 0.002377, + "SPLICE_SITE_REGION": 13452.0, + "SPLICE_SITE_REGION_percent": 0.063565, + "TRANSCRIPT": 74.0, + "TRANSCRIPT_percent": 0.00035, + "UPSTREAM": 1253313.0, + "UPSTREAM_percent": 5.922336, + "UTR_3_PRIME": 65612.0, + "UTR_3_PRIME_percent": 0.310039, + "UTR_5_PRIME": 23841.0, + "UTR_5_PRIME_percent": 0.112657, + "Transitions": 3716534.0, + "Transversions": 1864090.0, + "Ts_Tv_ratio": 1.993752, + "Het": 2560300.0, + "Hom": 1510162.0, + "Missing": 0.0 + }, + "P4107_1006": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4072161.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3872603.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.099457, + "Number_of_effects": 21155209.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 761.0, + "HIGH": 1309.0, + "HIGH_percent": 0.006188, + "LOW": 8428017.0, + "LOW_percent": 39.838968, + "MODERATE": 38700.0, + "MODERATE_percent": 0.182934, + "MODIFIER": 12687183.0, + "MODIFIER_percent": 59.97191, + "MISSENSE": 31791.0, + "MISSENSE_percent": 46.620522, + "NONSENSE": 315.0, + "NONSENSE_percent": 0.461938, + "SILENT": 36085.0, + "SILENT_percent": 52.91754, + "Missense_Silent_ratio": 0.881003, + "Type": "Count", + "3_prime_UTR_variant": 65469.0, + "3_prime_UTR_variant_percent": 0.30947, + "5_prime_UTR_premature_start_codon_gain_variant": 3038.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014361, + "5_prime_UTR_variant": 20738.0, + "5_prime_UTR_variant_percent": 0.098028, + "TF_binding_site_variant": 4237.0, + "TF_binding_site_variant_percent": 0.020028, + "downstream_gene_variant": 1247269.0, + "downstream_gene_variant_percent": 5.895801, + "initiator_codon_variant": 8.0, + "initiator_codon_variant_percent": 3.8e-05, + "intergenic_region": 2060065.0, + "intergenic_region_percent": 9.737862, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.003191, + "intron_variant": 7910832.0, + "intron_variant_percent": 37.394251, + "missense_variant": 30926.0, + "missense_variant_percent": 0.146186, + "missense_variant+splice_region_variant": 739.0, + "missense_variant+splice_region_variant_percent": 0.003493, + "non_coding_exon_variant": 124984.0, + "non_coding_exon_variant_percent": 0.590795, + "sequence_feature": 8381858.0, + "sequence_feature_percent": 39.620776, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 359.0, + "splice_acceptor_variant+intron_variant_percent": 0.001697, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 513.0, + "splice_donor_variant+intron_variant_percent": 0.002425, + "splice_region_variant": 450.0, + "splice_region_variant_percent": 0.002127, + "splice_region_variant+intron_variant": 10247.0, + "splice_region_variant+intron_variant_percent": 0.048437, + "splice_region_variant+non_coding_exon_variant": 1865.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008816, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 904.0, + "splice_region_variant+synonymous_variant_percent": 0.004273, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 312.0, + "stop_gained_percent": 0.001475, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 45.0, + "stop_lost_percent": 0.000213, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 45.0, + "stop_retained_variant_percent": 0.000213, + "synonymous_variant": 35131.0, + "synonymous_variant_percent": 0.166063, + "upstream_gene_variant": 1254409.0, + "upstream_gene_variant_percent": 5.929551, + "DOWNSTREAM": 1247269.0, + "DOWNSTREAM_percent": 5.895801, + "EXON": 192193.0, + "EXON_percent": 0.90849, + "INTERGENIC": 2060065.0, + "INTERGENIC_percent": 9.737862, + "INTRON": 7910832.0, + "INTRON_percent": 37.394251, + "MOTIF": 4237.0, + "MOTIF_percent": 0.020028, + "NONE": 8382539.0, + "NONE_percent": 39.623995, + "SPLICE_SITE_ACCEPTOR": 363.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001716, + "SPLICE_SITE_DONOR": 513.0, + "SPLICE_SITE_DONOR_percent": 0.002425, + "SPLICE_SITE_REGION": 13471.0, + "SPLICE_SITE_REGION_percent": 0.063677, + "TRANSCRIPT": 73.0, + "TRANSCRIPT_percent": 0.000345, + "UPSTREAM": 1254409.0, + "UPSTREAM_percent": 5.929551, + "UTR_3_PRIME": 65469.0, + "UTR_3_PRIME_percent": 0.30947, + "UTR_5_PRIME": 23776.0, + "UTR_5_PRIME_percent": 0.112388, + "Transitions": 3716115.0, + "Transversions": 1864190.0, + "Ts_Tv_ratio": 1.993421, + "Het": 2560545.0, + "Hom": 1509880.0, + "Missing": 0.0 + }, + "P4107_1002": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4067653.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3870535.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.154011, + "Number_of_effects": 21143436.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101728650.0, + "Change_rate": 762.0, + "HIGH": 1319.0, + "HIGH_percent": 0.006238, + "LOW": 8428911.0, + "LOW_percent": 39.865379, + "MODERATE": 38681.0, + "MODERATE_percent": 0.182946, + "MODIFIER": 12674525.0, + "MODIFIER_percent": 59.945436, + "MISSENSE": 31778.0, + "MISSENSE_percent": 46.674696, + "NONSENSE": 313.0, + "NONSENSE_percent": 0.459726, + "SILENT": 35993.0, + "SILENT_percent": 52.865578, + "Missense_Silent_ratio": 0.882894, + "Type": "Count", + "3_prime_UTR_variant": 65659.0, + "3_prime_UTR_variant_percent": 0.310541, + "5_prime_UTR_premature_start_codon_gain_variant": 3033.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014345, + "5_prime_UTR_variant": 20819.0, + "5_prime_UTR_variant_percent": 0.098466, + "TF_binding_site_variant": 4254.0, + "TF_binding_site_variant_percent": 0.02012, + "downstream_gene_variant": 1246143.0, + "downstream_gene_variant_percent": 5.893758, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2057338.0, + "intergenic_region_percent": 9.730386, + "intragenic_variant": 676.0, + "intragenic_variant_percent": 0.003197, + "intron_variant": 7903237.0, + "intron_variant_percent": 37.379152, + "missense_variant": 30932.0, + "missense_variant_percent": 0.146296, + "missense_variant+splice_region_variant": 722.0, + "missense_variant+splice_region_variant_percent": 0.003415, + "non_coding_exon_variant": 125010.0, + "non_coding_exon_variant_percent": 0.591247, + "sequence_feature": 8382886.0, + "sequence_feature_percent": 39.6477, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 358.0, + "splice_acceptor_variant+intron_variant_percent": 0.001693, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 3.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 1.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 530.0, + "splice_donor_variant+intron_variant_percent": 0.002507, + "splice_region_variant": 454.0, + "splice_region_variant_percent": 0.002147, + "splice_region_variant+intron_variant": 10207.0, + "splice_region_variant+intron_variant_percent": 0.048275, + "splice_region_variant+non_coding_exon_variant": 1870.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008844, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 915.0, + "splice_region_variant+synonymous_variant_percent": 0.004328, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 310.0, + "stop_gained_percent": 0.001466, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 43.0, + "stop_lost_percent": 0.000203, + "stop_lost+splice_region_variant": 6.0, + "stop_lost+splice_region_variant_percent": 2.8e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000199, + "synonymous_variant": 35031.0, + "synonymous_variant_percent": 0.165683, + "upstream_gene_variant": 1252868.0, + "upstream_gene_variant_percent": 5.925565, + "DOWNSTREAM": 1246143.0, + "DOWNSTREAM_percent": 5.893758, + "EXON": 192099.0, + "EXON_percent": 0.908551, + "INTERGENIC": 2057338.0, + "INTERGENIC_percent": 9.730386, + "INTRON": 7903237.0, + "INTRON_percent": 37.379152, + "MOTIF": 4254.0, + "MOTIF_percent": 0.02012, + "NONE": 8383568.0, + "NONE_percent": 39.650925, + "SPLICE_SITE_ACCEPTOR": 362.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001712, + "SPLICE_SITE_DONOR": 530.0, + "SPLICE_SITE_DONOR_percent": 0.002507, + "SPLICE_SITE_REGION": 13451.0, + "SPLICE_SITE_REGION_percent": 0.063618, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000355, + "UPSTREAM": 1252868.0, + "UPSTREAM_percent": 5.925565, + "UTR_3_PRIME": 65659.0, + "UTR_3_PRIME_percent": 0.310541, + "UTR_5_PRIME": 23852.0, + "UTR_5_PRIME_percent": 0.11281, + "Transitions": 3713295.0, + "Transversions": 1861933.0, + "Ts_Tv_ratio": 1.994323, + "Het": 2556640.0, + "Hom": 1509294.0, + "Missing": 0.0 + }, + "P4107_1005": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4069620.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3871067.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.121092, + "Number_of_effects": 21160008.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 762.0, + "HIGH": 1309.0, + "HIGH_percent": 0.006186, + "LOW": 8435386.0, + "LOW_percent": 39.864758, + "MODERATE": 38702.0, + "MODERATE_percent": 0.182902, + "MODIFIER": 12684611.0, + "MODIFIER_percent": 59.946154, + "MISSENSE": 31743.0, + "MISSENSE_percent": 46.592494, + "NONSENSE": 320.0, + "NONSENSE_percent": 0.469697, + "SILENT": 36066.0, + "SILENT_percent": 52.937809, + "Missense_Silent_ratio": 0.880136, + "Type": "Count", + "3_prime_UTR_variant": 65680.0, + "3_prime_UTR_variant_percent": 0.310397, + "5_prime_UTR_premature_start_codon_gain_variant": 3040.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014367, + "5_prime_UTR_variant": 20784.0, + "5_prime_UTR_variant_percent": 0.098223, + "TF_binding_site_variant": 4258.0, + "TF_binding_site_variant_percent": 0.020123, + "downstream_gene_variant": 1246085.0, + "downstream_gene_variant_percent": 5.888868, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2057863.0, + "intergenic_region_percent": 9.725247, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.00319, + "intron_variant": 7911193.0, + "intron_variant_percent": 37.387476, + "missense_variant": 30871.0, + "missense_variant_percent": 0.145893, + "missense_variant+splice_region_variant": 744.0, + "missense_variant+splice_region_variant_percent": 0.003516, + "non_coding_exon_variant": 124929.0, + "non_coding_exon_variant_percent": 0.590401, + "sequence_feature": 8389292.0, + "sequence_feature_percent": 39.646923, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 365.0, + "splice_acceptor_variant+intron_variant_percent": 0.001725, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 6.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 498.0, + "splice_donor_variant+intron_variant_percent": 0.002353, + "splice_donor_variant+splice_region_variant+intron_variant": 1.0, + "splice_donor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_region_variant": 454.0, + "splice_region_variant_percent": 0.002146, + "splice_region_variant+intron_variant": 10213.0, + "splice_region_variant+intron_variant_percent": 0.048266, + "splice_region_variant+non_coding_exon_variant": 1876.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008866, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 904.0, + "splice_region_variant+synonymous_variant_percent": 0.004272, + "start_lost": 61.0, + "start_lost_percent": 0.000288, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 317.0, + "stop_gained_percent": 0.001498, + "stop_gained+splice_region_variant": 3.0, + "stop_gained+splice_region_variant_percent": 1.4e-05, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 9.0, + "stop_lost+splice_region_variant_percent": 4.3e-05, + "stop_retained_variant": 42.0, + "stop_retained_variant_percent": 0.000198, + "synonymous_variant": 35115.0, + "synonymous_variant_percent": 0.16595, + "upstream_gene_variant": 1254660.0, + "upstream_gene_variant_percent": 5.929393, + "DOWNSTREAM": 1246085.0, + "DOWNSTREAM_percent": 5.888868, + "EXON": 192074.0, + "EXON_percent": 0.907722, + "INTERGENIC": 2057863.0, + "INTERGENIC_percent": 9.725247, + "INTRON": 7911193.0, + "INTRON_percent": 37.387476, + "MOTIF": 4258.0, + "MOTIF_percent": 0.020123, + "NONE": 8389973.0, + "NONE_percent": 39.650141, + "SPLICE_SITE_ACCEPTOR": 372.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001758, + "SPLICE_SITE_DONOR": 499.0, + "SPLICE_SITE_DONOR_percent": 0.002358, + "SPLICE_SITE_REGION": 13452.0, + "SPLICE_SITE_REGION_percent": 0.063573, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000354, + "UPSTREAM": 1254660.0, + "UPSTREAM_percent": 5.929393, + "UTR_3_PRIME": 65680.0, + "UTR_3_PRIME_percent": 0.310397, + "UTR_5_PRIME": 23824.0, + "UTR_5_PRIME_percent": 0.11259, + "Transitions": 3714461.0, + "Transversions": 1863082.0, + "Ts_Tv_ratio": 1.993718, + "Het": 2558281.0, + "Hom": 1509631.0, + "Missing": 0.0 + }, + "P4107_1001": { + "Genome": "GRCh37.75", + "Number_of_variants_before_filter": 4059325.0, + "Number_of_known_variants
(i.e. non-empty ID)": 3864874.0, + "Number_of_known_variants
(i.e. non-empty ID)_percent": 95.20977, + "Number_of_effects": 21116726.0, + "Genome_total_length": 32036512383.0, + "Genome_effective_length": 3101541615.0, + "Change_rate": 764.0, + "HIGH": 1296.0, + "HIGH_percent": 0.006137, + "LOW": 8421056.0, + "LOW_percent": 39.878606, + "MODERATE": 38519.0, + "MODERATE_percent": 0.18241, + "MODIFIER": 12655855.0, + "MODIFIER_percent": 59.932847, + "MISSENSE": 31604.0, + "MISSENSE_percent": 46.584025, + "NONSENSE": 311.0, + "NONSENSE_percent": 0.458411, + "SILENT": 35928.0, + "SILENT_percent": 52.957564, + "Missense_Silent_ratio": 0.879648, + "Type": "Count", + "3_prime_UTR_variant": 65517.0, + "3_prime_UTR_variant_percent": 0.310261, + "5_prime_UTR_premature_start_codon_gain_variant": 3029.0, + "5_prime_UTR_premature_start_codon_gain_variant_percent": 0.014344, + "5_prime_UTR_variant": 20806.0, + "5_prime_UTR_variant_percent": 0.098529, + "TF_binding_site_variant": 4226.0, + "TF_binding_site_variant_percent": 0.020013, + "downstream_gene_variant": 1243319.0, + "downstream_gene_variant_percent": 5.88784, + "initiator_codon_variant": 10.0, + "initiator_codon_variant_percent": 4.7e-05, + "intergenic_region": 2052490.0, + "intergenic_region_percent": 9.719736, + "intragenic_variant": 675.0, + "intragenic_variant_percent": 0.003197, + "intron_variant": 7895710.0, + "intron_variant_percent": 37.390787, + "missense_variant": 30730.0, + "missense_variant_percent": 0.145524, + "missense_variant+splice_region_variant": 747.0, + "missense_variant+splice_region_variant_percent": 0.003537, + "non_coding_exon_variant": 124583.0, + "non_coding_exon_variant_percent": 0.589973, + "sequence_feature": 8375083.0, + "sequence_feature_percent": 39.660897, + "sequence_feature+intron_variant": 6.0, + "sequence_feature+intron_variant_percent": 2.8e-05, + "splice_acceptor_variant+intron_variant": 370.0, + "splice_acceptor_variant+intron_variant_percent": 0.001752, + "splice_acceptor_variant+splice_donor_variant+intron_variant": 5.0, + "splice_acceptor_variant+splice_donor_variant+intron_variant_percent": 2.4e-05, + "splice_acceptor_variant+splice_region_variant+intron_variant": 1.0, + "splice_acceptor_variant+splice_region_variant+intron_variant_percent": 5e-06, + "splice_donor_variant+intron_variant": 492.0, + "splice_donor_variant+intron_variant_percent": 0.00233, + "splice_region_variant": 462.0, + "splice_region_variant_percent": 0.002188, + "splice_region_variant+intron_variant": 10231.0, + "splice_region_variant+intron_variant_percent": 0.04845, + "splice_region_variant+non_coding_exon_variant": 1838.0, + "splice_region_variant+non_coding_exon_variant_percent": 0.008704, + "splice_region_variant+stop_retained_variant": 5.0, + "splice_region_variant+stop_retained_variant_percent": 2.4e-05, + "splice_region_variant+synonymous_variant": 892.0, + "splice_region_variant+synonymous_variant_percent": 0.004224, + "start_lost": 61.0, + "start_lost_percent": 0.000289, + "start_lost+splice_region_variant": 4.0, + "start_lost+splice_region_variant_percent": 1.9e-05, + "stop_gained": 309.0, + "stop_gained_percent": 0.001463, + "stop_gained+splice_region_variant": 2.0, + "stop_gained+splice_region_variant_percent": 9e-06, + "stop_lost": 44.0, + "stop_lost_percent": 0.000208, + "stop_lost+splice_region_variant": 8.0, + "stop_lost+splice_region_variant_percent": 3.8e-05, + "stop_retained_variant": 43.0, + "stop_retained_variant_percent": 0.000204, + "synonymous_variant": 34988.0, + "synonymous_variant_percent": 0.165689, + "upstream_gene_variant": 1250040.0, + "upstream_gene_variant_percent": 5.919668, + "DOWNSTREAM": 1243319.0, + "DOWNSTREAM_percent": 5.88784, + "EXON": 191454.0, + "EXON_percent": 0.906646, + "INTERGENIC": 2052490.0, + "INTERGENIC_percent": 9.719736, + "INTRON": 7895710.0, + "INTRON_percent": 37.390787, + "MOTIF": 4226.0, + "MOTIF_percent": 0.020013, + "NONE": 8375764.0, + "NONE_percent": 39.664122, + "SPLICE_SITE_ACCEPTOR": 376.0, + "SPLICE_SITE_ACCEPTOR_percent": 0.001781, + "SPLICE_SITE_DONOR": 492.0, + "SPLICE_SITE_DONOR_percent": 0.00233, + "SPLICE_SITE_REGION": 13428.0, + "SPLICE_SITE_REGION_percent": 0.063589, + "TRANSCRIPT": 75.0, + "TRANSCRIPT_percent": 0.000355, + "UPSTREAM": 1250040.0, + "UPSTREAM_percent": 5.919668, + "UTR_3_PRIME": 65517.0, + "UTR_3_PRIME_percent": 0.310261, + "UTR_5_PRIME": 23835.0, + "UTR_5_PRIME_percent": 0.112873, + "Transitions": 3708090.0, + "Transversions": 1858534.0, + "Ts_Tv_ratio": 1.995169, + "Het": 2548668.0, + "Hom": 1508978.0, + "Missing": 0.0 + } + }, + "multiqc_gatk_varianteval": { + "P4107_1004": { + "reference": "hapmap", + "comp_rate": 45.84, + "concordant_rate": 99.09, + "eval_variants": 3457524, + "novel_sites": 1872505, + "known_sites": 3414528, + "snps": 3457524, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.49 + }, + "P4107_1002": { + "reference": "hapmap", + "comp_rate": 45.75, + "concordant_rate": 99.09, + "eval_variants": 3465116, + "novel_sites": 1879862, + "known_sites": 3421917, + "snps": 3465116, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.48 + }, + "P4107_1003": { + "reference": "hapmap", + "comp_rate": 44.76, + "concordant_rate": 99.08, + "eval_variants": 3545454, + "novel_sites": 1958486, + "known_sites": 3473340, + "snps": 3545454, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.47 + }, + "P4107_1005": { + "reference": "hapmap", + "comp_rate": 45.82, + "concordant_rate": 99.1, + "eval_variants": 3459835, + "novel_sites": 1874662, + "known_sites": 3416662, + "snps": 3459835, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.46 + }, + "P4107_1006": { + "reference": "hapmap", + "comp_rate": 45.91, + "concordant_rate": 99.1, + "eval_variants": 3452732, + "novel_sites": 1867441, + "known_sites": 3410273, + "snps": 3452732, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.48 + }, + "P4107_1001": { + "reference": "hapmap", + "comp_rate": 45.44, + "concordant_rate": 99.09, + "eval_variants": 3490344, + "novel_sites": 1904260, + "known_sites": 3437854, + "snps": 3490344, + "mnps": 0, + "insertions": 0, + "deletions": 0, + "complex": 0, + "symbolic": 0, + "mixed": 0, + "nocalls": 0, + "titv_reference": "hapmap", + "known_titv": 2.07, + "novel_titv": 1.49 + } + }, + "multiqc_picard_dups": { + "P4107_1001": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1351481.0, + "READ_PAIRS_EXAMINED": 372454903.0, + "UNMAPPED_READS": 20924225.0, + "UNPAIRED_READ_DUPLICATES": 449788.0, + "READ_PAIR_DUPLICATES": 23612037.0, + "READ_PAIR_OPTICAL_DUPLICATES": 4105864.0, + "PERCENT_DUPLICATION": 0.063884, + "ESTIMATED_LIBRARY_SIZE": 3354000974.0, + "READS_IN_DUPLICATE_PAIRS": 47224074.0, + "READS_IN_UNIQUE_PAIRS": 697685732.0, + "READS_IN_UNIQUE_UNPAIRED": 901693.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 8211728.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 39012346.0, + "READS_IN_DUPLICATE_UNPAIRED": 449788.0, + "READS_UNMAPPED": 20924225.0 + }, + "P4107_1002": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1185838.0, + "READ_PAIRS_EXAMINED": 420138446.0, + "UNMAPPED_READS": 18908318.0, + "UNPAIRED_READ_DUPLICATES": 483800.0, + "READ_PAIR_DUPLICATES": 41401574.0, + "READ_PAIR_OPTICAL_DUPLICATES": 8561816.0, + "PERCENT_DUPLICATION": 0.098979, + "ESTIMATED_LIBRARY_SIZE": 2440020860.0, + "READS_IN_DUPLICATE_PAIRS": 82803148.0, + "READS_IN_UNIQUE_PAIRS": 757473744.0, + "READS_IN_UNIQUE_UNPAIRED": 702038.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 17123632.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 65679516.0, + "READS_IN_DUPLICATE_UNPAIRED": 483800.0, + "READS_UNMAPPED": 18908318.0 + }, + "P4107_1003": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1115159.0, + "READ_PAIRS_EXAMINED": 420500572.0, + "UNMAPPED_READS": 20641697.0, + "UNPAIRED_READ_DUPLICATES": 466283.0, + "READ_PAIR_DUPLICATES": 43865124.0, + "READ_PAIR_OPTICAL_DUPLICATES": 9404573.0, + "PERCENT_DUPLICATION": 0.104732, + "ESTIMATED_LIBRARY_SIZE": 2313040870.0, + "READS_IN_DUPLICATE_PAIRS": 87730248.0, + "READS_IN_UNIQUE_PAIRS": 753270896.0, + "READS_IN_UNIQUE_UNPAIRED": 648876.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 18809146.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 68921102.0, + "READS_IN_DUPLICATE_UNPAIRED": 466283.0, + "READS_UNMAPPED": 20641697.0 + }, + "P4107_1006": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1310769.0, + "READ_PAIRS_EXAMINED": 443876610.0, + "UNMAPPED_READS": 17413231.0, + "UNPAIRED_READ_DUPLICATES": 556444.0, + "READ_PAIR_DUPLICATES": 55005596.0, + "READ_PAIR_OPTICAL_DUPLICATES": 13645138.0, + "PERCENT_DUPLICATION": 0.124364, + "ESTIMATED_LIBRARY_SIZE": 2091799585.0, + "READS_IN_DUPLICATE_PAIRS": 110011192.0, + "READS_IN_UNIQUE_PAIRS": 777742028.0, + "READS_IN_UNIQUE_UNPAIRED": 754325.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 27290276.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 82720916.0, + "READS_IN_DUPLICATE_UNPAIRED": 556444.0, + "READS_UNMAPPED": 17413231.0 + }, + "P4107_1005": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 1184584.0, + "READ_PAIRS_EXAMINED": 474123896.0, + "UNMAPPED_READS": 19034476.0, + "UNPAIRED_READ_DUPLICATES": 655331.0, + "READ_PAIR_DUPLICATES": 115911990.0, + "READ_PAIR_OPTICAL_DUPLICATES": 32539725.0, + "PERCENT_DUPLICATION": 0.244861, + "ESTIMATED_LIBRARY_SIZE": 1017071922.0, + "READS_IN_DUPLICATE_PAIRS": 231823980.0, + "READS_IN_UNIQUE_PAIRS": 716423812.0, + "READS_IN_UNIQUE_UNPAIRED": 529253.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 65079450.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 166744530.0, + "READS_IN_DUPLICATE_UNPAIRED": 655331.0, + "READS_UNMAPPED": 19034476.0 + }, + "P4107_1004": { + "LIBRARY": "A", + "UNPAIRED_READS_EXAMINED": 917143.0, + "READ_PAIRS_EXAMINED": 488850042.0, + "UNMAPPED_READS": 17713571.0, + "UNPAIRED_READ_DUPLICATES": 618736.0, + "READ_PAIR_DUPLICATES": 192412570.0, + "READ_PAIR_OPTICAL_DUPLICATES": 50767101.0, + "PERCENT_DUPLICATION": 0.393866, + "ESTIMATED_LIBRARY_SIZE": 521814268.0, + "READS_IN_DUPLICATE_PAIRS": 384825140.0, + "READS_IN_UNIQUE_PAIRS": 592874944.0, + "READS_IN_UNIQUE_UNPAIRED": 298407.0, + "READS_IN_DUPLICATE_PAIRS_OPTICAL": 101534202.0, + "READS_IN_DUPLICATE_PAIRS_NONOPTICAL": 283290938.0, + "READS_IN_DUPLICATE_UNPAIRED": 618736.0, + "READS_UNMAPPED": 17713571.0 + } + }, + "picard_histogram": {}, + "picard_histogram_1": {}, + "picard_histogram_2": {}, + "multiqc_fastq_screen": { + "P4107_1001": { + "total_reads": 199997, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6670.0, + "Dmelanogaster percentage": 3.34, + "Human counts": 193400.0, + "Human percentage": 96.7, + "Mouse counts": 19626.0, + "Mouse percentage": 9.81, + "PhiX counts": 7.0, + "PhiX percentage": 0.0, + "Xtropicalis counts": 18386.0, + "Xtropicalis percentage": 9.190000000000001, + "No hits counts": 6539, + "No hits percentage": 3.27 + }, + "P4107_1002": { + "total_reads": 199994, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6746.0, + "Dmelanogaster percentage": 3.37, + "Human counts": 194410.0, + "Human percentage": 97.21000000000001, + "Mouse counts": 19885.0, + "Mouse percentage": 9.94, + "PhiX counts": 10.0, + "PhiX percentage": 0.01, + "Xtropicalis counts": 18445.0, + "Xtropicalis percentage": 9.22, + "No hits counts": 5519, + "No hits percentage": 2.76 + }, + "P4107_1003": { + "total_reads": 199991, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6648.0, + "Dmelanogaster percentage": 3.33, + "Human counts": 192581.0, + "Human percentage": 96.30000000000001, + "Mouse counts": 19335.0, + "Mouse percentage": 9.68, + "PhiX counts": 4.0, + "PhiX percentage": 0.0, + "Xtropicalis counts": 17998.0, + "Xtropicalis percentage": 9.0, + "No hits counts": 7319, + "No hits percentage": 3.66 + }, + "P4107_1004": { + "total_reads": 199987, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6327.0, + "Dmelanogaster percentage": 3.16, + "Human counts": 194099.0, + "Human percentage": 97.06, + "Mouse counts": 19085.0, + "Mouse percentage": 9.54, + "PhiX counts": 1.0, + "PhiX percentage": 0.0, + "Xtropicalis counts": 17397.0, + "Xtropicalis percentage": 8.69, + "No hits counts": 5839, + "No hits percentage": 2.92 + }, + "P4107_1005": { + "total_reads": 200014, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6775.0, + "Dmelanogaster percentage": 3.39, + "Human counts": 194923.0, + "Human percentage": 97.46000000000001, + "Mouse counts": 19897.0, + "Mouse percentage": 9.940000000000001, + "PhiX counts": 8.0, + "PhiX percentage": 0.0, + "Xtropicalis counts": 18488.0, + "Xtropicalis percentage": 9.25, + "No hits counts": 5040, + "No hits percentage": 2.52 + }, + "P4107_1006": { + "total_reads": 200018, + "Cfamiliaris counts": 0.0, + "Cfamiliaris percentage": 0.0, + "Dmelanogaster counts": 6755.0, + "Dmelanogaster percentage": 3.37, + "Human counts": 194934.0, + "Human percentage": 97.46000000000001, + "Mouse counts": 19868.0, + "Mouse percentage": 9.93, + "PhiX counts": 5.0, + "PhiX percentage": 0.0, + "Xtropicalis counts": 18447.0, + "Xtropicalis percentage": 9.209999999999999, + "No hits counts": 5020, + "No hits percentage": 2.51 + } + }, + "multiqc_fastqc": { + "P4107_1003": { + "Filename": "P4107_1003_S3_L004_R1_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 431379000.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 41.0, + "total_deduplicated_percentage": 93.20459390615144, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "warn", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "warn", + "adapter_content": "pass", + "kmer_content": "fail" + }, + "P4107_1004": { + "Filename": "P4107_1004_S4_L005_R1_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 498165399.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 40.0, + "total_deduplicated_percentage": 96.05957219035544, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "fail", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "warn", + "adapter_content": "pass", + "kmer_content": "fail" + }, + "P4107_1005": { + "Filename": "P4107_1005_S5_L006_R2_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 484233426.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 41.0, + "total_deduplicated_percentage": 93.39634135480892, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "warn", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "warn", + "adapter_content": "pass", + "kmer_content": "fail" + }, + "P4107_1002": { + "Filename": "P4107_1002_S2_L003_R2_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 430185524.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 41.0, + "total_deduplicated_percentage": 97.84192429791268, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "fail", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "warn", + "adapter_content": "pass", + "kmer_content": "fail" + }, + "P4107_1001": { + "Filename": "P4107_1001_S1_L002_R2_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 383592756.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 41.0, + "total_deduplicated_percentage": 96.30670799611397, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "warn", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "fail", + "adapter_content": "pass", + "kmer_content": "fail" + }, + "P4107_1006": { + "Filename": "P4107_1006_S6_L007_R2_001.fastq.gz", + "File type": "Conventional base calls", + "Encoding": "Sanger / Illumina 1.9", + "Total Sequences": 453238610.0, + "Sequences flagged as poor quality": 0.0, + "Sequence length": 151.0, + "%GC": 41.0, + "total_deduplicated_percentage": 98.22411794648576, + "avg_sequence_length": 151.0, + "median_sequence_length": 151, + "basic_statistics": "pass", + "per_base_sequence_quality": "pass", + "per_tile_sequence_quality": "warn", + "per_sequence_quality_scores": "pass", + "per_base_sequence_content": "warn", + "per_sequence_gc_content": "warn", + "per_base_n_content": "pass", + "sequence_length_distribution": "pass", + "sequence_duplication_levels": "pass", + "overrepresented_sequences": "warn", + "adapter_content": "pass", + "kmer_content": "fail" + } + }, + "multiqc_general_stats": { + "P4107_1003": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 41.35698208795284, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 365, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29751163907807, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.22753318515709, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 92.07815353718176, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 82.37846792457299, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 16.220900002951474, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 40, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 40.46, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 97.62248337302556, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 847562410, + "QualiMap_mqc-generalstats-qualimap-total_reads": 868204107, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 761.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.993752, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4072201.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.47, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.104732, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 6.795406093848555, + "FastQC_mqc-generalstats-fastqc-percent_gc": 41.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 8.333333333333332, + "FastQC_mqc-generalstats-fastqc-total_sequences": 431379000.0 + }, + "P4107_1004": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 40.99306639893834, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 363, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29608730699667, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.2323784611382, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 92.0764160970611, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 84.74393690711297, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 40.45506563396865, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 46, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 47.04, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 98.23363980405004, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 985115356, + "QualiMap_mqc-generalstats-qualimap-total_reads": 1002828927, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 765.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.996252, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4052117.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.49, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.393866, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 3.940427809644561, + "FastQC_mqc-generalstats-fastqc-percent_gc": 40.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 16.666666666666664, + "FastQC_mqc-generalstats-fastqc-total_sequences": 498165399.0 + }, + "P4107_1005": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 41.17477503107992, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 368, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29828148121867, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.2346776709854, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 92.11250283024343, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 85.26307080995146, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 35.61445297024546, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 45, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 45.58, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 98.04765753107331, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 955921317, + "QualiMap_mqc-generalstats-qualimap-total_reads": 974955793, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 762.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.993718, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4069620.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.46, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.244861, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 6.603658645191075, + "FastQC_mqc-generalstats-fastqc-percent_gc": 41.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 8.333333333333332, + "FastQC_mqc-generalstats-fastqc-total_sequences": 484233426.0 + }, + "P4107_1002": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 41.29061839482755, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 367, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29794180799979, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.22694426994362, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 92.07669477353262, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 82.33885866147037, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 15.934603451516617, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 40, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 40.38, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 97.81653054978287, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 847067526, + "QualiMap_mqc-generalstats-qualimap-total_reads": 865975844, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 762.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.994323, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4067653.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.48, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.098979, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 2.1580757020873165, + "FastQC_mqc-generalstats-fastqc-percent_gc": 41.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 16.666666666666664, + "FastQC_mqc-generalstats-fastqc-total_sequences": 430185524.0 + }, + "P4107_1006": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 41.269984866552605, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 362, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29880346765438, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.23074228464515, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 92.10216755684698, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 84.09635794292338, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 23.664833468422913, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 43, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 42.59, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 98.09145739981456, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 894970438, + "QualiMap_mqc-generalstats-qualimap-total_reads": 912383669, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 761.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.993421, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4072161.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.48, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.124364, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 1.7758820535142377, + "FastQC_mqc-generalstats-fastqc-percent_gc": 41.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 8.333333333333332, + "FastQC_mqc-generalstats-fastqc-total_sequences": 453238610.0 + }, + "P4107_1001": { + "QualiMap_mqc-generalstats-qualimap-avg_gc": 41.36746349676451, + "QualiMap_mqc-generalstats-qualimap-median_insert_size": 358, + "QualiMap_mqc-generalstats-qualimap-1_x_pc": 92.29432810535144, + "QualiMap_mqc-generalstats-qualimap-5_x_pc": 92.21025634005906, + "QualiMap_mqc-generalstats-qualimap-10_x_pc": 91.9610844336904, + "QualiMap_mqc-generalstats-qualimap-30_x_pc": 74.66018701572433, + "QualiMap_mqc-generalstats-qualimap-50_x_pc": 5.240211027996628, + "QualiMap_mqc-generalstats-qualimap-median_coverage": 36, + "QualiMap_mqc-generalstats-qualimap-mean_coverage": 35.78, + "QualiMap_mqc-generalstats-qualimap-percentage_aligned": 97.28985936468062, + "QualiMap_mqc-generalstats-qualimap-mapped_reads": 751147332, + "QualiMap_mqc-generalstats-qualimap-total_reads": 772071557, + "SnpEff_mqc-generalstats-snpeff-Change_rate": 764.0, + "SnpEff_mqc-generalstats-snpeff-Ts_Tv_ratio": 1.995169, + "SnpEff_mqc-generalstats-snpeff-Number_of_variants_before_filter": 4059325.0, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-known_titv": 2.07, + "GATK: GATK VariantEval_mqc-generalstats-gatk_gatk_varianteval-novel_titv": 1.49, + "Picard: Mark Duplicates_mqc-generalstats-picard_mark_duplicates-PERCENT_DUPLICATION": 0.063884, + "FastQC_mqc-generalstats-fastqc-percent_duplicates": 3.693292003886029, + "FastQC_mqc-generalstats-fastqc-percent_gc": 41.0, + "FastQC_mqc-generalstats-fastqc-avg_sequence_length": 151.0, + "FastQC_mqc-generalstats-fastqc-median_sequence_length": 151, + "FastQC_mqc-generalstats-fastqc-percent_fails": 16.666666666666664, + "FastQC_mqc-generalstats-fastqc-total_sequences": 383592756.0 + } + } + }, + "config_analysis_dir_abs": [ + "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs" + ], + "config_analysis_dir": [ + "." + ], + "config_creation_date": "2024-02-28, 14:39 CET", + "config_git_hash": null, + "config_intro_text": null, + "config_report_comment": null, + "config_report_header_info": null, + "config_script_path": "/Users/ewels/.miniconda3/miniconda3/envs/py3.12/lib/python3.12/site-packages/multiqc/utils", + "config_short_version": "1.21", + "config_subtitle": null, + "config_title": null, + "config_version": "1.21", + "config_output_dir": "/Users/ewels/GitHub/MultiQC/website/public/examples/wgs" +} diff --git a/man/TidyMultiqc-package.Rd b/man/TidyMultiqc-package.Rd index 53d73d2..e345196 100644 --- a/man/TidyMultiqc-package.Rd +++ b/man/TidyMultiqc-package.Rd @@ -2,6 +2,7 @@ % Please edit documentation in R/multiqc.R \docType{package} \name{TidyMultiqc-package} +\alias{TidyMultiqc} \alias{TidyMultiqc-package} \title{TidyMultiqc: Converting MultiQC reports into tidy data frames} \description{ @@ -12,3 +13,13 @@ If you are reading this manual, you should immediately stop reading this and instead refer to the documentation website at \url{https://multimeric.github.io/TidyMultiqc/}, which provides more accessible documentation. } +\seealso{ +Useful links: +\itemize{ + \item \url{https://multimeric.github.io/TidyMultiqc/} + \item \url{https://github.com/multimeric/TidyMultiqc} + \item \url{https://cran.r-project.org/package=TidyMultiqc} + \item Report bugs at \url{https://github.com/multimeric/TidyMultiqc/issues} +} + +} diff --git a/man/is_plotly.Rd b/man/is_plotly.Rd new file mode 100644 index 0000000..6015ad7 --- /dev/null +++ b/man/is_plotly.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plot_parsers.R +\name{is_plotly} +\alias{is_plotly} +\title{Determine if a plot is Plotly} +\usage{ +is_plotly(plot_data) +} +\arguments{ +\item{plot_data}{A list containing the top level data for a single plot.} +} +\value{ +A logical scalar. TRUE if the plot is a plotly plot, or FALSE if it's a HighCharts one. +} +\description{ +Plotly plots are generated by MultiQC 1.2 and above. +This matters because the plot data formats differ between these two formats. +} +\keyword{internal} diff --git a/man/load_multiqc.Rd b/man/load_multiqc.Rd index f4c624b..e857a15 100644 --- a/man/load_multiqc.Rd +++ b/man/load_multiqc.Rd @@ -7,7 +7,9 @@ load_multiqc( paths, plots = NULL, - find_metadata = function(...) { list() }, + find_metadata = function(...) { + list() + }, plot_parsers = list(), sections = "general" ) diff --git a/man/map_xy_line_datasets.Rd b/man/map_xy_line_datasets.Rd new file mode 100644 index 0000000..25a7459 --- /dev/null +++ b/man/map_xy_line_datasets.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/plot_parsers.R +\name{map_xy_line_datasets} +\alias{map_xy_line_datasets} +\title{Parses a list of xyline plot datasets} +\usage{ +map_xy_line_datasets(datasets, plot_name) +} +\arguments{ +\item{dataset}{A list which has the names "name" and "data", which +originate from a MultiQC plot} +} +\value{ +A list whose names are sample names. Each value is a data frame with one column. +} +\description{ +Parses a list of xyline plot datasets +} +\keyword{internal} diff --git a/tests/testthat/test-multiqc-12.R b/tests/testthat/test-multiqc-12.R new file mode 100644 index 0000000..7bc3ef1 --- /dev/null +++ b/tests/testthat/test-multiqc-12.R @@ -0,0 +1,27 @@ +test_that("The non-plot data are parsed identically", { + old <- system.file("extdata", "wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc() + new <- system.file("extdata", "1.2_wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc() + intersect( + colnames(old), + colnames(new) + ) %>% + purrr::walk(function(col){ + testthat::expect_equal(old[, col], new[, col]) + }) +}) + +test_that("xy_line plots are parsed identically", { + old <- system.file("extdata", "wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc(sections = "plot", plots = "qualimap_coverage_histogram") + new <- system.file("extdata", "1.2_wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc(sections = "plot", plots = "qualimap_coverage_histogram") + testthat::expect_identical(old, new) +}) + +test_that("bar plots are parsed identically", { + old <- system.file("extdata", "wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc(sections = "plot", plots = "snpeff_variant_effects_region") + new <- system.file("extdata", "1.2_wgs", "multiqc_data.json", package = "TidyMultiqc") %>% TidyMultiqc::load_multiqc(sections = "plot", plots = "snpeff_variant_effects_region") + # Check that the samples are identical and in the right order + testthat::expect_identical(old$metadata.sample_id, new$metadata.sample_id) + # Check that each tibble inside the plot column is mapequal. Namely, ignore differences in list order, since hopefully users + # are accessing these elements by name and not by position + purrr::map2(old$plot.snpeff_variant_effects_region, new$plot.snpeff_variant_effects_region, testthat::expect_mapequal) +})