From 3fe37526703ddbe1e452de43437dc7c366ce5c9e Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Mon, 9 Jun 2025 14:45:18 +1000 Subject: [PATCH 01/41] add adir1 class for anopheles dirus data release --- adir1_explore.ipynb | 451 ++++++++++++++++++++++++++++++++++++ malariagen_data/__init__.py | 1 + malariagen_data/adir1.py | 208 +++++++++++++++++ 3 files changed, 660 insertions(+) create mode 100644 adir1_explore.ipynb create mode 100644 malariagen_data/adir1.py diff --git a/adir1_explore.ipynb b/adir1_explore.ipynb new file mode 100644 index 000000000..c42d93dd5 --- /dev/null +++ b/adir1_explore.ipynb @@ -0,0 +1,451 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import malariagen_data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": [ + "'use strict';\n", + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " const force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + "const JS_MIME_TYPE = 'application/javascript';\n", + " const HTML_MIME_TYPE = 'text/html';\n", + " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", + " const CLASS_NAME = 'output_bokeh rendered_html';\n", + "\n", + " /**\n", + " * Render data to the DOM node\n", + " */\n", + " function render(props, node) {\n", + " const script = document.createElement(\"script\");\n", + " node.appendChild(script);\n", + " }\n", + "\n", + " /**\n", + " * Handle when an output is cleared or removed\n", + " */\n", + " function handleClearOutput(event, handle) {\n", + " function drop(id) {\n", + " const view = Bokeh.index.get_by_id(id)\n", + " if (view != null) {\n", + " view.model.document.clear()\n", + " Bokeh.index.delete(view)\n", + " }\n", + " }\n", + "\n", + " const cell = handle.cell;\n", + "\n", + " const id = cell.output_area._bokeh_element_id;\n", + " const server_id = cell.output_area._bokeh_server_id;\n", + "\n", + " // Clean up Bokeh references\n", + " if (id != null) {\n", + " drop(id)\n", + " }\n", + "\n", + " if (server_id !== undefined) {\n", + " // Clean up Bokeh references\n", + " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", + " cell.notebook.kernel.execute(cmd_clean, {\n", + " iopub: {\n", + " output: function(msg) {\n", + " const id = msg.content.text.trim()\n", + " drop(id)\n", + " }\n", + " }\n", + " });\n", + " // Destroy server and session\n", + " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", + " cell.notebook.kernel.execute(cmd_destroy);\n", + " }\n", + " }\n", + "\n", + " /**\n", + " * Handle when a new output is added\n", + " */\n", + " function handleAddOutput(event, handle) {\n", + " const output_area = handle.output_area;\n", + " const output = handle.output;\n", + "\n", + " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", + " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", + " return\n", + " }\n", + "\n", + " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", + "\n", + " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", + " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", + " // store reference to embed id on output_area\n", + " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", + " }\n", + " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", + " const bk_div = document.createElement(\"div\");\n", + " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", + " const script_attrs = bk_div.children[0].attributes;\n", + " for (let i = 0; i < script_attrs.length; i++) {\n", + " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", + " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", + " }\n", + " // store reference to server id on output_area\n", + " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", + " }\n", + " }\n", + "\n", + " function register_renderer(events, OutputArea) {\n", + "\n", + " function append_mime(data, metadata, element) {\n", + " // create a DOM node to render to\n", + " const toinsert = this.create_output_subarea(\n", + " metadata,\n", + " CLASS_NAME,\n", + " EXEC_MIME_TYPE\n", + " );\n", + " this.keyboard_manager.register_events(toinsert);\n", + " // Render to node\n", + " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", + " render(props, toinsert[toinsert.length - 1]);\n", + " element.append(toinsert);\n", + " return toinsert\n", + " }\n", + "\n", + " /* Handle when an output is cleared or removed */\n", + " events.on('clear_output.CodeCell', handleClearOutput);\n", + " events.on('delete.Cell', handleClearOutput);\n", + "\n", + " /* Handle when a new output is added */\n", + " events.on('output_added.OutputArea', handleAddOutput);\n", + "\n", + " /**\n", + " * Register the mime type and append_mime function with output_area\n", + " */\n", + " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", + " /* Is output safe? */\n", + " safe: true,\n", + " /* Index of renderer in `output_area.display_order` */\n", + " index: 0\n", + " });\n", + " }\n", + "\n", + " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", + " if (root.Jupyter !== undefined) {\n", + " const events = require('base/js/events');\n", + " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", + "\n", + " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", + " register_renderer(events, OutputArea);\n", + " }\n", + " }\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " const NB_LOAD_WARNING = {'data': {'text/html':\n", + " \"
\\n\"+\n", + " \"

\\n\"+\n", + " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", + " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", + " \"

\\n\"+\n", + " \"\\n\"+\n", + " \"\\n\"+\n", + " \"from bokeh.resources import INLINE\\n\"+\n", + " \"output_notebook(resources=INLINE)\\n\"+\n", + " \"\\n\"+\n", + " \"
\"}};\n", + "\n", + " function display_loaded(error = null) {\n", + " const el = document.getElementById(null);\n", + " if (el != null) {\n", + " const html = (() => {\n", + " if (typeof root.Bokeh === \"undefined\") {\n", + " if (error == null) {\n", + " return \"BokehJS is loading ...\";\n", + " } else {\n", + " return \"BokehJS failed to load.\";\n", + " }\n", + " } else {\n", + " const prefix = `BokehJS ${root.Bokeh.version}`;\n", + " if (error == null) {\n", + " return `${prefix} successfully loaded.`;\n", + " } else {\n", + " return `${prefix} encountered errors while loading and may not function as expected.`;\n", + " }\n", + " }\n", + " })();\n", + " el.innerHTML = html;\n", + "\n", + " if (error != null) {\n", + " const wrapper = document.createElement(\"div\");\n", + " wrapper.style.overflow = \"auto\";\n", + " wrapper.style.height = \"5em\";\n", + " wrapper.style.resize = \"vertical\";\n", + " const content = document.createElement(\"div\");\n", + " content.style.fontFamily = \"monospace\";\n", + " content.style.whiteSpace = \"pre-wrap\";\n", + " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", + " content.textContent = error.stack ?? error.toString();\n", + " wrapper.append(content);\n", + " el.append(wrapper);\n", + " }\n", + " } else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(() => display_loaded(error), 100);\n", + " }\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls == null || js_urls.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error(url) {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (let i = 0; i < css_urls.length; i++) {\n", + " const url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " for (let i = 0; i < js_urls.length; i++) {\n", + " const url = js_urls[i];\n", + " const element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", + " const css_urls = [];\n", + "\n", + " const inline_js = [ function(Bokeh) {\n", + " Bokeh.set_log_level(\"info\");\n", + " },\n", + "function(Bokeh) {\n", + " }\n", + " ];\n", + "\n", + " function run_inline_js() {\n", + " if (root.Bokeh !== undefined || force === true) {\n", + " try {\n", + " for (let i = 0; i < inline_js.length; i++) {\n", + " inline_js[i].call(root, root.Bokeh);\n", + " }\n", + "\n", + " } catch (error) {throw error;\n", + " }} else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(run_inline_js, 100);\n", + " } else if (!root._bokeh_failed_load) {\n", + " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", + " root._bokeh_failed_load = true;\n", + " } else if (force !== true) {\n", + " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", + " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", + " }\n", + " }\n", + "\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", + " run_inline_js();\n", + " } else {\n", + " load_libs(css_urls, js_urls, function() {\n", + " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", + " run_inline_js();\n", + " });\n", + " }\n", + "}(window));" + ], + "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Init API\n", + "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f171c3b7-30c2-4e9f-9133-22206985de07", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'KB672868'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Are the contigs here? \n", + "chroms = adir1.contigs[:5]\n", + "chroms[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:426\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_sets\u001b[49m\u001b[43m[\u001b[49m\u001b[43mrelease\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n", + "\u001b[0;31mKeyError\u001b[0m: '1.x'", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m snps \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msnp_calls\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868:1000000-2000000\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/snp_data.py:1007\u001b[0m, in \u001b[0;36mAnophelesSnpData.snp_calls\u001b[0;34m(self, region, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, inline_array, chunks, cohort_size, min_cohort_size, max_cohort_size, random_seed)\u001b[0m\n\u001b[1;32m 1001\u001b[0m base_params\u001b[38;5;241m.\u001b[39mvalidate_sample_selection_params(\n\u001b[1;32m 1002\u001b[0m sample_query\u001b[38;5;241m=\u001b[39msample_query, sample_indices\u001b[38;5;241m=\u001b[39msample_indices\n\u001b[1;32m 1003\u001b[0m )\n\u001b[1;32m 1005\u001b[0m \u001b[38;5;66;03m# Normalise parameters.\u001b[39;00m\n\u001b[1;32m 1006\u001b[0m sample_sets_prepped: Tuple[\u001b[38;5;28mstr\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mtuple\u001b[39m(\n\u001b[0;32m-> 1007\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_sets_param\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1008\u001b[0m )\n\u001b[1;32m 1009\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m sample_sets\n\u001b[1;32m 1010\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_indices \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:524\u001b[0m, in \u001b[0;36mAnophelesBase._prep_sample_sets_param\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_prep_sample_sets_param\u001b[39m(\n\u001b[1;32m 518\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets]\n\u001b[1;32m 519\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m List[\u001b[38;5;28mstr\u001b[39m]:\n\u001b[1;32m 520\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Common handling for the `sample_sets` parameter. For convenience, we\u001b[39;00m\n\u001b[1;32m 521\u001b[0m \u001b[38;5;124;03m allow this to be a single sample set, or a list of sample sets, or a\u001b[39;00m\n\u001b[1;32m 522\u001b[0m \u001b[38;5;124;03m release identifier, or a list of release identifiers.\"\"\"\u001b[39;00m\n\u001b[0;32m--> 524\u001b[0m all_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mto_list()\n\u001b[1;32m 526\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_sets \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 527\u001b[0m \u001b[38;5;66;03m# All available sample sets.\u001b[39;00m\n\u001b[1;32m 528\u001b[0m prepped_sample_sets \u001b[38;5;241m=\u001b[39m all_sample_sets\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets(release\u001b[38;5;241m=\u001b[39mr) \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrelease\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mr\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:430\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release]\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n\u001b[0;32m--> 430\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_read_sample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43msingle_release\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrelease\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 431\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release] \u001b[38;5;241m=\u001b[39m df\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(release, Sequence):\n\u001b[1;32m 434\u001b[0m \u001b[38;5;66;03m# Ensure no duplicates.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:376\u001b[0m, in \u001b[0;36mAnophelesBase._read_sample_sets\u001b[0;34m(self, single_release)\u001b[0m\n\u001b[1;32m 373\u001b[0m manifest_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mrelease_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/manifest.tsv\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 375\u001b[0m \u001b[38;5;66;03m# Read the manifest into a pandas dataframe.\u001b[39;00m\n\u001b[0;32m--> 376\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_file\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmanifest_path\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m f:\n\u001b[1;32m 377\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(f, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, na_values\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 379\u001b[0m \u001b[38;5;66;03m# Add a \"release\" column for convenience.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:218\u001b[0m, in \u001b[0;36mAnophelesBase.open_file\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 215\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 216\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mopen_file\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m IO:\n\u001b[1;32m 217\u001b[0m full_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_base_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m--> 218\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_fs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfull_path\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1154\u001b[0m, in \u001b[0;36mAbstractFileSystem.open\u001b[0;34m(self, path, mode, block_size, cache_options, compression, **kwargs)\u001b[0m\n\u001b[1;32m 1152\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1153\u001b[0m ac \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mautocommit\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_intrans)\n\u001b[0;32m-> 1154\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_open\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1155\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1156\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1157\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1158\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mac\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1159\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1160\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1161\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfsspec\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompression\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m compr\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1309\u001b[0m, in \u001b[0;36mGCSFileSystem._open\u001b[0;34m(self, path, mode, block_size, cache_options, acl, consistency, metadata, autocommit, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1307\u001b[0m block_size \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdefault_block_size\n\u001b[1;32m 1308\u001b[0m const \u001b[38;5;241m=\u001b[39m consistency \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconsistency\n\u001b[0;32m-> 1309\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mGCSFile\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1310\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1311\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1312\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1313\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1314\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1315\u001b[0m \u001b[43m \u001b[49m\u001b[43mconsistency\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconst\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1316\u001b[0m \u001b[43m \u001b[49m\u001b[43mmetadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmetadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1317\u001b[0m \u001b[43m \u001b[49m\u001b[43macl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43macl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1318\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1319\u001b[0m \u001b[43m \u001b[49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1320\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1321\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1468\u001b[0m, in \u001b[0;36mGCSFile.__init__\u001b[0;34m(self, gcsfs, path, mode, block_size, autocommit, cache_type, cache_options, acl, consistency, metadata, content_type, timeout, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1466\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAttempt to open a bucket\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 1467\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration \u001b[38;5;241m=\u001b[39m _coalesce_generation(generation, path_generation)\n\u001b[0;32m-> 1468\u001b[0m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;21;43m__init__\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1469\u001b[0m \u001b[43m \u001b[49m\u001b[43mgcsfs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1470\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1471\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1472\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1473\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1474\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_type\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1475\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1476\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1477\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1478\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgcsfs \u001b[38;5;241m=\u001b[39m gcsfs\n\u001b[1;32m 1479\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbucket \u001b[38;5;241m=\u001b[39m bucket\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1510\u001b[0m, in \u001b[0;36mAbstractBufferedFile.__init__\u001b[0;34m(self, fs, path, mode, block_size, autocommit, cache_type, cache_options, size, **kwargs)\u001b[0m\n\u001b[1;32m 1508\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m size\n\u001b[1;32m 1509\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1510\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdetails\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msize\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 1511\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcache \u001b[38;5;241m=\u001b[39m caches[cache_type](\n\u001b[1;32m 1512\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mblocksize, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_fetch_range, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mcache_options\n\u001b[1;32m 1513\u001b[0m )\n\u001b[1;32m 1514\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1504\u001b[0m, in \u001b[0;36mGCSFile.details\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1501\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 1502\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdetails\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 1503\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m-> 1504\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43minfo\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgeneration\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneration\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1505\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:115\u001b[0m, in \u001b[0;36msync_wrapper..wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mwrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m obj \u001b[38;5;129;01mor\u001b[39;00m args[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:100\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 98\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m FSTimeoutError \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mreturn_result\u001b[39;00m\n\u001b[1;32m 99\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 101\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 102\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m return_result\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:55\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(event, coro, result, timeout)\u001b[0m\n\u001b[1;32m 53\u001b[0m coro \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(coro, timeout\u001b[38;5;241m=\u001b[39mtimeout)\n\u001b[1;32m 54\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 55\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 56\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n\u001b[1;32m 57\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m ex\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:797\u001b[0m, in \u001b[0;36mGCSFileSystem._info\u001b[0;34m(self, path, generation, **kwargs)\u001b[0m\n\u001b[1;32m 795\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m 796\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdetail\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m \u001b[38;5;66;03m# Force to true for info\u001b[39;00m\n\u001b[0;32m--> 797\u001b[0m out \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ls(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 798\u001b[0m out0 \u001b[38;5;241m=\u001b[39m [o \u001b[38;5;28;01mfor\u001b[39;00m o \u001b[38;5;129;01min\u001b[39;00m out \u001b[38;5;28;01mif\u001b[39;00m o[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;241m==\u001b[39m path]\n\u001b[1;32m 799\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m out0:\n\u001b[1;32m 800\u001b[0m \u001b[38;5;66;03m# exact hit\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:834\u001b[0m, in \u001b[0;36mGCSFileSystem._ls\u001b[0;34m(self, path, detail, prefix, versions, **kwargs)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 833\u001b[0m out \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m--> 834\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m entry \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_list_objects(\n\u001b[1;32m 835\u001b[0m path, prefix\u001b[38;5;241m=\u001b[39mprefix, versions\u001b[38;5;241m=\u001b[39mversions\n\u001b[1;32m 836\u001b[0m ):\n\u001b[1;32m 837\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m versions \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgeneration\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m entry:\n\u001b[1;32m 838\u001b[0m entry \u001b[38;5;241m=\u001b[39m entry\u001b[38;5;241m.\u001b[39mcopy()\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:549\u001b[0m, in \u001b[0;36mGCSFileSystem._list_objects\u001b[0;34m(self, path, prefix, versions)\u001b[0m\n\u001b[1;32m 547\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (items \u001b[38;5;241m+\u001b[39m pseudodirs):\n\u001b[1;32m 548\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key:\n\u001b[0;32m--> 549\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [\u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_object(path)]\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m []\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:491\u001b[0m, in \u001b[0;36mGCSFileSystem._get_object\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 488\u001b[0m \u001b[38;5;66;03m# Work around various permission settings. Prefer an object get (storage.objects.get), but\u001b[39;00m\n\u001b[1;32m 489\u001b[0m \u001b[38;5;66;03m# fall back to a bucket list + filter to object name (storage.objects.list).\u001b[39;00m\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 491\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call(\n\u001b[1;32m 492\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m/o/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, bucket, key, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, generation\u001b[38;5;241m=\u001b[39mgeneration\n\u001b[1;32m 493\u001b[0m )\n\u001b[1;32m 494\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 495\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mstr\u001b[39m(e)\u001b[38;5;241m.\u001b[39mstartswith(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mForbidden\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:418\u001b[0m, in \u001b[0;36mGCSFileSystem._call\u001b[0;34m(self, method, path, json_out, info_out, *args, **kwargs)\u001b[0m\n\u001b[1;32m 414\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_call\u001b[39m(\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28mself\u001b[39m, method, path, \u001b[38;5;241m*\u001b[39margs, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, info_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 416\u001b[0m ):\n\u001b[1;32m 417\u001b[0m logger\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mmethod\u001b[38;5;241m.\u001b[39mupper()\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00margs\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkwargs\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mheaders\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 418\u001b[0m status, headers, info, contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_request(\n\u001b[1;32m 419\u001b[0m method, path, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 420\u001b[0m )\n\u001b[1;32m 421\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m json_out:\n\u001b[1;32m 422\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m json\u001b[38;5;241m.\u001b[39mloads(contents)\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/decorator.py:221\u001b[0m, in \u001b[0;36mdecorate..fun\u001b[0;34m(*args, **kw)\u001b[0m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m kwsyntax:\n\u001b[1;32m 220\u001b[0m args, kw \u001b[38;5;241m=\u001b[39m fix(args, kw, sig)\n\u001b[0;32m--> 221\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m caller(func, \u001b[38;5;241m*\u001b[39m(extras \u001b[38;5;241m+\u001b[39m args), \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkw)\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:114\u001b[0m, in \u001b[0;36mretry_request\u001b[0;34m(func, retries, *args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m retry \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;28mmin\u001b[39m(random\u001b[38;5;241m.\u001b[39mrandom() \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m2\u001b[39m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m (retry \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m), \u001b[38;5;241m32\u001b[39m))\n\u001b[0;32m--> 114\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (\n\u001b[1;32m 116\u001b[0m HttpError,\n\u001b[1;32m 117\u001b[0m requests\u001b[38;5;241m.\u001b[39mexceptions\u001b[38;5;241m.\u001b[39mRequestException,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 120\u001b[0m aiohttp\u001b[38;5;241m.\u001b[39mclient_exceptions\u001b[38;5;241m.\u001b[39mClientError,\n\u001b[1;32m 121\u001b[0m ) \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 122\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m (\n\u001b[1;32m 123\u001b[0m \u001b[38;5;28misinstance\u001b[39m(e, HttpError)\n\u001b[1;32m 124\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m e\u001b[38;5;241m.\u001b[39mcode \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m400\u001b[39m\n\u001b[1;32m 125\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrequester pays\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m e\u001b[38;5;241m.\u001b[39mmessage\n\u001b[1;32m 126\u001b[0m ):\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:411\u001b[0m, in \u001b[0;36mGCSFileSystem._request\u001b[0;34m(self, method, path, headers, json, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 408\u001b[0m info \u001b[38;5;241m=\u001b[39m r\u001b[38;5;241m.\u001b[39mrequest_info \u001b[38;5;66;03m# for debug only\u001b[39;00m\n\u001b[1;32m 409\u001b[0m contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m r\u001b[38;5;241m.\u001b[39mread()\n\u001b[0;32m--> 411\u001b[0m \u001b[43mvalidate_response\u001b[49m\u001b[43m(\u001b[49m\u001b[43mstatus\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcontents\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 412\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m status, headers, info, contents\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:83\u001b[0m, in \u001b[0;36mvalidate_response\u001b[0;34m(status, content, path, args)\u001b[0m\n\u001b[1;32m 81\u001b[0m path \u001b[38;5;241m=\u001b[39m path\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;241m*\u001b[39m[quote(p) \u001b[38;5;28;01mfor\u001b[39;00m p \u001b[38;5;129;01min\u001b[39;00m args])\n\u001b[1;32m 82\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m status \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m404\u001b[39m:\n\u001b[0;32m---> 83\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(path)\n\u001b[1;32m 85\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(content, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdecode\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv" + ] + } + ], + "source": [ + "snps = adir1.snp_calls(region=\"KB672868:1000000-2000000\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/malariagen_data/__init__.py b/malariagen_data/__init__.py index dfa555aa7..6bc938825 100644 --- a/malariagen_data/__init__.py +++ b/malariagen_data/__init__.py @@ -1,5 +1,6 @@ # flake8: noqa from .af1 import Af1 +from .adir1 import Adir1 from .ag3 import Ag3 from .amin1 import Amin1 from .anopheles import AnophelesDataResource, Region diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py new file mode 100644 index 000000000..9b053ca62 --- /dev/null +++ b/malariagen_data/adir1.py @@ -0,0 +1,208 @@ +import sys + +import plotly.express as px # type: ignore + +import malariagen_data +from .anopheles import AnophelesDataResource + +MAJOR_VERSION_NUMBER = 1 +MAJOR_VERSION_PATH = "v1.x" +CONFIG_PATH = "v1.x-config.json" +GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/" +GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/v1.x/staging" +GCS_REGION_URLS = { + "us-central1": "gs://vo_adir_production_us_central1", +} +# XPEHH_GWSS_CACHE_NAME = "adir1_xpehh_gwss_v1" +# IHS_GWSS_CACHE_NAME = "adir1_ihs_gwss_v1" + +TAXON_PALETTE = px.colors.qualitative.Plotly +TAXON_COLORS = { + "dirus": TAXON_PALETTE[0], +} + + +class Adir1(AnophelesDataResource): + """Provides access to data from Adir1.x releases. + + Parameters + ---------- + url : str, optional + Base path to data. Defaults to use Google Cloud Storage, or can + be a local path on your file system if data have been downloaded. + site_filters_analysis : str, optional + Site filters analysis version. + bokeh_output_notebook : bool, optional + If True (default), configure bokeh to output plots to the notebook. + results_cache : str, optional + Path to directory on local file system to save results. + log : str or stream, optional + File path or stream output for logging messages. + debug : bool, optional + Set to True to enable debug level logging. + show_progress : bool, optional + If True, show a progress bar during longer-running computations. The default can be overridden using an environmental variable named MGEN_SHOW_PROGRESS. + check_location : bool, optional + If True, use ipinfo to check the location of the client system. + **kwargs + Passed through to fsspec when setting up file system access. + + Examples + -------- + Access data from Google Cloud Storage (default): + + >>> import malariagen_data + >>> adir1 = malariagen_data.Adir1() + + Access data downloaded to a local file system: + + >>> adir1 = malariagen_data.Adir1("/local/path/to/vo_adir_release/") + + Access data from Google Cloud Storage, with caching on the local file system + in a directory named "gcs_cache": + + >>> adir1 = malariagen_data.Adir1( + ... "simplecache::gs://vo_adir_production_us_central1", + ... simplecache=dict(cache_storage="gcs_cache"), + ... ) + + Set up caching of some longer-running computations on the local file system, + in a directory named "results_cache": + + >>> adir1 = malariagen_data.Adir1(results_cache="results_cache") + + """ + + # _xpehh_gwss_cache_name = XPEHH_GWSS_CACHE_NAME + # _ihs_gwss_cache_name = IHS_GWSS_CACHE_NAME + + def __init__( + self, + url=None, + bokeh_output_notebook=True, + results_cache=None, + log=sys.stdout, + debug=False, + show_progress=None, + check_location=True, + cohorts_analysis=None, + site_filters_analysis=None, + discordant_read_calls_analysis=None, + pre=False, + tqdm_class=None, + **storage_options, # used by fsspec via init_filesystem() + ): + super().__init__( + url=url, + config_path=CONFIG_PATH, + cohorts_analysis=cohorts_analysis, + aim_analysis=None, + aim_metadata_dtype=None, + aim_ids=None, + aim_palettes=None, + site_filters_analysis=site_filters_analysis, + discordant_read_calls_analysis=discordant_read_calls_analysis, + default_site_mask="funestus", + default_phasing_analysis="funestus", + default_coverage_calls_analysis="funestus", + bokeh_output_notebook=bokeh_output_notebook, + results_cache=results_cache, + log=log, + debug=debug, + show_progress=show_progress, + check_location=check_location, + pre=pre, + gcs_default_url=GCS_DEFAULT_URL, + gcs_region_urls=GCS_REGION_URLS, + major_version_number=MAJOR_VERSION_NUMBER, + major_version_path=MAJOR_VERSION_PATH, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + storage_options=storage_options, # used by fsspec via init_filesystem() + tqdm_class=tqdm_class, + taxon_colors=TAXON_COLORS, + virtual_contigs=None, + gene_names=None, + inversion_tag_path=None, + ) + + def __repr__(self): + text = ( + f"\n" + f"Storage URL : {self._url}\n" + f"Data releases available : {', '.join(self.releases)}\n" + f"Results cache : {self._results_cache}\n" + # f"Cohorts analysis : {self._cohorts_analysis}\n" + f"Site filters analysis : {self._site_filters_analysis}\n" + f"Software version : malariagen_data {malariagen_data.__version__}\n" + f"Client location : {self.client_location}\n" + f"---\n" + f"Please note that data are subject to terms of use,\n" + f"for more information see https://www.malariagen.net/data\n" + f"or contact support@malariagen.net. For API documentation see \n" + f"https://malariagen.github.io/malariagen-data-python/v{malariagen_data.__version__}/Adir1.html" + ) + return text + + def _repr_html_(self): + html = f""" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MalariaGEN Adir1 API client
+ Please note that data are subject to terms of use, + for more information see + the MalariaGEN website or contact support@malariagen.net. + See also the Adir1 API docs. +
+ Storage URL + {self._url}
+ Data releases available + {', '.join(self.releases)}
+ Results cache + {self._results_cache}
+ Cohorts analysis + {self._cohorts_analysis}
+ Site filters analysis + {self._site_filters_analysis}
+ Software version + malariagen_data {malariagen_data.__version__}
+ Client location + {self.client_location}
+ """ + return html From 921b9c4c942fb1d10fcbe7350103000ce83c5fc7 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 10 Jun 2025 15:03:15 +1000 Subject: [PATCH 02/41] add notebook exploring / troubleshooting adir1 --- notebooks/adir1_explore.ipynb | 483 ++++++++++++++++++++++++++++++++++ 1 file changed, 483 insertions(+) create mode 100644 notebooks/adir1_explore.ipynb diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb new file mode 100644 index 000000000..1fa71882d --- /dev/null +++ b/notebooks/adir1_explore.ipynb @@ -0,0 +1,483 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import malariagen_data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": [ + "'use strict';\n", + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " const force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + "const JS_MIME_TYPE = 'application/javascript';\n", + " const HTML_MIME_TYPE = 'text/html';\n", + " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", + " const CLASS_NAME = 'output_bokeh rendered_html';\n", + "\n", + " /**\n", + " * Render data to the DOM node\n", + " */\n", + " function render(props, node) {\n", + " const script = document.createElement(\"script\");\n", + " node.appendChild(script);\n", + " }\n", + "\n", + " /**\n", + " * Handle when an output is cleared or removed\n", + " */\n", + " function handleClearOutput(event, handle) {\n", + " function drop(id) {\n", + " const view = Bokeh.index.get_by_id(id)\n", + " if (view != null) {\n", + " view.model.document.clear()\n", + " Bokeh.index.delete(view)\n", + " }\n", + " }\n", + "\n", + " const cell = handle.cell;\n", + "\n", + " const id = cell.output_area._bokeh_element_id;\n", + " const server_id = cell.output_area._bokeh_server_id;\n", + "\n", + " // Clean up Bokeh references\n", + " if (id != null) {\n", + " drop(id)\n", + " }\n", + "\n", + " if (server_id !== undefined) {\n", + " // Clean up Bokeh references\n", + " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", + " cell.notebook.kernel.execute(cmd_clean, {\n", + " iopub: {\n", + " output: function(msg) {\n", + " const id = msg.content.text.trim()\n", + " drop(id)\n", + " }\n", + " }\n", + " });\n", + " // Destroy server and session\n", + " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", + " cell.notebook.kernel.execute(cmd_destroy);\n", + " }\n", + " }\n", + "\n", + " /**\n", + " * Handle when a new output is added\n", + " */\n", + " function handleAddOutput(event, handle) {\n", + " const output_area = handle.output_area;\n", + " const output = handle.output;\n", + "\n", + " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", + " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", + " return\n", + " }\n", + "\n", + " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", + "\n", + " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", + " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", + " // store reference to embed id on output_area\n", + " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", + " }\n", + " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", + " const bk_div = document.createElement(\"div\");\n", + " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", + " const script_attrs = bk_div.children[0].attributes;\n", + " for (let i = 0; i < script_attrs.length; i++) {\n", + " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", + " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", + " }\n", + " // store reference to server id on output_area\n", + " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", + " }\n", + " }\n", + "\n", + " function register_renderer(events, OutputArea) {\n", + "\n", + " function append_mime(data, metadata, element) {\n", + " // create a DOM node to render to\n", + " const toinsert = this.create_output_subarea(\n", + " metadata,\n", + " CLASS_NAME,\n", + " EXEC_MIME_TYPE\n", + " );\n", + " this.keyboard_manager.register_events(toinsert);\n", + " // Render to node\n", + " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", + " render(props, toinsert[toinsert.length - 1]);\n", + " element.append(toinsert);\n", + " return toinsert\n", + " }\n", + "\n", + " /* Handle when an output is cleared or removed */\n", + " events.on('clear_output.CodeCell', handleClearOutput);\n", + " events.on('delete.Cell', handleClearOutput);\n", + "\n", + " /* Handle when a new output is added */\n", + " events.on('output_added.OutputArea', handleAddOutput);\n", + "\n", + " /**\n", + " * Register the mime type and append_mime function with output_area\n", + " */\n", + " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", + " /* Is output safe? */\n", + " safe: true,\n", + " /* Index of renderer in `output_area.display_order` */\n", + " index: 0\n", + " });\n", + " }\n", + "\n", + " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", + " if (root.Jupyter !== undefined) {\n", + " const events = require('base/js/events');\n", + " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", + "\n", + " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", + " register_renderer(events, OutputArea);\n", + " }\n", + " }\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " const NB_LOAD_WARNING = {'data': {'text/html':\n", + " \"
\\n\"+\n", + " \"

\\n\"+\n", + " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", + " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", + " \"

\\n\"+\n", + " \"
    \\n\"+\n", + " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", + " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", + " \"
\\n\"+\n", + " \"\\n\"+\n", + " \"from bokeh.resources import INLINE\\n\"+\n", + " \"output_notebook(resources=INLINE)\\n\"+\n", + " \"\\n\"+\n", + " \"
\"}};\n", + "\n", + " function display_loaded(error = null) {\n", + " const el = document.getElementById(null);\n", + " if (el != null) {\n", + " const html = (() => {\n", + " if (typeof root.Bokeh === \"undefined\") {\n", + " if (error == null) {\n", + " return \"BokehJS is loading ...\";\n", + " } else {\n", + " return \"BokehJS failed to load.\";\n", + " }\n", + " } else {\n", + " const prefix = `BokehJS ${root.Bokeh.version}`;\n", + " if (error == null) {\n", + " return `${prefix} successfully loaded.`;\n", + " } else {\n", + " return `${prefix} encountered errors while loading and may not function as expected.`;\n", + " }\n", + " }\n", + " })();\n", + " el.innerHTML = html;\n", + "\n", + " if (error != null) {\n", + " const wrapper = document.createElement(\"div\");\n", + " wrapper.style.overflow = \"auto\";\n", + " wrapper.style.height = \"5em\";\n", + " wrapper.style.resize = \"vertical\";\n", + " const content = document.createElement(\"div\");\n", + " content.style.fontFamily = \"monospace\";\n", + " content.style.whiteSpace = \"pre-wrap\";\n", + " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", + " content.textContent = error.stack ?? error.toString();\n", + " wrapper.append(content);\n", + " el.append(wrapper);\n", + " }\n", + " } else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(() => display_loaded(error), 100);\n", + " }\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls == null || js_urls.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error(url) {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (let i = 0; i < css_urls.length; i++) {\n", + " const url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " for (let i = 0; i < js_urls.length; i++) {\n", + " const url = js_urls[i];\n", + " const element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", + " const css_urls = [];\n", + "\n", + " const inline_js = [ function(Bokeh) {\n", + " Bokeh.set_log_level(\"info\");\n", + " },\n", + "function(Bokeh) {\n", + " }\n", + " ];\n", + "\n", + " function run_inline_js() {\n", + " if (root.Bokeh !== undefined || force === true) {\n", + " try {\n", + " for (let i = 0; i < inline_js.length; i++) {\n", + " inline_js[i].call(root, root.Bokeh);\n", + " }\n", + "\n", + " } catch (error) {throw error;\n", + " }} else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(run_inline_js, 100);\n", + " } else if (!root._bokeh_failed_load) {\n", + " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", + " root._bokeh_failed_load = true;\n", + " } else if (force !== true) {\n", + " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", + " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", + " }\n", + " }\n", + "\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", + " run_inline_js();\n", + " } else {\n", + " load_libs(css_urls, js_urls, function() {\n", + " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", + " run_inline_js();\n", + " });\n", + " }\n", + "}(window));" + ], + "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MalariaGEN Adir1 API client
\n", + " Please note that data are subject to terms of use,\n", + " for more information see \n", + " the MalariaGEN website or contact support@malariagen.net.\n", + " See also the Adir1 API docs.\n", + "
\n", + " Storage URL\n", + " gs://vo_adir_production_us_central1/
\n", + " Data releases available\n", + " 1.x
\n", + " Results cache\n", + " /Users/dennistpw/Projects/malariagen_results
\n", + " Cohorts analysis\n", + " noneyet
\n", + " Site filters analysis\n", + " sc_20250610
\n", + " Software version\n", + " malariagen_data 13.3.0.post33+90e72d5a
\n", + " Client location\n", + " Queensland, Australia
\n", + " " + ], + "text/plain": [ + "\n", + "Storage URL : gs://vo_adir_production_us_central1/\n", + "Data releases available : 1.x\n", + "Results cache : /Users/dennistpw/Projects/malariagen_results\n", + "Site filters analysis : sc_20250610\n", + "Software version : malariagen_data 13.3.0.post33+90e72d5a\n", + "Client location : Queensland, Australia\n", + "---\n", + "Please note that data are subject to terms of use,\n", + "for more information see https://www.malariagen.net/data\n", + "or contact support@malariagen.net. For API documentation see \n", + "https://malariagen.github.io/malariagen-data-python/v13.3.0.post33+90e72d5a/Adir1.html" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Init Adir1 API\n", + "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')\n", + "adir1" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "snps = adir1.snp_calls(region=\"KB672868:1000000-1010000\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", + "metadata": {}, + "outputs": [], + "source": [ + "adir1.pca(region = \"KB672868\", n_snps = 100_000, " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From e3e45fe81d7a2856fa8f45533161d07ef1966804 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 10 Jun 2025 15:21:09 +1000 Subject: [PATCH 03/41] comment out TOU lookups for metadata --- adir1_explore.ipynb | 451 ----------------------- malariagen_data/anoph/sample_metadata.py | 13 +- notebooks/adir1_explore.ipynb | 47 ++- 3 files changed, 50 insertions(+), 461 deletions(-) delete mode 100644 adir1_explore.ipynb diff --git a/adir1_explore.ipynb b/adir1_explore.ipynb deleted file mode 100644 index c42d93dd5..000000000 --- a/adir1_explore.ipynb +++ /dev/null @@ -1,451 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import malariagen_data" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "application/javascript": [ - "'use strict';\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " const force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - "const JS_MIME_TYPE = 'application/javascript';\n", - " const HTML_MIME_TYPE = 'text/html';\n", - " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " const CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " const script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " function drop(id) {\n", - " const view = Bokeh.index.get_by_id(id)\n", - " if (view != null) {\n", - " view.model.document.clear()\n", - " Bokeh.index.delete(view)\n", - " }\n", - " }\n", - "\n", - " const cell = handle.cell;\n", - "\n", - " const id = cell.output_area._bokeh_element_id;\n", - " const server_id = cell.output_area._bokeh_server_id;\n", - "\n", - " // Clean up Bokeh references\n", - " if (id != null) {\n", - " drop(id)\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd_clean, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " const id = msg.content.text.trim()\n", - " drop(id)\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd_destroy);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " const output_area = handle.output_area;\n", - " const output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " const bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " const script_attrs = bk_div.children[0].attributes;\n", - " for (let i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " const toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " const events = require('base/js/events');\n", - " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " const NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded(error = null) {\n", - " const el = document.getElementById(null);\n", - " if (el != null) {\n", - " const html = (() => {\n", - " if (typeof root.Bokeh === \"undefined\") {\n", - " if (error == null) {\n", - " return \"BokehJS is loading ...\";\n", - " } else {\n", - " return \"BokehJS failed to load.\";\n", - " }\n", - " } else {\n", - " const prefix = `BokehJS ${root.Bokeh.version}`;\n", - " if (error == null) {\n", - " return `${prefix} successfully loaded.`;\n", - " } else {\n", - " return `${prefix} encountered errors while loading and may not function as expected.`;\n", - " }\n", - " }\n", - " })();\n", - " el.innerHTML = html;\n", - "\n", - " if (error != null) {\n", - " const wrapper = document.createElement(\"div\");\n", - " wrapper.style.overflow = \"auto\";\n", - " wrapper.style.height = \"5em\";\n", - " wrapper.style.resize = \"vertical\";\n", - " const content = document.createElement(\"div\");\n", - " content.style.fontFamily = \"monospace\";\n", - " content.style.whiteSpace = \"pre-wrap\";\n", - " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", - " content.textContent = error.stack ?? error.toString();\n", - " wrapper.append(content);\n", - " el.append(wrapper);\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(() => display_loaded(error), 100);\n", - " }\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error(url) {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (let i = 0; i < css_urls.length; i++) {\n", - " const url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (let i = 0; i < js_urls.length; i++) {\n", - " const url = js_urls[i];\n", - " const element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", - " const css_urls = [];\n", - "\n", - " const inline_js = [ function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - "function(Bokeh) {\n", - " }\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " if (root.Bokeh !== undefined || force === true) {\n", - " try {\n", - " for (let i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }\n", - "\n", - " } catch (error) {throw error;\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Init API\n", - "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "f171c3b7-30c2-4e9f-9133-22206985de07", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "'KB672868'" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Are the contigs here? \n", - "chroms = adir1.contigs[:5]\n", - "chroms[1]" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "ename": "FileNotFoundError", - "evalue": "b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:426\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_sets\u001b[49m\u001b[43m[\u001b[49m\u001b[43mrelease\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n", - "\u001b[0;31mKeyError\u001b[0m: '1.x'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m snps \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msnp_calls\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868:1000000-2000000\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/snp_data.py:1007\u001b[0m, in \u001b[0;36mAnophelesSnpData.snp_calls\u001b[0;34m(self, region, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, inline_array, chunks, cohort_size, min_cohort_size, max_cohort_size, random_seed)\u001b[0m\n\u001b[1;32m 1001\u001b[0m base_params\u001b[38;5;241m.\u001b[39mvalidate_sample_selection_params(\n\u001b[1;32m 1002\u001b[0m sample_query\u001b[38;5;241m=\u001b[39msample_query, sample_indices\u001b[38;5;241m=\u001b[39msample_indices\n\u001b[1;32m 1003\u001b[0m )\n\u001b[1;32m 1005\u001b[0m \u001b[38;5;66;03m# Normalise parameters.\u001b[39;00m\n\u001b[1;32m 1006\u001b[0m sample_sets_prepped: Tuple[\u001b[38;5;28mstr\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mtuple\u001b[39m(\n\u001b[0;32m-> 1007\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_sets_param\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1008\u001b[0m )\n\u001b[1;32m 1009\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m sample_sets\n\u001b[1;32m 1010\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_indices \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:524\u001b[0m, in \u001b[0;36mAnophelesBase._prep_sample_sets_param\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_prep_sample_sets_param\u001b[39m(\n\u001b[1;32m 518\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets]\n\u001b[1;32m 519\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m List[\u001b[38;5;28mstr\u001b[39m]:\n\u001b[1;32m 520\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Common handling for the `sample_sets` parameter. For convenience, we\u001b[39;00m\n\u001b[1;32m 521\u001b[0m \u001b[38;5;124;03m allow this to be a single sample set, or a list of sample sets, or a\u001b[39;00m\n\u001b[1;32m 522\u001b[0m \u001b[38;5;124;03m release identifier, or a list of release identifiers.\"\"\"\u001b[39;00m\n\u001b[0;32m--> 524\u001b[0m all_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mto_list()\n\u001b[1;32m 526\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_sets \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 527\u001b[0m \u001b[38;5;66;03m# All available sample sets.\u001b[39;00m\n\u001b[1;32m 528\u001b[0m prepped_sample_sets \u001b[38;5;241m=\u001b[39m all_sample_sets\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets(release\u001b[38;5;241m=\u001b[39mr) \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrelease\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mr\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:430\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release]\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n\u001b[0;32m--> 430\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_read_sample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43msingle_release\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrelease\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 431\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release] \u001b[38;5;241m=\u001b[39m df\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(release, Sequence):\n\u001b[1;32m 434\u001b[0m \u001b[38;5;66;03m# Ensure no duplicates.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:376\u001b[0m, in \u001b[0;36mAnophelesBase._read_sample_sets\u001b[0;34m(self, single_release)\u001b[0m\n\u001b[1;32m 373\u001b[0m manifest_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mrelease_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/manifest.tsv\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 375\u001b[0m \u001b[38;5;66;03m# Read the manifest into a pandas dataframe.\u001b[39;00m\n\u001b[0;32m--> 376\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_file\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmanifest_path\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m f:\n\u001b[1;32m 377\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(f, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, na_values\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 379\u001b[0m \u001b[38;5;66;03m# Add a \"release\" column for convenience.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:218\u001b[0m, in \u001b[0;36mAnophelesBase.open_file\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 215\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 216\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mopen_file\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m IO:\n\u001b[1;32m 217\u001b[0m full_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_base_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m--> 218\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_fs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfull_path\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1154\u001b[0m, in \u001b[0;36mAbstractFileSystem.open\u001b[0;34m(self, path, mode, block_size, cache_options, compression, **kwargs)\u001b[0m\n\u001b[1;32m 1152\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1153\u001b[0m ac \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mautocommit\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_intrans)\n\u001b[0;32m-> 1154\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_open\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1155\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1156\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1157\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1158\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mac\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1159\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1160\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1161\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfsspec\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompression\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m compr\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1309\u001b[0m, in \u001b[0;36mGCSFileSystem._open\u001b[0;34m(self, path, mode, block_size, cache_options, acl, consistency, metadata, autocommit, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1307\u001b[0m block_size \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdefault_block_size\n\u001b[1;32m 1308\u001b[0m const \u001b[38;5;241m=\u001b[39m consistency \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconsistency\n\u001b[0;32m-> 1309\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mGCSFile\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1310\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1311\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1312\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1313\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1314\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1315\u001b[0m \u001b[43m \u001b[49m\u001b[43mconsistency\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconst\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1316\u001b[0m \u001b[43m \u001b[49m\u001b[43mmetadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmetadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1317\u001b[0m \u001b[43m \u001b[49m\u001b[43macl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43macl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1318\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1319\u001b[0m \u001b[43m \u001b[49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1320\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1321\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1468\u001b[0m, in \u001b[0;36mGCSFile.__init__\u001b[0;34m(self, gcsfs, path, mode, block_size, autocommit, cache_type, cache_options, acl, consistency, metadata, content_type, timeout, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1466\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAttempt to open a bucket\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 1467\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration \u001b[38;5;241m=\u001b[39m _coalesce_generation(generation, path_generation)\n\u001b[0;32m-> 1468\u001b[0m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;21;43m__init__\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1469\u001b[0m \u001b[43m \u001b[49m\u001b[43mgcsfs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1470\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1471\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1472\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1473\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1474\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_type\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1475\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1476\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1477\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1478\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgcsfs \u001b[38;5;241m=\u001b[39m gcsfs\n\u001b[1;32m 1479\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbucket \u001b[38;5;241m=\u001b[39m bucket\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1510\u001b[0m, in \u001b[0;36mAbstractBufferedFile.__init__\u001b[0;34m(self, fs, path, mode, block_size, autocommit, cache_type, cache_options, size, **kwargs)\u001b[0m\n\u001b[1;32m 1508\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m size\n\u001b[1;32m 1509\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1510\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdetails\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msize\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 1511\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcache \u001b[38;5;241m=\u001b[39m caches[cache_type](\n\u001b[1;32m 1512\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mblocksize, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_fetch_range, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mcache_options\n\u001b[1;32m 1513\u001b[0m )\n\u001b[1;32m 1514\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1504\u001b[0m, in \u001b[0;36mGCSFile.details\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1501\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 1502\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdetails\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 1503\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m-> 1504\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43minfo\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgeneration\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneration\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1505\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:115\u001b[0m, in \u001b[0;36msync_wrapper..wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mwrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m obj \u001b[38;5;129;01mor\u001b[39;00m args[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:100\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 98\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m FSTimeoutError \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mreturn_result\u001b[39;00m\n\u001b[1;32m 99\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 101\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 102\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m return_result\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:55\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(event, coro, result, timeout)\u001b[0m\n\u001b[1;32m 53\u001b[0m coro \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(coro, timeout\u001b[38;5;241m=\u001b[39mtimeout)\n\u001b[1;32m 54\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 55\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 56\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n\u001b[1;32m 57\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m ex\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:797\u001b[0m, in \u001b[0;36mGCSFileSystem._info\u001b[0;34m(self, path, generation, **kwargs)\u001b[0m\n\u001b[1;32m 795\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m 796\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdetail\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m \u001b[38;5;66;03m# Force to true for info\u001b[39;00m\n\u001b[0;32m--> 797\u001b[0m out \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ls(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 798\u001b[0m out0 \u001b[38;5;241m=\u001b[39m [o \u001b[38;5;28;01mfor\u001b[39;00m o \u001b[38;5;129;01min\u001b[39;00m out \u001b[38;5;28;01mif\u001b[39;00m o[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;241m==\u001b[39m path]\n\u001b[1;32m 799\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m out0:\n\u001b[1;32m 800\u001b[0m \u001b[38;5;66;03m# exact hit\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:834\u001b[0m, in \u001b[0;36mGCSFileSystem._ls\u001b[0;34m(self, path, detail, prefix, versions, **kwargs)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 833\u001b[0m out \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m--> 834\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m entry \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_list_objects(\n\u001b[1;32m 835\u001b[0m path, prefix\u001b[38;5;241m=\u001b[39mprefix, versions\u001b[38;5;241m=\u001b[39mversions\n\u001b[1;32m 836\u001b[0m ):\n\u001b[1;32m 837\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m versions \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgeneration\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m entry:\n\u001b[1;32m 838\u001b[0m entry \u001b[38;5;241m=\u001b[39m entry\u001b[38;5;241m.\u001b[39mcopy()\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:549\u001b[0m, in \u001b[0;36mGCSFileSystem._list_objects\u001b[0;34m(self, path, prefix, versions)\u001b[0m\n\u001b[1;32m 547\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (items \u001b[38;5;241m+\u001b[39m pseudodirs):\n\u001b[1;32m 548\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key:\n\u001b[0;32m--> 549\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [\u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_object(path)]\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m []\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:491\u001b[0m, in \u001b[0;36mGCSFileSystem._get_object\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 488\u001b[0m \u001b[38;5;66;03m# Work around various permission settings. Prefer an object get (storage.objects.get), but\u001b[39;00m\n\u001b[1;32m 489\u001b[0m \u001b[38;5;66;03m# fall back to a bucket list + filter to object name (storage.objects.list).\u001b[39;00m\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 491\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call(\n\u001b[1;32m 492\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m/o/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, bucket, key, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, generation\u001b[38;5;241m=\u001b[39mgeneration\n\u001b[1;32m 493\u001b[0m )\n\u001b[1;32m 494\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 495\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mstr\u001b[39m(e)\u001b[38;5;241m.\u001b[39mstartswith(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mForbidden\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:418\u001b[0m, in \u001b[0;36mGCSFileSystem._call\u001b[0;34m(self, method, path, json_out, info_out, *args, **kwargs)\u001b[0m\n\u001b[1;32m 414\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_call\u001b[39m(\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28mself\u001b[39m, method, path, \u001b[38;5;241m*\u001b[39margs, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, info_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 416\u001b[0m ):\n\u001b[1;32m 417\u001b[0m logger\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mmethod\u001b[38;5;241m.\u001b[39mupper()\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00margs\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkwargs\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mheaders\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 418\u001b[0m status, headers, info, contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_request(\n\u001b[1;32m 419\u001b[0m method, path, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 420\u001b[0m )\n\u001b[1;32m 421\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m json_out:\n\u001b[1;32m 422\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m json\u001b[38;5;241m.\u001b[39mloads(contents)\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/decorator.py:221\u001b[0m, in \u001b[0;36mdecorate..fun\u001b[0;34m(*args, **kw)\u001b[0m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m kwsyntax:\n\u001b[1;32m 220\u001b[0m args, kw \u001b[38;5;241m=\u001b[39m fix(args, kw, sig)\n\u001b[0;32m--> 221\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m caller(func, \u001b[38;5;241m*\u001b[39m(extras \u001b[38;5;241m+\u001b[39m args), \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkw)\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:114\u001b[0m, in \u001b[0;36mretry_request\u001b[0;34m(func, retries, *args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m retry \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;28mmin\u001b[39m(random\u001b[38;5;241m.\u001b[39mrandom() \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m2\u001b[39m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m (retry \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m), \u001b[38;5;241m32\u001b[39m))\n\u001b[0;32m--> 114\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (\n\u001b[1;32m 116\u001b[0m HttpError,\n\u001b[1;32m 117\u001b[0m requests\u001b[38;5;241m.\u001b[39mexceptions\u001b[38;5;241m.\u001b[39mRequestException,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 120\u001b[0m aiohttp\u001b[38;5;241m.\u001b[39mclient_exceptions\u001b[38;5;241m.\u001b[39mClientError,\n\u001b[1;32m 121\u001b[0m ) \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 122\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m (\n\u001b[1;32m 123\u001b[0m \u001b[38;5;28misinstance\u001b[39m(e, HttpError)\n\u001b[1;32m 124\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m e\u001b[38;5;241m.\u001b[39mcode \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m400\u001b[39m\n\u001b[1;32m 125\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrequester pays\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m e\u001b[38;5;241m.\u001b[39mmessage\n\u001b[1;32m 126\u001b[0m ):\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:411\u001b[0m, in \u001b[0;36mGCSFileSystem._request\u001b[0;34m(self, method, path, headers, json, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 408\u001b[0m info \u001b[38;5;241m=\u001b[39m r\u001b[38;5;241m.\u001b[39mrequest_info \u001b[38;5;66;03m# for debug only\u001b[39;00m\n\u001b[1;32m 409\u001b[0m contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m r\u001b[38;5;241m.\u001b[39mread()\n\u001b[0;32m--> 411\u001b[0m \u001b[43mvalidate_response\u001b[49m\u001b[43m(\u001b[49m\u001b[43mstatus\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcontents\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 412\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m status, headers, info, contents\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:83\u001b[0m, in \u001b[0;36mvalidate_response\u001b[0;34m(status, content, path, args)\u001b[0m\n\u001b[1;32m 81\u001b[0m path \u001b[38;5;241m=\u001b[39m path\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;241m*\u001b[39m[quote(p) \u001b[38;5;28;01mfor\u001b[39;00m p \u001b[38;5;129;01min\u001b[39;00m args])\n\u001b[1;32m 82\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m status \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m404\u001b[39m:\n\u001b[0;32m---> 83\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(path)\n\u001b[1;32m 85\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(content, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdecode\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv" - ] - } - ], - "source": [ - "snps = adir1.snp_calls(region=\"KB672868:1000000-2000000\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index 3088508ba..ebe052de6 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -156,15 +156,16 @@ def _parse_general_metadata( axis="columns", ) + # Have commented these out for now as a) this is not a public release and b) for some reason it breaks everything and I haven't had the time to work out why # Add study columns. - study_info = self.lookup_study_info(sample_set=sample_set) - for column in study_info: - df[column] = study_info[column] + # study_info = self.lookup_study_info(sample_set=sample_set) + # for column in study_info: + # df[column] = study_info[column] # Add terms-of-use columns. - terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) - for column in terms_of_use_info: - df[column] = terms_of_use_info[column] + # terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) + # for column in terms_of_use_info: + # df[column] = terms_of_use_info[column] return df diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb index 1fa71882d..450596a2f 100644 --- a/notebooks/adir1_explore.ipynb +++ b/notebooks/adir1_explore.ipynb @@ -450,12 +450,51 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", - "metadata": {}, - "outputs": [], + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "ename": "KeyError", + "evalue": "\"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:581\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 579\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 580\u001b[0m \u001b[38;5;66;03m# Attempt to retrieve from the cache.\u001b[39;00m\n\u001b[0;32m--> 581\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_metadata\u001b[49m\u001b[43m[\u001b[49m\u001b[43mcache_key\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n", + "\u001b[0;31mKeyError\u001b[0m: ('1276-AD-BD-ALAM-VMF00156', '1277-VO-KH-WITKOWSKI-VMF00151', '1277-VO-KH-WITKOWSKI-VMF00183', '1278-VO-TH-KOBYLINSKI-VMF00153')", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m100_000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:89\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 83\u001b[0m name \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpca_v4\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 85\u001b[0m \u001b[38;5;66;03m# Normalize params for consistent hash value.\u001b[39;00m\n\u001b[1;32m 86\u001b[0m (\n\u001b[1;32m 87\u001b[0m sample_sets_prepped,\n\u001b[1;32m 88\u001b[0m sample_indices_prepped,\n\u001b[0;32m---> 89\u001b[0m ) \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_selection_cache_params\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 90\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 91\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 93\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_indices\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_indices\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 94\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 95\u001b[0m region_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_region_cache_param(region\u001b[38;5;241m=\u001b[39mregion)\n\u001b[1;32m 96\u001b[0m site_mask_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_optional_site_mask_param(site_mask\u001b[38;5;241m=\u001b[39msite_mask)\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:892\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._prep_sample_selection_cache_params\u001b[0;34m(self, sample_sets, sample_query, sample_query_options, sample_indices)\u001b[0m\n\u001b[1;32m 885\u001b[0m sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_sample_sets_param(sample_sets\u001b[38;5;241m=\u001b[39msample_sets)\n\u001b[1;32m 887\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_query \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 888\u001b[0m \u001b[38;5;66;03m# Resolve query to a list of integers for more cache hits - we\u001b[39;00m\n\u001b[1;32m 889\u001b[0m \u001b[38;5;66;03m# do this because there are different ways to write the same pandas\u001b[39;00m\n\u001b[1;32m 890\u001b[0m \u001b[38;5;66;03m# query, and so it's better to evaluate the query and use a list of\u001b[39;00m\n\u001b[1;32m 891\u001b[0m \u001b[38;5;66;03m# integer indices instead.\u001b[39;00m\n\u001b[0;32m--> 892\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 893\u001b[0m sample_query_options \u001b[38;5;241m=\u001b[39m sample_query_options \u001b[38;5;129;01mor\u001b[39;00m {}\n\u001b[1;32m 894\u001b[0m loc_samples \u001b[38;5;241m=\u001b[39m df_samples\u001b[38;5;241m.\u001b[39meval(sample_query, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msample_query_options)\u001b[38;5;241m.\u001b[39mvalues\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:589\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 584\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_spinner(desc\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLoad sample metadata\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[1;32m 585\u001b[0m \u001b[38;5;66;03m## Build a single DataFrame using all available metadata.\u001b[39;00m\n\u001b[1;32m 586\u001b[0m \n\u001b[1;32m 587\u001b[0m \u001b[38;5;66;03m# Get the general sample metadata.\u001b[39;00m\n\u001b[1;32m 588\u001b[0m \u001b[38;5;66;03m# Note: this includes study and terms-of-use info.\u001b[39;00m\n\u001b[0;32m--> 589\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneral_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprepped_sample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 591\u001b[0m \u001b[38;5;66;03m# Merge with the sequence QC metadata.\u001b[39;00m\n\u001b[1;32m 592\u001b[0m df_sequence_qc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msequence_qc_metadata(\n\u001b[1;32m 593\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39mprepped_sample_sets\n\u001b[1;32m 594\u001b[0m )\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:185\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.general_metadata\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 174\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 175\u001b[0m \u001b[38;5;129m@doc\u001b[39m(\n\u001b[1;32m 176\u001b[0m summary\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\"\"\u001b[39m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 183\u001b[0m \u001b[38;5;28mself\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 184\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame:\n\u001b[0;32m--> 185\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_metadata_paths\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 186\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath_template\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;132;43;01m{release_path}\u001b[39;49;00m\u001b[38;5;124;43m/metadata/general/\u001b[39;49m\u001b[38;5;132;43;01m{sample_set}\u001b[39;49;00m\u001b[38;5;124;43m/samples.meta.csv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 187\u001b[0m \u001b[43m \u001b[49m\u001b[43mparse_metadata_func\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_general_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 188\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 189\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:119\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_metadata_paths\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 117\u001b[0m path \u001b[38;5;241m=\u001b[39m file_paths[sample_set]\n\u001b[1;32m 118\u001b[0m data \u001b[38;5;241m=\u001b[39m files[path]\n\u001b[0;32m--> 119\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mparse_metadata_func\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 120\u001b[0m dfs\u001b[38;5;241m.\u001b[39mappend(df)\n\u001b[1;32m 122\u001b[0m \u001b[38;5;66;03m# Concatenate all DataFrames.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:160\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_general_metadata\u001b[0;34m(self, sample_set, data)\u001b[0m\n\u001b[1;32m 154\u001b[0m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mquarter\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39mapply(\n\u001b[1;32m 155\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m row: ((row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m) \u001b[38;5;241m/\u001b[39m\u001b[38;5;241m/\u001b[39m \u001b[38;5;241m3\u001b[39m) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m,\n\u001b[1;32m 156\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcolumns\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 157\u001b[0m )\n\u001b[1;32m 159\u001b[0m \u001b[38;5;66;03m# Add study columns.\u001b[39;00m\n\u001b[0;32m--> 160\u001b[0m study_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mlookup_study_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_set\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 161\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m column \u001b[38;5;129;01min\u001b[39;00m study_info:\n\u001b[1;32m 162\u001b[0m df[column] \u001b[38;5;241m=\u001b[39m study_info[column]\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:487\u001b[0m, in \u001b[0;36mAnophelesBase.lookup_study_info\u001b[0;34m(self, sample_set)\u001b[0m\n\u001b[1;32m 485\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 486\u001b[0m df_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets()\u001b[38;5;241m.\u001b[39mset_index(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 487\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;241m=\u001b[39m \u001b[43mdf_sample_sets\u001b[49m\u001b[43m[\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_url\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m \u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mto_dict(orient\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mindex\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 491\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info[sample_set]\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/frame.py:3766\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3764\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_iterator(key):\n\u001b[1;32m 3765\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 3766\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcolumns\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m1\u001b[39m]\n\u001b[1;32m 3768\u001b[0m \u001b[38;5;66;03m# take() does not accept boolean indexers\u001b[39;00m\n\u001b[1;32m 3769\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(indexer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mbool\u001b[39m:\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5935\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5933\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m use_interval_msg:\n\u001b[1;32m 5934\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[1;32m 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mKeyError\u001b[0m: \"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"" + ] + } + ], "source": [ - "adir1.pca(region = \"KB672868\", n_snps = 100_000, " + "pca = adir1.pca(region = \"KB672868\", n_snps = 100_000, sample_query = \"country == 'Thailand'\")" ] } ], From b8ed3cba756c42365e9f2876847c4b3bb05451fd Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Thu, 12 Jun 2025 08:39:04 +1000 Subject: [PATCH 04/41] add annotation to commented out bit of metadata --- malariagen_data/anoph/sample_metadata.py | 34 +- notebooks/adir1_explore.ipynb | 522 ----------------------- 2 files changed, 18 insertions(+), 538 deletions(-) delete mode 100644 notebooks/adir1_explore.ipynb diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index ebe052de6..fc0d24540 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -589,29 +589,31 @@ def sample_metadata( # Note: this includes study and terms-of-use info. df_samples = self.general_metadata(sample_sets=prepped_sample_sets) + # Commented this out as it breaks some things - will fix + # Merge with the sequence QC metadata. - df_sequence_qc = self.sequence_qc_metadata( - sample_sets=prepped_sample_sets - ) + # df_sequence_qc = self.sequence_qc_metadata( + # sample_sets=prepped_sample_sets + # ) # Note: merging can change column dtypes - df_samples = df_samples.merge( - df_sequence_qc, on="sample_id", sort=False, how="left" - ) + # df_samples = df_samples.merge( + # df_sequence_qc, on="sample_id", sort=False, how="left" + # ) # If available, merge with the AIM metadata. - if self._aim_analysis: - df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) - df_samples = df_samples.merge( - df_aim, on="sample_id", sort=False, how="left" - ) + # if self._aim_analysis: + # df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) + # df_samples = df_samples.merge( + # df_aim, on="sample_id", sort=False, how="left" + # ) # If available, merge with the cohorts metadata. - if self._cohorts_analysis: - df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) - df_samples = df_samples.merge( - df_cohorts, on="sample_id", sort=False, how="left" - ) + # if self._cohorts_analysis: + # df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) + # df_samples = df_samples.merge( + # df_cohorts, on="sample_id", sort=False, how="left" + # ) # Store sample metadata in the cache. self._cache_sample_metadata[cache_key] = df_samples diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb deleted file mode 100644 index 450596a2f..000000000 --- a/notebooks/adir1_explore.ipynb +++ /dev/null @@ -1,522 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import malariagen_data" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "application/javascript": [ - "'use strict';\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " const force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - "const JS_MIME_TYPE = 'application/javascript';\n", - " const HTML_MIME_TYPE = 'text/html';\n", - " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " const CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " const script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " function drop(id) {\n", - " const view = Bokeh.index.get_by_id(id)\n", - " if (view != null) {\n", - " view.model.document.clear()\n", - " Bokeh.index.delete(view)\n", - " }\n", - " }\n", - "\n", - " const cell = handle.cell;\n", - "\n", - " const id = cell.output_area._bokeh_element_id;\n", - " const server_id = cell.output_area._bokeh_server_id;\n", - "\n", - " // Clean up Bokeh references\n", - " if (id != null) {\n", - " drop(id)\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd_clean, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " const id = msg.content.text.trim()\n", - " drop(id)\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd_destroy);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " const output_area = handle.output_area;\n", - " const output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " const bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " const script_attrs = bk_div.children[0].attributes;\n", - " for (let i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " const toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " const events = require('base/js/events');\n", - " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " const NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded(error = null) {\n", - " const el = document.getElementById(null);\n", - " if (el != null) {\n", - " const html = (() => {\n", - " if (typeof root.Bokeh === \"undefined\") {\n", - " if (error == null) {\n", - " return \"BokehJS is loading ...\";\n", - " } else {\n", - " return \"BokehJS failed to load.\";\n", - " }\n", - " } else {\n", - " const prefix = `BokehJS ${root.Bokeh.version}`;\n", - " if (error == null) {\n", - " return `${prefix} successfully loaded.`;\n", - " } else {\n", - " return `${prefix} encountered errors while loading and may not function as expected.`;\n", - " }\n", - " }\n", - " })();\n", - " el.innerHTML = html;\n", - "\n", - " if (error != null) {\n", - " const wrapper = document.createElement(\"div\");\n", - " wrapper.style.overflow = \"auto\";\n", - " wrapper.style.height = \"5em\";\n", - " wrapper.style.resize = \"vertical\";\n", - " const content = document.createElement(\"div\");\n", - " content.style.fontFamily = \"monospace\";\n", - " content.style.whiteSpace = \"pre-wrap\";\n", - " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", - " content.textContent = error.stack ?? error.toString();\n", - " wrapper.append(content);\n", - " el.append(wrapper);\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(() => display_loaded(error), 100);\n", - " }\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error(url) {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (let i = 0; i < css_urls.length; i++) {\n", - " const url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (let i = 0; i < js_urls.length; i++) {\n", - " const url = js_urls[i];\n", - " const element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", - " const css_urls = [];\n", - "\n", - " const inline_js = [ function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - "function(Bokeh) {\n", - " }\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " if (root.Bokeh !== undefined || force === true) {\n", - " try {\n", - " for (let i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }\n", - "\n", - " } catch (error) {throw error;\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MalariaGEN Adir1 API client
\n", - " Please note that data are subject to terms of use,\n", - " for more information see \n", - " the MalariaGEN website or contact support@malariagen.net.\n", - " See also the Adir1 API docs.\n", - "
\n", - " Storage URL\n", - " gs://vo_adir_production_us_central1/
\n", - " Data releases available\n", - " 1.x
\n", - " Results cache\n", - " /Users/dennistpw/Projects/malariagen_results
\n", - " Cohorts analysis\n", - " noneyet
\n", - " Site filters analysis\n", - " sc_20250610
\n", - " Software version\n", - " malariagen_data 13.3.0.post33+90e72d5a
\n", - " Client location\n", - " Queensland, Australia
\n", - " " - ], - "text/plain": [ - "\n", - "Storage URL : gs://vo_adir_production_us_central1/\n", - "Data releases available : 1.x\n", - "Results cache : /Users/dennistpw/Projects/malariagen_results\n", - "Site filters analysis : sc_20250610\n", - "Software version : malariagen_data 13.3.0.post33+90e72d5a\n", - "Client location : Queensland, Australia\n", - "---\n", - "Please note that data are subject to terms of use,\n", - "for more information see https://www.malariagen.net/data\n", - "or contact support@malariagen.net. For API documentation see \n", - "https://malariagen.github.io/malariagen-data-python/v13.3.0.post33+90e72d5a/Adir1.html" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Init Adir1 API\n", - "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')\n", - "adir1" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - } - ], - "source": [ - "snps = adir1.snp_calls(region=\"KB672868:1000000-1010000\")" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - }, - { - "ename": "KeyError", - "evalue": "\"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:581\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 579\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 580\u001b[0m \u001b[38;5;66;03m# Attempt to retrieve from the cache.\u001b[39;00m\n\u001b[0;32m--> 581\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_metadata\u001b[49m\u001b[43m[\u001b[49m\u001b[43mcache_key\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n", - "\u001b[0;31mKeyError\u001b[0m: ('1276-AD-BD-ALAM-VMF00156', '1277-VO-KH-WITKOWSKI-VMF00151', '1277-VO-KH-WITKOWSKI-VMF00183', '1278-VO-TH-KOBYLINSKI-VMF00153')", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m100_000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:89\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 83\u001b[0m name \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpca_v4\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 85\u001b[0m \u001b[38;5;66;03m# Normalize params for consistent hash value.\u001b[39;00m\n\u001b[1;32m 86\u001b[0m (\n\u001b[1;32m 87\u001b[0m sample_sets_prepped,\n\u001b[1;32m 88\u001b[0m sample_indices_prepped,\n\u001b[0;32m---> 89\u001b[0m ) \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_selection_cache_params\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 90\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 91\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 93\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_indices\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_indices\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 94\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 95\u001b[0m region_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_region_cache_param(region\u001b[38;5;241m=\u001b[39mregion)\n\u001b[1;32m 96\u001b[0m site_mask_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_optional_site_mask_param(site_mask\u001b[38;5;241m=\u001b[39msite_mask)\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:892\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._prep_sample_selection_cache_params\u001b[0;34m(self, sample_sets, sample_query, sample_query_options, sample_indices)\u001b[0m\n\u001b[1;32m 885\u001b[0m sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_sample_sets_param(sample_sets\u001b[38;5;241m=\u001b[39msample_sets)\n\u001b[1;32m 887\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_query \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 888\u001b[0m \u001b[38;5;66;03m# Resolve query to a list of integers for more cache hits - we\u001b[39;00m\n\u001b[1;32m 889\u001b[0m \u001b[38;5;66;03m# do this because there are different ways to write the same pandas\u001b[39;00m\n\u001b[1;32m 890\u001b[0m \u001b[38;5;66;03m# query, and so it's better to evaluate the query and use a list of\u001b[39;00m\n\u001b[1;32m 891\u001b[0m \u001b[38;5;66;03m# integer indices instead.\u001b[39;00m\n\u001b[0;32m--> 892\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 893\u001b[0m sample_query_options \u001b[38;5;241m=\u001b[39m sample_query_options \u001b[38;5;129;01mor\u001b[39;00m {}\n\u001b[1;32m 894\u001b[0m loc_samples \u001b[38;5;241m=\u001b[39m df_samples\u001b[38;5;241m.\u001b[39meval(sample_query, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msample_query_options)\u001b[38;5;241m.\u001b[39mvalues\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:589\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 584\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_spinner(desc\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLoad sample metadata\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[1;32m 585\u001b[0m \u001b[38;5;66;03m## Build a single DataFrame using all available metadata.\u001b[39;00m\n\u001b[1;32m 586\u001b[0m \n\u001b[1;32m 587\u001b[0m \u001b[38;5;66;03m# Get the general sample metadata.\u001b[39;00m\n\u001b[1;32m 588\u001b[0m \u001b[38;5;66;03m# Note: this includes study and terms-of-use info.\u001b[39;00m\n\u001b[0;32m--> 589\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneral_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprepped_sample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 591\u001b[0m \u001b[38;5;66;03m# Merge with the sequence QC metadata.\u001b[39;00m\n\u001b[1;32m 592\u001b[0m df_sequence_qc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msequence_qc_metadata(\n\u001b[1;32m 593\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39mprepped_sample_sets\n\u001b[1;32m 594\u001b[0m )\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:185\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.general_metadata\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 174\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 175\u001b[0m \u001b[38;5;129m@doc\u001b[39m(\n\u001b[1;32m 176\u001b[0m summary\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\"\"\u001b[39m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 183\u001b[0m \u001b[38;5;28mself\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 184\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame:\n\u001b[0;32m--> 185\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_metadata_paths\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 186\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath_template\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;132;43;01m{release_path}\u001b[39;49;00m\u001b[38;5;124;43m/metadata/general/\u001b[39;49m\u001b[38;5;132;43;01m{sample_set}\u001b[39;49;00m\u001b[38;5;124;43m/samples.meta.csv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 187\u001b[0m \u001b[43m \u001b[49m\u001b[43mparse_metadata_func\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_general_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 188\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 189\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:119\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_metadata_paths\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 117\u001b[0m path \u001b[38;5;241m=\u001b[39m file_paths[sample_set]\n\u001b[1;32m 118\u001b[0m data \u001b[38;5;241m=\u001b[39m files[path]\n\u001b[0;32m--> 119\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mparse_metadata_func\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 120\u001b[0m dfs\u001b[38;5;241m.\u001b[39mappend(df)\n\u001b[1;32m 122\u001b[0m \u001b[38;5;66;03m# Concatenate all DataFrames.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:160\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_general_metadata\u001b[0;34m(self, sample_set, data)\u001b[0m\n\u001b[1;32m 154\u001b[0m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mquarter\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39mapply(\n\u001b[1;32m 155\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m row: ((row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m) \u001b[38;5;241m/\u001b[39m\u001b[38;5;241m/\u001b[39m \u001b[38;5;241m3\u001b[39m) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m,\n\u001b[1;32m 156\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcolumns\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 157\u001b[0m )\n\u001b[1;32m 159\u001b[0m \u001b[38;5;66;03m# Add study columns.\u001b[39;00m\n\u001b[0;32m--> 160\u001b[0m study_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mlookup_study_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_set\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 161\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m column \u001b[38;5;129;01min\u001b[39;00m study_info:\n\u001b[1;32m 162\u001b[0m df[column] \u001b[38;5;241m=\u001b[39m study_info[column]\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:487\u001b[0m, in \u001b[0;36mAnophelesBase.lookup_study_info\u001b[0;34m(self, sample_set)\u001b[0m\n\u001b[1;32m 485\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 486\u001b[0m df_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets()\u001b[38;5;241m.\u001b[39mset_index(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 487\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;241m=\u001b[39m \u001b[43mdf_sample_sets\u001b[49m\u001b[43m[\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_url\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m \u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mto_dict(orient\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mindex\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 491\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info[sample_set]\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/frame.py:3766\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3764\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_iterator(key):\n\u001b[1;32m 3765\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 3766\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcolumns\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m1\u001b[39m]\n\u001b[1;32m 3768\u001b[0m \u001b[38;5;66;03m# take() does not accept boolean indexers\u001b[39;00m\n\u001b[1;32m 3769\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(indexer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mbool\u001b[39m:\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5935\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5933\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m use_interval_msg:\n\u001b[1;32m 5934\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[1;32m 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "\u001b[0;31mKeyError\u001b[0m: \"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"" - ] - } - ], - "source": [ - "pca = adir1.pca(region = \"KB672868\", n_snps = 100_000, sample_query = \"country == 'Thailand'\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} From 57a9b42a4af550057d3a0986e037b4ed5b9e4ca6 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Sun, 15 Jun 2025 22:28:15 -0500 Subject: [PATCH 05/41] forgot how the alphabet works d'oh --- malariagen_data/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/__init__.py b/malariagen_data/__init__.py index 6bc938825..306896658 100644 --- a/malariagen_data/__init__.py +++ b/malariagen_data/__init__.py @@ -1,6 +1,6 @@ # flake8: noqa -from .af1 import Af1 from .adir1 import Adir1 +from .af1 import Af1 from .ag3 import Ag3 from .amin1 import Amin1 from .anopheles import AnophelesDataResource, Region From ced92247eefea9316d38feb4084d010b01f0f04c Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Mon, 16 Jun 2025 20:35:38 -0500 Subject: [PATCH 06/41] add hashing to roh function --- malariagen_data/adir1.py | 6 +- malariagen_data/anopheles.py | 71 +++++-- poetry.lock | 402 ++++++++++++----------------------- pyproject.toml | 1 + 4 files changed, 193 insertions(+), 287 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 9b053ca62..c24562426 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -102,9 +102,9 @@ def __init__( aim_palettes=None, site_filters_analysis=site_filters_analysis, discordant_read_calls_analysis=discordant_read_calls_analysis, - default_site_mask="funestus", - default_phasing_analysis="funestus", - default_coverage_calls_analysis="funestus", + default_site_mask="dirus", + default_phasing_analysis="dirus", + default_coverage_calls_analysis="dirus", bokeh_output_notebook=bokeh_output_notebook, results_cache=results_cache, log=log, diff --git a/malariagen_data/anopheles.py b/malariagen_data/anopheles.py index 0aec9bd9a..87b42a9e5 100644 --- a/malariagen_data/anopheles.py +++ b/malariagen_data/anopheles.py @@ -572,31 +572,68 @@ def roh_hmm( debug = self._log.debug resolved_region: Region = parse_single_region(self, region) - del region - debug("compute windowed heterozygosity") - sample_id, sample_set, windows, counts = self._sample_count_het( + name = "roh" + + params = dict( sample=sample, - region=resolved_region, - site_mask=site_mask, + region=region, window_size=window_size, + site_mask=site_mask, sample_set=sample_set, - chunks=chunks, - inline_array=inline_array, - ) - - debug("compute runs of homozygosity") - df_roh = self._roh_hmm_predict( - windows=windows, - counts=counts, phet_roh=phet_roh, phet_nonroh=phet_nonroh, transition=transition, - window_size=window_size, - sample_id=sample_id, - contig=resolved_region.contig, + chunks=chunks, + inline_array=inline_array, ) + del region + + try: + # Load cached numeric data, adding str / obj data again. + results = self.results_cache_get(name=name, params=params) + df_roh = pd.DataFrame(results) + df_roh["sample_id"] = sample + df_roh["contig"] = resolved_region.contig + + except CacheMiss: + debug("compute windowed heterozygosity") + sample_id, sample_set, windows, counts = self._sample_count_het( + sample=sample, + region=resolved_region, + site_mask=site_mask, + window_size=window_size, + sample_set=sample_set, + chunks=chunks, + inline_array=inline_array, + ) + + debug("compute runs of homozygosity") + df_roh = self._roh_hmm_predict( + windows=windows, + counts=counts, + phet_roh=phet_roh, + phet_nonroh=phet_nonroh, + transition=transition, + window_size=window_size, + sample_id=sample_id, + contig=resolved_region.contig, + ) + + # Specify numeric columns to save (saving obj - sample ID and contig - breaks the save. + columns_to_save = [ + "roh_start", + "roh_stop", + "roh_length", + "roh_is_marginal", + ] + self.results_cache_set( + name=name, + params=params, + results={col: df_roh[col].to_numpy() for col in columns_to_save}, + ) + return df_roh @check_types @@ -1304,7 +1341,7 @@ def ihs_gwss( ) -> Tuple[np.ndarray, np.ndarray]: # change this name if you ever change the behaviour of this function, to # invalidate any previously cached data - name = self._ihs_gwss_cache_name + name = "roh" params = dict( contig=contig, diff --git a/poetry.lock b/poetry.lock index 619febcb1..d02d5c5bc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.0.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "accessible-pygments" @@ -7,7 +7,7 @@ description = "A collection of accessible pygments styles" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7"}, {file = "accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872"}, @@ -27,7 +27,6 @@ description = "Async client for aws services using botocore and aiohttp" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "aiobotocore-2.15.2-py3-none-any.whl", hash = "sha256:d4d3128b4b558e2b4c369bfa963b022d7e87303adb82eec623cec8aa77ae578a"}, {file = "aiobotocore-2.15.2.tar.gz", hash = "sha256:9ac1cfcaccccc80602968174aa032bf978abe36bd4e55e6781d6500909af1375"}, @@ -50,7 +49,6 @@ description = "Happy Eyeballs for asyncio" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "aiohappyeyeballs-2.4.4-py3-none-any.whl", hash = "sha256:a980909d50efcd44795c4afeca523296716d50cd756ddca6af8c65b996e27de8"}, {file = "aiohappyeyeballs-2.4.4.tar.gz", hash = "sha256:5fdd7d87889c63183afc18ce9271f9b0a7d32c2303e394468dd45d514a757745"}, @@ -63,7 +61,6 @@ description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "aiohttp-3.11.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0411777249f25d11bd2964a230b3ffafcbed6cd65d0f2b132bc2b8f5b8c347c7"}, {file = "aiohttp-3.11.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:499368eb904566fbdf1a3836a1532000ef1308f34a1bcbf36e6351904cced771"}, @@ -154,7 +151,7 @@ propcache = ">=0.2.0" yarl = ">=1.17.0,<2.0" [package.extras] -speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] +speedups = ["Brotli ; platform_python_implementation == \"CPython\"", "aiodns (>=3.2.0) ; sys_platform == \"linux\" or sys_platform == \"darwin\"", "brotlicffi ; platform_python_implementation != \"CPython\""] [[package]] name = "aioitertools" @@ -163,7 +160,6 @@ description = "itertools and builtins for AsyncIO and mixed iterables" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "aioitertools-0.12.0-py3-none-any.whl", hash = "sha256:fc1f5fac3d737354de8831cbba3eb04f79dd649d8f3afb4c5b114925e662a796"}, {file = "aioitertools-0.12.0.tar.gz", hash = "sha256:c2a9055b4fbb7705f561b9d86053e8af5d10cc845d22c32008c43490b2d8dd6b"}, @@ -180,7 +176,6 @@ description = "aiosignal: a list of registered asynchronous callbacks" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, @@ -196,7 +191,7 @@ description = "A light, configurable Sphinx theme" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b"}, {file = "alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e"}, @@ -209,7 +204,6 @@ description = "A neighbour-joining library for Python." optional = false python-versions = "<3.13,>=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "anjl-1.4.0-py3-none-any.whl", hash = "sha256:062d9b6d3d565a61a0b691fa6ae1e268e28a9ef2271d12259c1b6d42b0a1abea"}, {file = "anjl-1.4.0.tar.gz", hash = "sha256:830d6b6233d3bc9cd5631da7a8ee798e348949a07429fae87e492659b5960fba"}, @@ -233,7 +227,7 @@ description = "High level compatibility layer for multiple asynchronous event lo optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, @@ -247,7 +241,7 @@ typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1) ; python_version >= \"3.10\"", "uvloop (>=0.21.0b1) ; platform_python_implementation == \"CPython\" and platform_system != \"Windows\""] trio = ["trio (>=0.26.1)"] [[package]] @@ -257,7 +251,7 @@ description = "Disable App Nap on macOS >= 10.9" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" and platform_system == \"Darwin\" or python_version >= \"3.12\" and platform_system == \"Darwin\"" +markers = "platform_system == \"Darwin\"" files = [ {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, @@ -270,7 +264,7 @@ description = "Argon2 for Python" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, @@ -292,7 +286,7 @@ description = "Low-level CFFI bindings for Argon2" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, @@ -331,7 +325,7 @@ description = "Better dates & times for Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, @@ -352,7 +346,6 @@ description = "Draws ASCII trees." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "asciitree-0.3.3.tar.gz", hash = "sha256:4aa4b9b649f85e3fcb343363d97564aa1fb62e249677f2e18a96765145cc0f6e"}, ] @@ -364,7 +357,6 @@ description = "Annotate AST trees with source code positions" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"}, {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"}, @@ -381,7 +373,7 @@ description = "Simple LRU cache for asyncio" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"}, {file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"}, @@ -397,7 +389,7 @@ description = "Timeout context manager for asyncio programs" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c"}, {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"}, @@ -410,19 +402,18 @@ description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +cov = ["cloudpickle ; platform_python_implementation == \"CPython\"", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +dev = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] +tests = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\""] [[package]] name = "babel" @@ -431,7 +422,7 @@ description = "Internationalization utilities" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, @@ -447,7 +438,7 @@ description = "Screen-scraping library" optional = false python-versions = ">=3.6.0" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, @@ -470,7 +461,6 @@ description = "Read and write the PLINK BED format, simply and efficiently." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "bed_reader-1.0.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5f2e812dea71cf9aebbf8b1bf00149600948fdbf4bbdb8805c4a4ed4b1597aba"}, {file = "bed_reader-1.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7753e3e9dcd4210aadfc071ece22264c4fef1bd53b31d34bd63ce11f217954d5"}, @@ -512,7 +502,6 @@ description = "Freely available tools for computational molecular biology." optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "biopython-1.84-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c8beded38884abae4c74cb6ce54142da670273fd0b2919bd0f84f6e34d3056b"}, {file = "biopython-1.84-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b51ef31bfb79872a182a85b4113625e1b553c024bb1586c72ac98b479f8d8fe4"}, @@ -551,7 +540,7 @@ description = "An easy safelist-based HTML-sanitizing tool." optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, @@ -570,7 +559,6 @@ description = "Fast, simple object-to-object and broadcast signaling" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc"}, {file = "blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf"}, @@ -583,7 +571,6 @@ description = "Interactive plots and applications in the browser from Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "bokeh-3.6.2-py3-none-any.whl", hash = "sha256:fddc4b91f8b40178c0e3e83dfcc33886d7803a3a1f041a840834255e435a18c2"}, {file = "bokeh-3.6.2.tar.gz", hash = "sha256:2f3043d9ecb3d5dc2e8c0ebf8ad55727617188d4e534f3e7208b36357e352396"}, @@ -607,7 +594,6 @@ description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "botocore-1.35.36-py3-none-any.whl", hash = "sha256:64241c778bf2dc863d93abab159e14024d97a926a5715056ef6411418cb9ead3"}, {file = "botocore-1.35.36.tar.gz", hash = "sha256:354ec1b766f0029b5d6ff0c45d1a0f9e5007b7d2f3ec89bcdd755b208c5bc797"}, @@ -628,7 +614,6 @@ description = "Generate complex HTML+JS pages with Python" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "branca-0.8.0-py3-none-any.whl", hash = "sha256:e78d5be39c8799a42e5c2dd1145a797a3cefc099537907bc1e4c43b6b55f7fa4"}, {file = "branca-0.8.0.tar.gz", hash = "sha256:1f8fd0d2f3b7548f2c146093932be5d3064ba21eee6cebf92d416b7f9092324f"}, @@ -644,7 +629,6 @@ description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, @@ -657,7 +641,6 @@ description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, @@ -670,7 +653,7 @@ description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and implementation_name == \"pypy\" or python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and implementation_name == \"pypy\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "implementation_name == \"pypy\" or extra == \"dev\"" files = [ {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, @@ -751,7 +734,7 @@ description = "Validate configuration and produce human readable error messages. optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, @@ -764,7 +747,6 @@ description = "The Real First Universal Charset Detector. Open, modern and activ optional = false python-versions = ">=3.7.0" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, @@ -880,7 +862,6 @@ description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, @@ -896,7 +877,6 @@ description = "Pickler class to extend the standard pickle.Pickler functionality optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "cloudpickle-3.1.0-py3-none-any.whl", hash = "sha256:fe11acda67f61aaaec473e3afe030feb131d78a43461b718185363384f1ba12e"}, {file = "cloudpickle-3.1.0.tar.gz", hash = "sha256:81a929b6e3c7335c863c771d673d105f02efdb89dfaba0c90495d1c64796601b"}, @@ -909,7 +889,7 @@ description = "Cross-platform colored terminal text." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" groups = ["main"] -markers = "python_version <= \"3.11\" and platform_system == \"Windows\" or python_version <= \"3.11\" and sys_platform == \"win32\" or python_version >= \"3.12\" and platform_system == \"Windows\" or python_version >= \"3.12\" and sys_platform == \"win32\"" +markers = "platform_system == \"Windows\" or sys_platform == \"win32\"" files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -922,7 +902,6 @@ description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus- optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, @@ -941,7 +920,6 @@ description = "Python library for calculating contours of 2D quadrilateral grids optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, @@ -1016,7 +994,7 @@ description = "Code coverage measurement for Python" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "coverage-7.6.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b39e6011cd06822eb964d038d5dff5da5d98652b81f5ecd439277b32361a3a50"}, {file = "coverage-7.6.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63c19702db10ad79151a059d2d6336fe0c470f2e18d0d4d1a57f7f9713875dcf"}, @@ -1086,7 +1064,7 @@ files = [ tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} [package.extras] -toml = ["tomli"] +toml = ["tomli ; python_full_version <= \"3.11.0a6\""] [[package]] name = "dash" @@ -1095,7 +1073,6 @@ description = "A Python framework for building reactive web-apps. Developed by P optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dash-2.18.2-py3-none-any.whl", hash = "sha256:0ce0479d1bc958e934630e2de7023b8a4558f23ce1f9f5a4b34b65eb3903a869"}, {file = "dash-2.18.2.tar.gz", hash = "sha256:20e8404f73d0fe88ce2eae33c25bbc513cbe52f30d23a401fa5f24dbb44296c8"}, @@ -1130,7 +1107,6 @@ description = "Core component suite for Dash" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346"}, {file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"}, @@ -1143,7 +1119,6 @@ description = "A Component Library for Dash aimed at facilitating network visual optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dash_cytoscape-1.0.2.tar.gz", hash = "sha256:a61019d2184d63a2b3b5c06d056d3b867a04223a674cc3c7cf900a561a9a59aa"}, ] @@ -1161,7 +1136,6 @@ description = "Vanilla HTML components for Dash" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63"}, {file = "dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"}, @@ -1174,7 +1148,6 @@ description = "Dash table" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9"}, {file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"}, @@ -1187,7 +1160,6 @@ description = "Parallel PyData with Task Scheduling" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "dask-2024.12.0-py3-none-any.whl", hash = "sha256:e038e87b9f06e7927b81ecde6cf2b49aa699bb902fec11abba5697cb48baeb8d"}, {file = "dask-2024.12.0.tar.gz", hash = "sha256:ffd02b06ac06b993df0b48e0ba4fe02abceb5c8b34b40bd91d63f33ec7a272a4"}, @@ -1219,7 +1191,6 @@ description = "An implementation of the Debug Adapter Protocol for Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "debugpy-1.8.9-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:cfe1e6c6ad7178265f74981edf1154ffce97b69005212fbc90ca22ddfe3d017e"}, {file = "debugpy-1.8.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ada7fb65102a4d2c9ab62e8908e9e9f12aed9d76ef44880367bc9308ebe49a0f"}, @@ -1256,7 +1227,7 @@ description = "Create decorators easily in python." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "decopatch-1.4.10-py2.py3-none-any.whl", hash = "sha256:e151f7f93de2b1b3fd3f3272dcc7cefd1a69f68ec1c2d8e288ecd9deb36dc5f7"}, {file = "decopatch-1.4.10.tar.gz", hash = "sha256:957f49c93f4150182c23f8fb51d13bb3213e0f17a79e09c8cca7057598b55720"}, @@ -1272,7 +1243,6 @@ description = "Decorators for Humans" optional = false python-versions = ">=3.5" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, @@ -1285,7 +1255,7 @@ description = "XML bomb protection for Python stdlib modules" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, @@ -1298,7 +1268,7 @@ description = "Distribution utilities" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"}, {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"}, @@ -1311,7 +1281,6 @@ description = "Distributed scheduler for Dask" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "distributed-2024.12.0-py3-none-any.whl", hash = "sha256:ed05aa13b6c62b69b33d1ba7d1ca95e78406c8f37163fafd07f7ca94ae036b66"}, {file = "distributed-2024.12.0.tar.gz", hash = "sha256:6a2c04e63d31973ee3c1f2160d66521ed8f08e637d6a25a450e7561582920f38"}, @@ -1341,7 +1310,7 @@ description = "Docutils -- Python Documentation Utilities" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2"}, {file = "docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"}, @@ -1354,7 +1323,7 @@ description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, @@ -1370,7 +1339,7 @@ description = "execnet: rapid multi-Python deployment" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc"}, {file = "execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3"}, @@ -1386,14 +1355,13 @@ description = "Get the currently executing AST node of a frame, and other inform optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, ] [package.extras] -tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich ; python_version >= \"3.11\""] [[package]] name = "fasteners" @@ -1402,7 +1370,7 @@ description = "A python package that provides useful locks" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" and sys_platform != \"emscripten\" or python_version >= \"3.12\" and sys_platform != \"emscripten\"" +markers = "sys_platform != \"emscripten\"" files = [ {file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"}, {file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"}, @@ -1415,7 +1383,7 @@ description = "Fastest Python implementation of JSON schema" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"}, {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"}, @@ -1431,7 +1399,7 @@ description = "A platform independent file lock." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0"}, {file = "filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435"}, @@ -1440,7 +1408,7 @@ files = [ [package.extras] docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4.1)"] testing = ["covdefaults (>=2.3)", "coverage (>=7.6.1)", "diff-cover (>=9.2)", "pytest (>=8.3.3)", "pytest-asyncio (>=0.24)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.26.4)"] -typing = ["typing-extensions (>=4.12.2)"] +typing = ["typing-extensions (>=4.12.2) ; python_version < \"3.11\""] [[package]] name = "flask" @@ -1449,7 +1417,6 @@ description = "A simple framework for building complex web applications." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3"}, {file = "flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842"}, @@ -1473,7 +1440,7 @@ description = "Validates fully-qualified domain names against RFC 1123, so that optional = false python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, @@ -1486,7 +1453,6 @@ description = "A list-like structure which implements collections.abc.MutableSeq optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, @@ -1589,7 +1555,6 @@ description = "File-system specification" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, @@ -1630,7 +1595,6 @@ description = "Convenient Filesystem interface over GCS" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "gcsfs-2024.10.0-py2.py3-none-any.whl", hash = "sha256:bb2d23547e61203ea2dda5fa6c4b91a0c34b74ebe8bb6ab1926f6c33381bceb2"}, {file = "gcsfs-2024.10.0.tar.gz", hash = "sha256:5df54cfe568e8fdeea5aafa7fed695cdc69a9a674e991ca8c1ce634f5df1d314"}, @@ -1656,7 +1620,6 @@ description = "Google API client core library" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_api_core-2.23.0-py3-none-any.whl", hash = "sha256:c20100d4c4c41070cf365f1d8ddf5365915291b5eb11b83829fbd1c999b5122f"}, {file = "google_api_core-2.23.0.tar.gz", hash = "sha256:2ceb087315e6af43f256704b871d99326b1f12a9d6ce99beaedec99ba26a0ace"}, @@ -1671,7 +1634,7 @@ requests = ">=2.18.0,<3.0.0.dev0" [package.extras] async-rest = ["google-auth[aiohttp] (>=2.35.0,<3.0.dev0)"] -grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev) ; python_version >= \"3.11\"", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0) ; python_version >= \"3.11\""] grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] @@ -1682,7 +1645,6 @@ description = "Google Authentication Library" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_auth-2.36.0-py2.py3-none-any.whl", hash = "sha256:51a15d47028b66fd36e5c64a82d2d57480075bccc7da37cde257fc94177a61fb"}, {file = "google_auth-2.36.0.tar.gz", hash = "sha256:545e9618f2df0bcbb7dcbc45a546485b1212624716975a1ea5ae8149ce769ab1"}, @@ -1707,7 +1669,6 @@ description = "Google Authentication Library" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f"}, {file = "google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263"}, @@ -1727,7 +1688,6 @@ description = "Google Cloud API client core library" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google-cloud-core-2.4.1.tar.gz", hash = "sha256:9b7749272a812bde58fff28868d0c5e2f585b82f37e09a1f6ed2d4d10f134073"}, {file = "google_cloud_core-2.4.1-py2.py3-none-any.whl", hash = "sha256:a9e6a4422b9ac5c29f79a0ede9485473338e2ce78d91f2370c01e730eab22e61"}, @@ -1747,7 +1707,6 @@ description = "Google Cloud Storage API client library" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_cloud_storage-2.18.2-py2.py3-none-any.whl", hash = "sha256:97a4d45c368b7d401ed48c4fdfe86e1e1cb96401c9e199e419d289e2c0370166"}, {file = "google_cloud_storage-2.18.2.tar.gz", hash = "sha256:aaf7acd70cdad9f274d29332673fcab98708d0e1f4dceb5a5356aaef06af4d99"}, @@ -1772,7 +1731,6 @@ description = "A python wrapper of the C library 'Google CRC32C'" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_crc32c-1.6.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5bcc90b34df28a4b38653c36bb5ada35671ad105c99cfe915fb5bed7ad6924aa"}, {file = "google_crc32c-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:d9e9913f7bd69e093b81da4535ce27af842e7bf371cde42d1ae9e9bd382dc0e9"}, @@ -1813,7 +1771,6 @@ description = "Utilities for Google Media Downloads and Resumable Uploads" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa"}, {file = "google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0"}, @@ -1833,7 +1790,6 @@ description = "Common protobufs used in Google APIs" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "googleapis_common_protos-1.66.0-py2.py3-none-any.whl", hash = "sha256:d7abcd75fabb2e0ec9f74466401f6c119a0b498e27370e9be4c94cb7e382b8ed"}, {file = "googleapis_common_protos-1.66.0.tar.gz", hash = "sha256:c3e7b33d15fdca5374cc0a7346dd92ffa847425cc4ea941d970f13680052ec8c"}, @@ -1852,7 +1808,7 @@ description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1865,7 +1821,7 @@ description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, @@ -1888,7 +1844,7 @@ description = "The next generation HTTP client." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "httpx-0.28.0-py3-none-any.whl", hash = "sha256:dc0b419a0cfeb6e8b34e85167c0da2671206f5095f1baa9663d23bcfd6b535fc"}, {file = "httpx-0.28.0.tar.gz", hash = "sha256:0858d3bab51ba7e386637f22a61d8ccddaeec5f3fe4209da3a6168dbb91573e0"}, @@ -1901,7 +1857,7 @@ httpcore = "==1.*" idna = "*" [package.extras] -brotli = ["brotli", "brotlicffi"] +brotli = ["brotli ; platform_python_implementation == \"CPython\"", "brotlicffi ; platform_python_implementation != \"CPython\""] cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] @@ -1914,7 +1870,7 @@ description = "File identification library for Python" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "identify-2.6.3-py2.py3-none-any.whl", hash = "sha256:9edba65473324c2ea9684b1f944fe3191db3345e50b6d04571d10ed164f8d7bd"}, {file = "identify-2.6.3.tar.gz", hash = "sha256:62f5dae9b5fef52c84cc188514e9ea4f3f636b1d8799ab5ebc475471f9e47a02"}, @@ -1930,7 +1886,6 @@ description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, @@ -1946,7 +1901,6 @@ description = "Package for embedding the igv.js genome visualization in IPython optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "igv-notebook-0.6.1.tar.gz", hash = "sha256:37e4f091d93536775c99075b7fac11069186e22f05874dd2da886b7dc09e9e0d"}, {file = "igv_notebook-0.6.1-py3-none-any.whl", hash = "sha256:e13a53d245d6d51603173fbdd481f051344d79cbaeaa69f4bcc569a1c5387559"}, @@ -1964,7 +1918,7 @@ description = "Getting image size from png/jpeg/jpeg2000/gif file" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"}, {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"}, @@ -1977,7 +1931,6 @@ description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, @@ -1987,12 +1940,12 @@ files = [ zipp = ">=3.20" [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] perf = ["ipython"] -test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] +test = ["flufl.flake8", "importlib-resources (>=1.3) ; python_version < \"3.9\"", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] type = ["pytest-mypy"] [[package]] @@ -2002,7 +1955,7 @@ description = "brain-dead simple config-ini parsing" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, @@ -2015,7 +1968,6 @@ description = "Official Python library for IPInfo" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "ipinfo-5.1.1-py3-none-any.whl", hash = "sha256:90b2f5400189dd2da7625c9151d7076879a8cac9c31bfb581689345fac34cceb"}, {file = "ipinfo-5.1.1.tar.gz", hash = "sha256:be5a33adac9681bc68280eb5aae16a83e4abbb5f192c87dcc5ee18bdd0ceb276"}, @@ -2033,7 +1985,6 @@ description = "IPython Kernel for Jupyter" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"}, {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"}, @@ -2068,7 +2019,6 @@ description = "A Jupyter widget for dynamic Leaflet maps" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "ipyleaflet-0.19.2-py3-none-any.whl", hash = "sha256:7cc9157848baca2e1793b96e79f8bdb1aa7340521d2b7d8a62aa8bc30eab5278"}, {file = "ipyleaflet-0.19.2.tar.gz", hash = "sha256:b3b83fe3460e742964c2a5924ea7934365a3749bb75310ce388d45fd751372d2"}, @@ -2088,7 +2038,6 @@ description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "ipython-8.30.0-py3-none-any.whl", hash = "sha256:85ec56a7e20f6c38fce7727dcca699ae4ffc85985aa7b23635a8008f918ae321"}, {file = "ipython-8.30.0.tar.gz", hash = "sha256:cb0a405a306d2995a5cbb9901894d240784a9f341394c6ba3f4fe8c6eb89ff6e"}, @@ -2110,7 +2059,7 @@ typing_extensions = {version = ">=4.6", markers = "python_version < \"3.12\""} [package.extras] all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] black = ["black"] -doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing_extensions"] +doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli ; python_version < \"3.11\"", "typing_extensions"] kernel = ["ipykernel"] matplotlib = ["matplotlib"] nbconvert = ["nbconvert"] @@ -2128,7 +2077,6 @@ description = "Jupyter interactive widgets" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "ipywidgets-8.1.5-py3-none-any.whl", hash = "sha256:3290f526f87ae6e77655555baba4f36681c555b8bdbbff430b70e52c34c86245"}, {file = "ipywidgets-8.1.5.tar.gz", hash = "sha256:870e43b1a35656a80c18c9503bbf2d16802db1cb487eec6fab27d683381dde17"}, @@ -2151,7 +2099,7 @@ description = "Operations with ISO 8601 durations" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, @@ -2167,7 +2115,6 @@ description = "Safely pass data to untrusted environments and back." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef"}, {file = "itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173"}, @@ -2180,7 +2127,6 @@ description = "An autocompletion tool for Python that can be used for text edito optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, @@ -2201,7 +2147,6 @@ description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, @@ -2220,7 +2165,6 @@ description = "JSON Matching Expressions" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -2233,7 +2177,6 @@ description = "Lightweight pipelining with Python functions" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, @@ -2246,7 +2189,7 @@ description = "A Python implementation of the JSON5 data format." optional = false python-versions = ">=3.8.0" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa"}, {file = "json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559"}, @@ -2262,7 +2205,7 @@ description = "Identify specific nodes in a JSON document (RFC 6901)" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, @@ -2275,7 +2218,7 @@ description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, @@ -2306,7 +2249,7 @@ description = "The JSON Schema meta-schemas and vocabularies, exposed as a Regis optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, @@ -2322,7 +2265,6 @@ description = "Jupyter protocol implementation and client libraries" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"}, {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"}, @@ -2337,7 +2279,7 @@ traitlets = ">=5.3" [package.extras] docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko ; sys_platform == \"win32\"", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" @@ -2346,7 +2288,6 @@ description = "Jupyter core package. A base package on which Jupyter projects re optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, @@ -2368,7 +2309,7 @@ description = "Jupyter Event System library" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, @@ -2395,7 +2336,6 @@ description = "ipyleaflet extensions for JupyterLab and Jupyter Notebook" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jupyter_leaflet-0.19.2-py3-none-any.whl", hash = "sha256:0d57e15e80c08a4360f0cde0b4c490beddc5d422bb0e9bc1c0b4479d3fb725a6"}, {file = "jupyter_leaflet-0.19.2.tar.gz", hash = "sha256:b09b5ba48b1488cb61da37a6f558347269eb53ff6d64dc1a73e005ffc4420063"}, @@ -2408,7 +2348,7 @@ description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab se optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001"}, {file = "jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da"}, @@ -2424,7 +2364,7 @@ description = "The backend—i.e. core services, APIs, and REST endpoints—to J optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"}, {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"}, @@ -2462,7 +2402,7 @@ description = "A Jupyter Server Extension Providing Terminals." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"}, {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"}, @@ -2483,7 +2423,7 @@ description = "JupyterLab computational environment" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyterlab-4.3.2-py3-none-any.whl", hash = "sha256:e87100cbab8b886ff7a4f325c856100ba6fdfe916162a85409daf0e707e19d1d"}, {file = "jupyterlab-4.3.2.tar.gz", hash = "sha256:3c0a6882dbddcc0a7bfdd5e2236f351b2b263e48780236e6996c2aca13ac5b22"}, @@ -2519,7 +2459,7 @@ description = "Pygments theme using JupyterLab CSS variables" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, @@ -2532,7 +2472,7 @@ description = "A set of server components for JupyterLab and JupyterLab like app optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"}, {file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"}, @@ -2559,7 +2499,6 @@ description = "Jupyter interactive widgets for JupyterLab" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "jupyterlab_widgets-3.0.13-py3-none-any.whl", hash = "sha256:e3cda2c233ce144192f1e29914ad522b2f4c40e77214b0cc97377ca3d323db54"}, {file = "jupyterlab_widgets-3.0.13.tar.gz", hash = "sha256:a2966d385328c1942b683a8cd96b89b8dd82c8b8f81dda902bb2bc06d46f5bed"}, @@ -2572,7 +2511,6 @@ description = "lightweight wrapper around basic LLVM functionality" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761"}, {file = "llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc"}, @@ -2604,7 +2542,6 @@ description = "File-based locks for Python on Linux and Windows" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "locket-1.0.0-py2.py3-none-any.whl", hash = "sha256:b6c819a722f7b6bd955b80781788e4a66a55628b858d347536b7e81325a3a5e3"}, {file = "locket-1.0.0.tar.gz", hash = "sha256:5c0d4c052a8bbbf750e056a8e65ccd309086f4f0f18a2eac306a8dfa4112a632"}, @@ -2617,7 +2554,7 @@ description = "Small library to dynamically create python functions." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "makefun-1.15.6-py2.py3-none-any.whl", hash = "sha256:e69b870f0bb60304765b1e3db576aaecf2f9b3e5105afe8cfeff8f2afe6ad067"}, {file = "makefun-1.15.6.tar.gz", hash = "sha256:26bc63442a6182fb75efed8b51741dd2d1db2f176bec8c64e20a586256b8f149"}, @@ -2630,7 +2567,6 @@ description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, @@ -2702,7 +2638,6 @@ description = "Inline Matplotlib backend for Jupyter" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"}, {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"}, @@ -2718,7 +2653,7 @@ description = "A module for monitoring memory usage of a python program" optional = false python-versions = ">=3.5" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "memory_profiler-0.61.0-py3-none-any.whl", hash = "sha256:400348e61031e3942ad4d4109d18753b2fb08c2f6fb8290671c5513a34182d84"}, {file = "memory_profiler-0.61.0.tar.gz", hash = "sha256:4e5b73d7864a1d1292fb76a03e82a3e78ef934d06828a698d9dada76da2067b0"}, @@ -2734,7 +2669,7 @@ description = "A sane and fast Markdown parser with useful plugins and renderers optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, @@ -2747,7 +2682,6 @@ description = "MessagePack serializer" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"}, {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"}, @@ -2822,7 +2756,6 @@ description = "multidict implementation" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60"}, {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1"}, @@ -2928,7 +2861,7 @@ description = "Optional static typing for Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, @@ -2983,7 +2916,7 @@ description = "Type system extensions for programs checked with the mypy type ch optional = false python-versions = ">=3.5" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -2996,7 +2929,7 @@ description = "A client library for executing notebooks. Formerly nbconvert's Ex optional = false python-versions = ">=3.8.0" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "nbclient-0.10.1-py3-none-any.whl", hash = "sha256:949019b9240d66897e442888cfb618f69ef23dc71c01cb5fced8499c2cfc084d"}, {file = "nbclient-0.10.1.tar.gz", hash = "sha256:3e93e348ab27e712acd46fccd809139e356eb9a31aab641d1a7991a6eb4e6f68"}, @@ -3020,7 +2953,7 @@ description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Ou optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, @@ -3059,7 +2992,7 @@ description = "The Jupyter Notebook format" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"}, {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"}, @@ -3082,7 +3015,6 @@ description = "Patch asyncio to allow nested event loops" optional = false python-versions = ">=3.5" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -3095,7 +3027,6 @@ description = "Python package for creating and manipulating graphs and networks" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, @@ -3116,7 +3047,7 @@ description = "Node.js virtual environment builder" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"}, {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"}, @@ -3129,7 +3060,7 @@ description = "Jupyter Notebook - A web-based notebook environment for interacti optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "notebook-7.3.0-py3-none-any.whl", hash = "sha256:affa2fdbc10661aa05790ba105836871666b3919559abb5bc92dd8d9f0cbeee3"}, {file = "notebook-7.3.0.tar.gz", hash = "sha256:e1dc37db32620b04043ae78866a40b087c43308d85067699db99e6f9e22846bc"}, @@ -3145,7 +3076,7 @@ tornado = ">=6.2.0" [package.extras] dev = ["hatch", "pre-commit"] docs = ["myst-parser", "nbsphinx", "pydata-sphinx-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["importlib-resources (>=5.0)", "ipykernel", "jupyter-server[test] (>=2.4.0,<3)", "jupyterlab-server[test] (>=2.27.1,<3)", "nbval", "pytest (>=7.0)", "pytest-console-scripts", "pytest-timeout", "pytest-tornasync", "requests"] +test = ["importlib-resources (>=5.0) ; python_version < \"3.10\"", "ipykernel", "jupyter-server[test] (>=2.4.0,<3)", "jupyterlab-server[test] (>=2.27.1,<3)", "nbval", "pytest (>=7.0)", "pytest-console-scripts", "pytest-timeout", "pytest-tornasync", "requests"] [[package]] name = "notebook-shim" @@ -3154,7 +3085,7 @@ description = "A shim layer for notebook traits and config" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, @@ -3173,7 +3104,6 @@ description = "compiling Python code using LLVM" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651"}, {file = "numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b"}, @@ -3209,7 +3139,6 @@ description = "A Python package providing buffer compression and transformation optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "numcodecs-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:96add4f783c5ce57cc7e650b6cac79dd101daf887c479a00a29bc1487ced180b"}, {file = "numcodecs-0.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:237b7171609e868a20fd313748494444458ccd696062f67e198f7f8f52000c15"}, @@ -3248,7 +3177,6 @@ description = "Fundamental package for array computing in Python" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece"}, {file = "numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04"}, @@ -3304,7 +3232,6 @@ description = "" optional = false python-versions = "<3.13,>=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "numpydoc_decorator-2.2.1-py3-none-any.whl", hash = "sha256:16181c97b20c2099d6fd75404bef379cc3678338d9aa8e6e8fafb3ae7adc166a"}, {file = "numpydoc_decorator-2.2.1.tar.gz", hash = "sha256:c3b5b16bec1e7ed221adab7bd77a8a8acc0c7be1bb4e0871721b2a5d2f3145fa"}, @@ -3320,7 +3247,6 @@ description = "A generic, spec-compliant, thorough implementation of the OAuth r optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -3338,7 +3264,6 @@ description = "Fast, correct Python JSON library supporting dataclasses, datetim optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "orjson-3.10.12-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ece01a7ec71d9940cc654c482907a6b65df27251255097629d0dea781f255c6d"}, {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34ec9aebc04f11f4b978dd6caf697a2df2dd9b47d35aa4cc606cabcb9df69d7"}, @@ -3424,7 +3349,7 @@ description = "A decorator to automatically detect mismatch when overriding a me optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, @@ -3437,7 +3362,6 @@ description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, @@ -3450,7 +3374,6 @@ description = "Powerful data structures for data analysis, time series, and stat optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5"}, {file = "pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348"}, @@ -3538,7 +3461,7 @@ description = "Type annotations for pandas" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pandas_stubs-2.2.3.241126-py3-none-any.whl", hash = "sha256:74aa79c167af374fe97068acc90776c0ebec5266a6e5c69fe11e9c2cf51f2267"}, {file = "pandas_stubs-2.2.3.241126.tar.gz", hash = "sha256:cf819383c6d9ae7d4dabf34cd47e1e45525bb2f312e6ad2939c2c204cb708acd"}, @@ -3555,7 +3478,7 @@ description = "Utilities for writing pandoc filters in python" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, @@ -3568,7 +3491,6 @@ description = "A Python Parser" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"}, {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"}, @@ -3585,7 +3507,6 @@ description = "Appendable key-value storage" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "partd-1.4.2-py3-none-any.whl", hash = "sha256:978e4ac767ec4ba5b86c6eaa52e5a2a3bc748a2ca839e8cc798f1cc6ce6efb0f"}, {file = "partd-1.4.2.tar.gz", hash = "sha256:d022c33afbdc8405c226621b015e8067888173d85f7f5ecebb3cafed9a20f02c"}, @@ -3605,7 +3526,6 @@ description = "A Python package for describing statistical models and for buildi optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "patsy-1.0.1-py2.py3-none-any.whl", hash = "sha256:751fb38f9e97e62312e921a1954b81e1bb2bcda4f5eeabaf94db251ee791509c"}, {file = "patsy-1.0.1.tar.gz", hash = "sha256:e786a9391eec818c054e359b737bbce692f051aee4c661f4141cc88fb459c0c4"}, @@ -3624,7 +3544,7 @@ description = "Pexpect allows easy control of interactive console applications." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\") or python_version >= \"3.12\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\")" +markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\"" files = [ {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, @@ -3640,7 +3560,6 @@ description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, @@ -3724,7 +3643,7 @@ docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline fpx = ["olefile"] mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] -typing = ["typing-extensions"] +typing = ["typing-extensions ; python_version < \"3.10\""] xmp = ["defusedxml"] [[package]] @@ -3734,7 +3653,6 @@ description = "A small Python package for determining appropriate platform-speci optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, @@ -3752,7 +3670,6 @@ description = "An open-source, interactive data visualization library for Python optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "plotly-5.24.1-py3-none-any.whl", hash = "sha256:f67073a1e637eb0dc3e46324d9d51e2fe76e9727c892dde64ddf1e1b51f29089"}, {file = "plotly-5.24.1.tar.gz", hash = "sha256:dbc8ac8339d248a4bcc36e08a5659bacfe1b079390b8953533f4eb22169b4bae"}, @@ -3769,7 +3686,7 @@ description = "plugin and hook calling mechanisms for python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, @@ -3786,7 +3703,7 @@ description = "A framework for managing and maintaining multi-language pre-commi optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pre_commit-4.0.1-py2.py3-none-any.whl", hash = "sha256:efde913840816312445dc98787724647c65473daefe420785f885e8ed9a06878"}, {file = "pre_commit-4.0.1.tar.gz", hash = "sha256:80905ac375958c0444c65e9cebebd948b3cdb518f335a091a670a89d652139d2"}, @@ -3806,7 +3723,7 @@ description = "Python client for the Prometheus monitoring system." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"}, {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"}, @@ -3822,7 +3739,6 @@ description = "Library for building powerful interactive command lines in Python optional = false python-versions = ">=3.7.0" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, @@ -3838,7 +3754,6 @@ description = "Accelerated property cache" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6"}, {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2"}, @@ -3931,7 +3846,6 @@ description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, @@ -3950,7 +3864,6 @@ description = "" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "protobuf-5.29.0-cp310-abi3-win32.whl", hash = "sha256:ea7fb379b257911c8c020688d455e8f74efd2f734b72dc1ea4b4d7e9fd1326f2"}, {file = "protobuf-5.29.0-cp310-abi3-win_amd64.whl", hash = "sha256:34a90cf30c908f47f40ebea7811f743d360e202b6f10d40c02529ebd84afc069"}, @@ -3972,7 +3885,6 @@ description = "Protopunica is pomegranate frozen at version 0.14.8." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "protopunica-0.14.8.post2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:616313486a9c55e77c9ba0a3e05a7589216ed05b52908ffb95d4d74271f80f57"}, {file = "protopunica-0.14.8.post2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07a0d5ce0037e0c89e021ec302ad8e9ee007fba93dde0f98a7d6fbd7d8849446"}, @@ -4011,7 +3923,6 @@ description = "Cross-platform lib for process and system monitoring in Python." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, @@ -4043,7 +3954,7 @@ description = "Run a subprocess in a pseudo terminal" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" and os_name != \"nt\" or python_version <= \"3.11\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\") or python_version >= \"3.12\" and extra == \"dev\" and os_name != \"nt\" or python_version >= \"3.12\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\")" +markers = "extra == \"dev\" and os_name != \"nt\" or sys_platform != \"win32\" and sys_platform != \"emscripten\"" files = [ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, @@ -4056,7 +3967,6 @@ description = "Safely evaluate AST nodes without side effects" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, @@ -4072,7 +3982,6 @@ description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629"}, {file = "pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034"}, @@ -4085,7 +3994,6 @@ description = "A collection of ASN.1-based protocols modules" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd"}, {file = "pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c"}, @@ -4101,7 +4009,7 @@ description = "C parser in Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and implementation_name == \"pypy\" or python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and implementation_name == \"pypy\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "implementation_name == \"pypy\" or extra == \"dev\"" files = [ {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, @@ -4114,7 +4022,7 @@ description = "Bootstrap-based Sphinx theme from the PyData community" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pydata_sphinx_theme-0.16.0-py3-none-any.whl", hash = "sha256:18c810ee4e67e05281e371e156c1fb5bb0fa1f2747240461b225272f7d8d57d8"}, {file = "pydata_sphinx_theme-0.16.0.tar.gz", hash = "sha256:721dd26e05fa8b992d66ef545536e6cbe0110afb9865820a08894af1ad6f7707"}, @@ -4143,7 +4051,6 @@ description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, @@ -4159,7 +4066,7 @@ description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6"}, {file = "pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761"}, @@ -4183,7 +4090,7 @@ description = "Separate test code from test cases in pytest." optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pytest_cases-3.8.6-py2.py3-none-any.whl", hash = "sha256:564c722492ea7e7ec3ac433fd14070180e65866f49fa35bfe938c0d5d9afba67"}, {file = "pytest_cases-3.8.6.tar.gz", hash = "sha256:5c24e0ab0cb6f8e802a469b7965906a333d3babb874586ebc56f7e2cbe1a7c44"}, @@ -4201,7 +4108,7 @@ description = "Pytest plugin for measuring coverage." optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0"}, {file = "pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35"}, @@ -4221,7 +4128,7 @@ description = "pytest xdist plugin for distributed testing, most importantly acr optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7"}, {file = "pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d"}, @@ -4243,7 +4150,6 @@ description = "Extensions to the standard Python datetime module" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, @@ -4259,7 +4165,7 @@ description = "A python library adding a json log formatter" optional = false python-versions = ">=3.6" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, @@ -4272,7 +4178,6 @@ description = "World timezone definitions, modern and historical" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, @@ -4285,7 +4190,7 @@ description = "Python for Window Extensions" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and sys_platform == \"win32\" and platform_python_implementation != \"PyPy\" or python_version >= \"3.12\" and sys_platform == \"win32\" and platform_python_implementation != \"PyPy\"" +markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\"" files = [ {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, @@ -4314,7 +4219,7 @@ description = "Pseudo terminal support for Windows from Python." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" and os_name == \"nt\" or python_version >= \"3.12\" and extra == \"dev\" and os_name == \"nt\"" +markers = "extra == \"dev\" and os_name == \"nt\"" files = [ {file = "pywinpty-2.0.14-cp310-none-win_amd64.whl", hash = "sha256:0b149c2918c7974f575ba79f5a4aad58bd859a52fa9eb1296cc22aa412aa411f"}, {file = "pywinpty-2.0.14-cp311-none-win_amd64.whl", hash = "sha256:cf2a43ac7065b3e0dc8510f8c1f13a75fb8fde805efa3b8cff7599a1ef497bc7"}, @@ -4331,7 +4236,6 @@ description = "YAML parser and emitter for Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, @@ -4395,7 +4299,6 @@ description = "Python bindings for 0MQ" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, @@ -4518,7 +4421,7 @@ description = "JSON Referencing + Python" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, @@ -4535,7 +4438,6 @@ description = "Python HTTP for Humans." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, @@ -4558,7 +4460,6 @@ description = "OAuthlib authentication support for Requests." optional = false python-versions = ">=3.4" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9"}, {file = "requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36"}, @@ -4578,7 +4479,6 @@ description = "Retrying" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35"}, {file = "retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e"}, @@ -4594,7 +4494,7 @@ description = "A pure python RFC3339 validator" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, @@ -4610,7 +4510,7 @@ description = "Pure python rfc3986 validator" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, @@ -4623,7 +4523,7 @@ description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"}, {file = "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"}, @@ -4737,7 +4637,6 @@ description = "Pure-Python RSA implementation" optional = false python-versions = ">=3.6,<4" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, @@ -4753,7 +4652,7 @@ description = "An extremely fast Python linter and code formatter, written in Ru optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "ruff-0.8.1-py3-none-linux_armv6l.whl", hash = "sha256:fae0805bd514066f20309f6742f6ee7904a773eb9e6c17c45d6b1600ca65c9b5"}, {file = "ruff-0.8.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b8a4f7385c2285c30f34b200ca5511fcc865f17578383db154e098150ce0a087"}, @@ -4782,7 +4681,6 @@ description = "Convenient Filesystem interface over S3" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "s3fs-2024.10.0-py3-none-any.whl", hash = "sha256:7a2025d60d5b1a6025726b3a5e292a8e5aa713abc3b16fd1f81735181f7bb282"}, {file = "s3fs-2024.10.0.tar.gz", hash = "sha256:58b8c3650f8b99dbedf361543da3533aac8707035a104db5d80b094617ad4a3f"}, @@ -4804,7 +4702,6 @@ description = "A Python package for exploring and analysing genetic variation da optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "scikit_allel-1.3.13-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eb786c909c34b682205c3cacba9b4f0866e658917f30e2f97e1051d9fb2e7ccc"}, {file = "scikit_allel-1.3.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1853068621208fc2d5537e9a5b292aef2d5e8c975fa35f8f810b3174e0226160"}, @@ -4839,7 +4736,6 @@ description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "scipy-1.14.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:b28d2ca4add7ac16ae8bb6632a3c86e4b9e4d52d3e34267f6e1b0c1f8d87e389"}, {file = "scipy-1.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0d2821003174de06b69e58cef2316a6622b60ee613121199cb2852a873f8cf3"}, @@ -4882,7 +4778,7 @@ numpy = ">=1.23.5,<2.3" [package.extras] dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"] doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<=7.3.7)", "sphinx-design (>=0.4.0)"] -test = ["Cython", "array-api-strict (>=2.0)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] +test = ["Cython", "array-api-strict (>=2.0)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja ; sys_platform != \"emscripten\"", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] [[package]] name = "send2trash" @@ -4891,16 +4787,16 @@ description = "Send file to trash natively under Mac OS X, Windows and Linux" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"}, {file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"}, ] [package.extras] -nativelib = ["pyobjc-framework-Cocoa", "pywin32"] -objc = ["pyobjc-framework-Cocoa"] -win32 = ["pywin32"] +nativelib = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\"", "pywin32 ; sys_platform == \"win32\""] +objc = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\""] +win32 = ["pywin32 ; sys_platform == \"win32\""] [[package]] name = "setuptools" @@ -4909,20 +4805,19 @@ description = "Easily download, build, install, upgrade, and uninstall Python pa optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"}, {file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.7.0)"] -core = ["importlib_metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.7.0) ; sys_platform != \"cygwin\""] +core = ["importlib_metadata (>=6) ; python_version < \"3.10\"", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib_metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (>=1.12,<1.14)", "pytest-mypy"] [[package]] name = "six" @@ -4931,7 +4826,6 @@ description = "Python 2 and 3 compatibility utilities" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -4944,7 +4838,7 @@ description = "A web-based viewer for Python profiler output" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "snakeviz-2.2.2-py3-none-any.whl", hash = "sha256:77e7b9c82f6152edc330040319b97612351cd9b48c706434c535c2df31d10ac5"}, {file = "snakeviz-2.2.2.tar.gz", hash = "sha256:08028c6f8e34a032ff14757a38424770abb8662fb2818985aeea0d9bc13a7d83"}, @@ -4960,7 +4854,7 @@ description = "Sniff out which async library your code is running under" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, @@ -4973,7 +4867,7 @@ description = "This package provides 29 stemmers for 28 languages generated from optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, @@ -4986,7 +4880,6 @@ description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -4999,7 +4892,7 @@ description = "A modern CSS selector implementation for Beautiful Soup." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, @@ -5012,7 +4905,7 @@ description = "Python documentation generator" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2"}, {file = "sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927"}, @@ -5049,7 +4942,7 @@ description = "A sphinx extension for designing beautiful, view size responsive optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinx_design-0.6.1-py3-none-any.whl", hash = "sha256:b11f37db1a802a183d61b159d9a202314d4d2fe29c163437001324fe2f19549c"}, {file = "sphinx_design-0.6.1.tar.gz", hash = "sha256:b44eea3719386d04d765c1a8257caca2b3e6f8421d7b3a5e742c0fd45f84e632"}, @@ -5076,7 +4969,7 @@ description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, @@ -5094,7 +4987,7 @@ description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, @@ -5112,7 +5005,7 @@ description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML h optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, @@ -5130,7 +5023,7 @@ description = "A sphinx extension which renders display math in HTML via JavaScr optional = false python-versions = ">=3.5" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, @@ -5146,7 +5039,7 @@ description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp d optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, @@ -5164,7 +5057,7 @@ description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, @@ -5182,7 +5075,6 @@ description = "Extract data from python stack frames and tracebacks for informat optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, @@ -5203,7 +5095,6 @@ description = "Statistical computations and models for Python" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "statsmodels-0.14.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7a62f1fc9086e4b7ee789a6f66b3c0fc82dd8de1edda1522d30901a0aa45e42b"}, {file = "statsmodels-0.14.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46ac7ddefac0c9b7b607eed1d47d11e26fe92a1bc1f4d9af48aeed4e21e87981"}, @@ -5246,7 +5137,7 @@ scipy = ">=1.8,<1.9.2 || >1.9.2" [package.extras] build = ["cython (>=3.0.10)"] -develop = ["colorama", "cython (>=3.0.10)", "cython (>=3.0.10,<4)", "flake8", "isort", "joblib", "matplotlib (>=3)", "pytest (>=7.3.0,<8)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty", "setuptools-scm[toml] (>=8.0,<9.0)"] +develop = ["colorama", "cython (>=3.0.10)", "cython (>=3.0.10,<4)", "flake8", "isort", "joblib", "matplotlib (>=3)", "pytest (>=7.3.0,<8)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty ; os_name == \"nt\"", "setuptools-scm[toml] (>=8.0,<9.0)"] docs = ["ipykernel", "jupyter-client", "matplotlib", "nbconvert", "nbformat", "numpydoc", "pandas-datareader", "sphinx"] [[package]] @@ -5256,7 +5147,6 @@ description = "Traceback serialization library." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129"}, {file = "tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6"}, @@ -5269,7 +5159,6 @@ description = "Retry code until it succeeds" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539"}, {file = "tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b"}, @@ -5286,7 +5175,6 @@ description = "ANSI color formatting for output in terminal" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "termcolor-2.3.0-py3-none-any.whl", hash = "sha256:3afb05607b89aed0ffe25202399ee0867ad4d3cb4180d98aaf8eefa6a5f7d475"}, {file = "termcolor-2.3.0.tar.gz", hash = "sha256:b5b08f68937f138fe92f6c089b99f1e2da0ae56c52b78bf7075fd95420fd9a5a"}, @@ -5302,7 +5190,7 @@ description = "Tornado websocket backend for the Xterm.js Javascript terminal em optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"}, {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"}, @@ -5325,7 +5213,7 @@ description = "A tiny CSS parser" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, @@ -5345,7 +5233,7 @@ description = "A lil' TOML parser" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_full_version <= \"3.11.0a6\" and extra == \"dev\"" +markers = "extra == \"dev\" and python_version == \"3.10\"" files = [ {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, @@ -5388,7 +5276,6 @@ description = "List processing tools and functional utilities" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "toolz-1.0.0-py3-none-any.whl", hash = "sha256:292c8f1c4e7516bf9086f8850935c799a874039c8bcf959d47b600e4c44a6236"}, {file = "toolz-1.0.0.tar.gz", hash = "sha256:2c86e3d9a04798ac556793bced838816296a2f085017664e4995cb40a1047a02"}, @@ -5401,7 +5288,6 @@ description = "Tornado is a Python web framework and asynchronous networking lib optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"}, {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"}, @@ -5423,7 +5309,6 @@ description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"}, {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"}, @@ -5446,7 +5331,6 @@ description = "Traitlets Python configuration system" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"}, {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"}, @@ -5463,7 +5347,6 @@ description = "Scipy trait types" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "traittypes-0.2.1-py2.py3-none-any.whl", hash = "sha256:1340af133810b6eee1a2eb2e988f862b0d12b6c2d16f282aaf3207b782134c2e"}, {file = "traittypes-0.2.1.tar.gz", hash = "sha256:be6fa26294733e7489822ded4ae25da5b4824a8a7a0e0c2dccfde596e3489bd6"}, @@ -5482,7 +5365,6 @@ description = "Run-time type checker for Python" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "typeguard-4.4.1-py3-none-any.whl", hash = "sha256:9324ec07a27ec67fc54a9c063020ca4c0ae6abad5e9f0f9804ca59aee68c6e21"}, {file = "typeguard-4.4.1.tar.gz", hash = "sha256:0d22a89d00b453b47c49875f42b6601b961757541a2e1e0ef517b6e24213c21b"}, @@ -5493,7 +5375,7 @@ typing-extensions = ">=4.10.0" [package.extras] doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.3.0)"] -test = ["coverage[toml] (>=7)", "mypy (>=1.2.0)", "pytest (>=7)"] +test = ["coverage[toml] (>=7)", "mypy (>=1.2.0) ; platform_python_implementation != \"PyPy\"", "pytest (>=7)"] [[package]] name = "types-python-dateutil" @@ -5502,7 +5384,7 @@ description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "types-python-dateutil-2.9.0.20241003.tar.gz", hash = "sha256:58cb85449b2a56d6684e41aeefb4c4280631246a0da1a719bdbe6f3fb0317446"}, {file = "types_python_dateutil-2.9.0.20241003-py3-none-any.whl", hash = "sha256:250e1d8e80e7bbc3a6c99b907762711d1a1cdd00e978ad39cb5940f6f0a87f3d"}, @@ -5515,7 +5397,7 @@ description = "Typing stubs for pytz" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "types-pytz-2024.2.0.20241003.tar.gz", hash = "sha256:575dc38f385a922a212bac00a7d6d2e16e141132a3c955078f4a4fd13ed6cb44"}, {file = "types_pytz-2024.2.0.20241003-py3-none-any.whl", hash = "sha256:3e22df1336c0c6ad1d29163c8fda82736909eb977281cb823c57f8bae07118b7"}, @@ -5528,7 +5410,6 @@ description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, @@ -5541,7 +5422,6 @@ description = "Provider of IANA time zone data" optional = false python-versions = ">=2" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, @@ -5554,7 +5434,7 @@ description = "RFC 6570 URI Template Processor" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, @@ -5570,14 +5450,13 @@ description = "HTTP library with thread-safe connection pooling, file post, and optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""] h2 = ["h2 (>=4,<5)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] @@ -5589,7 +5468,7 @@ description = "Virtual Python Environment builder" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "virtualenv-20.28.0-py3-none-any.whl", hash = "sha256:23eae1b4516ecd610481eda647f3a7c09aea295055337331bb4e6892ecce47b0"}, {file = "virtualenv-20.28.0.tar.gz", hash = "sha256:2c9c3262bb8e7b87ea801d715fae4495e6032450c71d2309be9550e7364049aa"}, @@ -5602,7 +5481,7 @@ platformdirs = ">=3.9.1,<5" [package.extras] docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] -test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""] [[package]] name = "wcwidth" @@ -5611,7 +5490,6 @@ description = "Measures the displayed width of unicode strings in a terminal" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -5624,7 +5502,7 @@ description = "A library for working with the color formats defined by HTML and optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, @@ -5637,7 +5515,7 @@ description = "Character encoding aliases for legacy web content" optional = false python-versions = "*" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, @@ -5650,7 +5528,7 @@ description = "WebSocket client for Python with low level API options" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" and extra == \"dev\" or python_version >= \"3.12\" and extra == \"dev\"" +markers = "extra == \"dev\"" files = [ {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, @@ -5668,7 +5546,6 @@ description = "The comprehensive WSGI web application library." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "werkzeug-3.0.6-py3-none-any.whl", hash = "sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17"}, {file = "werkzeug-3.0.6.tar.gz", hash = "sha256:a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d"}, @@ -5687,7 +5564,6 @@ description = "Jupyter interactive widgets for Jupyter Notebook" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "widgetsnbextension-4.0.13-py3-none-any.whl", hash = "sha256:74b2692e8500525cc38c2b877236ba51d34541e6385eeed5aec15a70f88a6c71"}, {file = "widgetsnbextension-4.0.13.tar.gz", hash = "sha256:ffcb67bc9febd10234a362795f643927f4e0c05d9342c727b65d2384f8feacb6"}, @@ -5700,7 +5576,6 @@ description = "Module for decorators, wrappers and monkey patching." optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "wrapt-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a0c23b8319848426f305f9cb0c98a6e32ee68a36264f45948ccf8e7d2b941f8"}, {file = "wrapt-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ca5f060e205f72bec57faae5bd817a1560fcfc4af03f414b08fa29106b7e2d"}, @@ -5776,7 +5651,6 @@ description = "N-D labeled arrays and datasets in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "xarray-2024.11.0-py3-none-any.whl", hash = "sha256:6ee94f63ddcbdd0cf3909d1177f78cdac756640279c0e32ae36819a89cdaba37"}, {file = "xarray-2024.11.0.tar.gz", hash = "sha256:1ccace44573ddb862e210ad3ec204210654d2c750bec11bbe7d842dfc298591f"}, @@ -5792,7 +5666,7 @@ accel = ["bottleneck", "flox", "numba (>=0.54)", "numbagg", "opt_einsum", "scipy complete = ["xarray[accel,etc,io,parallel,viz]"] dev = ["hypothesis", "jinja2", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-env", "pytest-timeout", "pytest-xdist", "ruff", "sphinx", "sphinx_autosummary_accessors", "xarray[complete]"] etc = ["sparse"] -io = ["cftime", "fsspec", "h5netcdf", "netCDF4", "pooch", "pydap", "scipy", "zarr"] +io = ["cftime", "fsspec", "h5netcdf", "netCDF4", "pooch", "pydap ; python_version < \"3.10\"", "scipy", "zarr"] parallel = ["dask[complete]"] viz = ["cartopy", "matplotlib", "nc-time-axis", "seaborn"] @@ -5803,7 +5677,6 @@ description = "Source of XYZ tiles providers" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "xyzservices-2024.9.0-py3-none-any.whl", hash = "sha256:776ae82b78d6e5ca63dd6a94abb054df8130887a4a308473b54a6bd364de8644"}, {file = "xyzservices-2024.9.0.tar.gz", hash = "sha256:68fb8353c9dbba4f1ff6c0f2e5e4e596bb9e1db7f94f4f7dfbcb26e25aa66fde"}, @@ -5816,7 +5689,6 @@ description = "Yet another URL library" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7df647e8edd71f000a5208fe6ff8c382a1de8edfbccdbbfe649d263de07d8c34"}, {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c69697d3adff5aa4f874b19c0e4ed65180ceed6318ec856ebc423aa5850d84f7"}, @@ -5914,7 +5786,6 @@ description = "Yet Another Terminal Spinner" optional = false python-versions = "<4.0,>=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "yaspin-3.1.0-py3-none-any.whl", hash = "sha256:5e3d4dfb547d942cae6565718123f1ecfa93e745b7e51871ad2bbae839e71b73"}, {file = "yaspin-3.1.0.tar.gz", hash = "sha256:7b97c7e257ec598f98cef9878e038bfa619ceb54ac31d61d8ead2b3128f8d7c7"}, @@ -5930,7 +5801,6 @@ description = "An implementation of chunked, compressed, N-dimensional arrays fo optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "zarr-2.18.3-py3-none-any.whl", hash = "sha256:b1f7dfd2496f436745cdd4c7bcf8d3b4bc1dceef5fdd0d589c87130d842496dd"}, {file = "zarr-2.18.3.tar.gz", hash = "sha256:2580d8cb6dd84621771a10d31c4d777dca8a27706a1a89b29f42d2d37e2df5ce"}, @@ -5953,7 +5823,6 @@ description = "Mutable mapping tools" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "zict-3.0.0-py2.py3-none-any.whl", hash = "sha256:5796e36bd0e0cc8cf0fbc1ace6a68912611c1dbd74750a3f3026b9b9d6a327ae"}, {file = "zict-3.0.0.tar.gz", hash = "sha256:e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5"}, @@ -5966,18 +5835,17 @@ description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.9" groups = ["main"] -markers = "python_version <= \"3.11\" or python_version >= \"3.12\"" files = [ {file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"}, {file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +test = ["big-O", "importlib-resources ; python_version < \"3.9\"", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] type = ["pytest-mypy"] [extras] @@ -5986,4 +5854,4 @@ dev = ["jupyterlab", "memory-profiler", "mypy", "notebook", "pandas-stubs", "pre [metadata] lock-version = "2.1" python-versions = ">=3.10,<3.13" -content-hash = "d6919913d2daade4ac3ff27f8813d3286edb5129809eda93f2fc9cb3c032cd88" +content-hash = "e2dc0c54942b1e2261de9c28a0c3750350ff2bb6aa20700a71ec8fba81e1382a" diff --git a/pyproject.toml b/pyproject.toml index af428de94..f6d2cd953 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,6 +84,7 @@ sphinx = "*" pydata-sphinx-theme = "*" sphinx_design = "*" pandas-stubs = "*" +ipykernel = "^6.29.5" [tool.poetry.extras] dev = ["pytest", "pytest-xdist", "pytest-cases", "pytest-cov", "notebook", "jupyterlab", "pre-commit", "ruff", "snakeviz", "mypy", "memory-profiler", "sphinx", "pydata-sphinx-theme", "sphinx_design", "pandas-stubs"] From 15c9b2869c87b75b0c877d05cb59c77f41eabb7f Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Mon, 9 Jun 2025 14:45:18 +1000 Subject: [PATCH 07/41] add adir1 class for anopheles dirus data release --- adir1_explore.ipynb | 451 ++++++++++++++++++++++++++++++++++++ malariagen_data/__init__.py | 1 + malariagen_data/adir1.py | 208 +++++++++++++++++ 3 files changed, 660 insertions(+) create mode 100644 adir1_explore.ipynb create mode 100644 malariagen_data/adir1.py diff --git a/adir1_explore.ipynb b/adir1_explore.ipynb new file mode 100644 index 000000000..c42d93dd5 --- /dev/null +++ b/adir1_explore.ipynb @@ -0,0 +1,451 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import malariagen_data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": [ + "'use strict';\n", + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " const force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + "const JS_MIME_TYPE = 'application/javascript';\n", + " const HTML_MIME_TYPE = 'text/html';\n", + " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", + " const CLASS_NAME = 'output_bokeh rendered_html';\n", + "\n", + " /**\n", + " * Render data to the DOM node\n", + " */\n", + " function render(props, node) {\n", + " const script = document.createElement(\"script\");\n", + " node.appendChild(script);\n", + " }\n", + "\n", + " /**\n", + " * Handle when an output is cleared or removed\n", + " */\n", + " function handleClearOutput(event, handle) {\n", + " function drop(id) {\n", + " const view = Bokeh.index.get_by_id(id)\n", + " if (view != null) {\n", + " view.model.document.clear()\n", + " Bokeh.index.delete(view)\n", + " }\n", + " }\n", + "\n", + " const cell = handle.cell;\n", + "\n", + " const id = cell.output_area._bokeh_element_id;\n", + " const server_id = cell.output_area._bokeh_server_id;\n", + "\n", + " // Clean up Bokeh references\n", + " if (id != null) {\n", + " drop(id)\n", + " }\n", + "\n", + " if (server_id !== undefined) {\n", + " // Clean up Bokeh references\n", + " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", + " cell.notebook.kernel.execute(cmd_clean, {\n", + " iopub: {\n", + " output: function(msg) {\n", + " const id = msg.content.text.trim()\n", + " drop(id)\n", + " }\n", + " }\n", + " });\n", + " // Destroy server and session\n", + " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", + " cell.notebook.kernel.execute(cmd_destroy);\n", + " }\n", + " }\n", + "\n", + " /**\n", + " * Handle when a new output is added\n", + " */\n", + " function handleAddOutput(event, handle) {\n", + " const output_area = handle.output_area;\n", + " const output = handle.output;\n", + "\n", + " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", + " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", + " return\n", + " }\n", + "\n", + " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", + "\n", + " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", + " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", + " // store reference to embed id on output_area\n", + " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", + " }\n", + " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", + " const bk_div = document.createElement(\"div\");\n", + " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", + " const script_attrs = bk_div.children[0].attributes;\n", + " for (let i = 0; i < script_attrs.length; i++) {\n", + " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", + " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", + " }\n", + " // store reference to server id on output_area\n", + " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", + " }\n", + " }\n", + "\n", + " function register_renderer(events, OutputArea) {\n", + "\n", + " function append_mime(data, metadata, element) {\n", + " // create a DOM node to render to\n", + " const toinsert = this.create_output_subarea(\n", + " metadata,\n", + " CLASS_NAME,\n", + " EXEC_MIME_TYPE\n", + " );\n", + " this.keyboard_manager.register_events(toinsert);\n", + " // Render to node\n", + " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", + " render(props, toinsert[toinsert.length - 1]);\n", + " element.append(toinsert);\n", + " return toinsert\n", + " }\n", + "\n", + " /* Handle when an output is cleared or removed */\n", + " events.on('clear_output.CodeCell', handleClearOutput);\n", + " events.on('delete.Cell', handleClearOutput);\n", + "\n", + " /* Handle when a new output is added */\n", + " events.on('output_added.OutputArea', handleAddOutput);\n", + "\n", + " /**\n", + " * Register the mime type and append_mime function with output_area\n", + " */\n", + " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", + " /* Is output safe? */\n", + " safe: true,\n", + " /* Index of renderer in `output_area.display_order` */\n", + " index: 0\n", + " });\n", + " }\n", + "\n", + " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", + " if (root.Jupyter !== undefined) {\n", + " const events = require('base/js/events');\n", + " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", + "\n", + " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", + " register_renderer(events, OutputArea);\n", + " }\n", + " }\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " const NB_LOAD_WARNING = {'data': {'text/html':\n", + " \"
\\n\"+\n", + " \"

\\n\"+\n", + " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", + " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", + " \"

\\n\"+\n", + " \"
    \\n\"+\n", + " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", + " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", + " \"
\\n\"+\n", + " \"\\n\"+\n", + " \"from bokeh.resources import INLINE\\n\"+\n", + " \"output_notebook(resources=INLINE)\\n\"+\n", + " \"\\n\"+\n", + " \"
\"}};\n", + "\n", + " function display_loaded(error = null) {\n", + " const el = document.getElementById(null);\n", + " if (el != null) {\n", + " const html = (() => {\n", + " if (typeof root.Bokeh === \"undefined\") {\n", + " if (error == null) {\n", + " return \"BokehJS is loading ...\";\n", + " } else {\n", + " return \"BokehJS failed to load.\";\n", + " }\n", + " } else {\n", + " const prefix = `BokehJS ${root.Bokeh.version}`;\n", + " if (error == null) {\n", + " return `${prefix} successfully loaded.`;\n", + " } else {\n", + " return `${prefix} encountered errors while loading and may not function as expected.`;\n", + " }\n", + " }\n", + " })();\n", + " el.innerHTML = html;\n", + "\n", + " if (error != null) {\n", + " const wrapper = document.createElement(\"div\");\n", + " wrapper.style.overflow = \"auto\";\n", + " wrapper.style.height = \"5em\";\n", + " wrapper.style.resize = \"vertical\";\n", + " const content = document.createElement(\"div\");\n", + " content.style.fontFamily = \"monospace\";\n", + " content.style.whiteSpace = \"pre-wrap\";\n", + " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", + " content.textContent = error.stack ?? error.toString();\n", + " wrapper.append(content);\n", + " el.append(wrapper);\n", + " }\n", + " } else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(() => display_loaded(error), 100);\n", + " }\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls == null || js_urls.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error(url) {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (let i = 0; i < css_urls.length; i++) {\n", + " const url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " for (let i = 0; i < js_urls.length; i++) {\n", + " const url = js_urls[i];\n", + " const element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", + " const css_urls = [];\n", + "\n", + " const inline_js = [ function(Bokeh) {\n", + " Bokeh.set_log_level(\"info\");\n", + " },\n", + "function(Bokeh) {\n", + " }\n", + " ];\n", + "\n", + " function run_inline_js() {\n", + " if (root.Bokeh !== undefined || force === true) {\n", + " try {\n", + " for (let i = 0; i < inline_js.length; i++) {\n", + " inline_js[i].call(root, root.Bokeh);\n", + " }\n", + "\n", + " } catch (error) {throw error;\n", + " }} else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(run_inline_js, 100);\n", + " } else if (!root._bokeh_failed_load) {\n", + " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", + " root._bokeh_failed_load = true;\n", + " } else if (force !== true) {\n", + " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", + " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", + " }\n", + " }\n", + "\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", + " run_inline_js();\n", + " } else {\n", + " load_libs(css_urls, js_urls, function() {\n", + " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", + " run_inline_js();\n", + " });\n", + " }\n", + "}(window));" + ], + "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Init API\n", + "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "f171c3b7-30c2-4e9f-9133-22206985de07", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'KB672868'" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Are the contigs here? \n", + "chroms = adir1.contigs[:5]\n", + "chroms[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:426\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_sets\u001b[49m\u001b[43m[\u001b[49m\u001b[43mrelease\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n", + "\u001b[0;31mKeyError\u001b[0m: '1.x'", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m snps \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msnp_calls\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868:1000000-2000000\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/snp_data.py:1007\u001b[0m, in \u001b[0;36mAnophelesSnpData.snp_calls\u001b[0;34m(self, region, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, inline_array, chunks, cohort_size, min_cohort_size, max_cohort_size, random_seed)\u001b[0m\n\u001b[1;32m 1001\u001b[0m base_params\u001b[38;5;241m.\u001b[39mvalidate_sample_selection_params(\n\u001b[1;32m 1002\u001b[0m sample_query\u001b[38;5;241m=\u001b[39msample_query, sample_indices\u001b[38;5;241m=\u001b[39msample_indices\n\u001b[1;32m 1003\u001b[0m )\n\u001b[1;32m 1005\u001b[0m \u001b[38;5;66;03m# Normalise parameters.\u001b[39;00m\n\u001b[1;32m 1006\u001b[0m sample_sets_prepped: Tuple[\u001b[38;5;28mstr\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mtuple\u001b[39m(\n\u001b[0;32m-> 1007\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_sets_param\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1008\u001b[0m )\n\u001b[1;32m 1009\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m sample_sets\n\u001b[1;32m 1010\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_indices \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:524\u001b[0m, in \u001b[0;36mAnophelesBase._prep_sample_sets_param\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_prep_sample_sets_param\u001b[39m(\n\u001b[1;32m 518\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets]\n\u001b[1;32m 519\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m List[\u001b[38;5;28mstr\u001b[39m]:\n\u001b[1;32m 520\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Common handling for the `sample_sets` parameter. For convenience, we\u001b[39;00m\n\u001b[1;32m 521\u001b[0m \u001b[38;5;124;03m allow this to be a single sample set, or a list of sample sets, or a\u001b[39;00m\n\u001b[1;32m 522\u001b[0m \u001b[38;5;124;03m release identifier, or a list of release identifiers.\"\"\"\u001b[39;00m\n\u001b[0;32m--> 524\u001b[0m all_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mto_list()\n\u001b[1;32m 526\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_sets \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 527\u001b[0m \u001b[38;5;66;03m# All available sample sets.\u001b[39;00m\n\u001b[1;32m 528\u001b[0m prepped_sample_sets \u001b[38;5;241m=\u001b[39m all_sample_sets\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets(release\u001b[38;5;241m=\u001b[39mr) \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrelease\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mr\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:430\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release]\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n\u001b[0;32m--> 430\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_read_sample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43msingle_release\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrelease\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 431\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release] \u001b[38;5;241m=\u001b[39m df\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(release, Sequence):\n\u001b[1;32m 434\u001b[0m \u001b[38;5;66;03m# Ensure no duplicates.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:376\u001b[0m, in \u001b[0;36mAnophelesBase._read_sample_sets\u001b[0;34m(self, single_release)\u001b[0m\n\u001b[1;32m 373\u001b[0m manifest_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mrelease_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/manifest.tsv\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 375\u001b[0m \u001b[38;5;66;03m# Read the manifest into a pandas dataframe.\u001b[39;00m\n\u001b[0;32m--> 376\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_file\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmanifest_path\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m f:\n\u001b[1;32m 377\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(f, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, na_values\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 379\u001b[0m \u001b[38;5;66;03m# Add a \"release\" column for convenience.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:218\u001b[0m, in \u001b[0;36mAnophelesBase.open_file\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 215\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 216\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mopen_file\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m IO:\n\u001b[1;32m 217\u001b[0m full_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_base_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m--> 218\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_fs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfull_path\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1154\u001b[0m, in \u001b[0;36mAbstractFileSystem.open\u001b[0;34m(self, path, mode, block_size, cache_options, compression, **kwargs)\u001b[0m\n\u001b[1;32m 1152\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1153\u001b[0m ac \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mautocommit\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_intrans)\n\u001b[0;32m-> 1154\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_open\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1155\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1156\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1157\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1158\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mac\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1159\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1160\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1161\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfsspec\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompression\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m compr\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1309\u001b[0m, in \u001b[0;36mGCSFileSystem._open\u001b[0;34m(self, path, mode, block_size, cache_options, acl, consistency, metadata, autocommit, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1307\u001b[0m block_size \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdefault_block_size\n\u001b[1;32m 1308\u001b[0m const \u001b[38;5;241m=\u001b[39m consistency \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconsistency\n\u001b[0;32m-> 1309\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mGCSFile\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1310\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1311\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1312\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1313\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1314\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1315\u001b[0m \u001b[43m \u001b[49m\u001b[43mconsistency\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconst\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1316\u001b[0m \u001b[43m \u001b[49m\u001b[43mmetadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmetadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1317\u001b[0m \u001b[43m \u001b[49m\u001b[43macl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43macl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1318\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1319\u001b[0m \u001b[43m \u001b[49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1320\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1321\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1468\u001b[0m, in \u001b[0;36mGCSFile.__init__\u001b[0;34m(self, gcsfs, path, mode, block_size, autocommit, cache_type, cache_options, acl, consistency, metadata, content_type, timeout, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1466\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAttempt to open a bucket\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 1467\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration \u001b[38;5;241m=\u001b[39m _coalesce_generation(generation, path_generation)\n\u001b[0;32m-> 1468\u001b[0m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;21;43m__init__\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1469\u001b[0m \u001b[43m \u001b[49m\u001b[43mgcsfs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1470\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1471\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1472\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1473\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1474\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_type\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1475\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1476\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1477\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1478\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgcsfs \u001b[38;5;241m=\u001b[39m gcsfs\n\u001b[1;32m 1479\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbucket \u001b[38;5;241m=\u001b[39m bucket\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1510\u001b[0m, in \u001b[0;36mAbstractBufferedFile.__init__\u001b[0;34m(self, fs, path, mode, block_size, autocommit, cache_type, cache_options, size, **kwargs)\u001b[0m\n\u001b[1;32m 1508\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m size\n\u001b[1;32m 1509\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1510\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdetails\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msize\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 1511\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcache \u001b[38;5;241m=\u001b[39m caches[cache_type](\n\u001b[1;32m 1512\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mblocksize, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_fetch_range, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mcache_options\n\u001b[1;32m 1513\u001b[0m )\n\u001b[1;32m 1514\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1504\u001b[0m, in \u001b[0;36mGCSFile.details\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1501\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 1502\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdetails\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 1503\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m-> 1504\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43minfo\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgeneration\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneration\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1505\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:115\u001b[0m, in \u001b[0;36msync_wrapper..wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mwrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m obj \u001b[38;5;129;01mor\u001b[39;00m args[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:100\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 98\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m FSTimeoutError \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mreturn_result\u001b[39;00m\n\u001b[1;32m 99\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 101\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 102\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m return_result\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:55\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(event, coro, result, timeout)\u001b[0m\n\u001b[1;32m 53\u001b[0m coro \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(coro, timeout\u001b[38;5;241m=\u001b[39mtimeout)\n\u001b[1;32m 54\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 55\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 56\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n\u001b[1;32m 57\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m ex\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:797\u001b[0m, in \u001b[0;36mGCSFileSystem._info\u001b[0;34m(self, path, generation, **kwargs)\u001b[0m\n\u001b[1;32m 795\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m 796\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdetail\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m \u001b[38;5;66;03m# Force to true for info\u001b[39;00m\n\u001b[0;32m--> 797\u001b[0m out \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ls(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 798\u001b[0m out0 \u001b[38;5;241m=\u001b[39m [o \u001b[38;5;28;01mfor\u001b[39;00m o \u001b[38;5;129;01min\u001b[39;00m out \u001b[38;5;28;01mif\u001b[39;00m o[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;241m==\u001b[39m path]\n\u001b[1;32m 799\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m out0:\n\u001b[1;32m 800\u001b[0m \u001b[38;5;66;03m# exact hit\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:834\u001b[0m, in \u001b[0;36mGCSFileSystem._ls\u001b[0;34m(self, path, detail, prefix, versions, **kwargs)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 833\u001b[0m out \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m--> 834\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m entry \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_list_objects(\n\u001b[1;32m 835\u001b[0m path, prefix\u001b[38;5;241m=\u001b[39mprefix, versions\u001b[38;5;241m=\u001b[39mversions\n\u001b[1;32m 836\u001b[0m ):\n\u001b[1;32m 837\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m versions \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgeneration\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m entry:\n\u001b[1;32m 838\u001b[0m entry \u001b[38;5;241m=\u001b[39m entry\u001b[38;5;241m.\u001b[39mcopy()\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:549\u001b[0m, in \u001b[0;36mGCSFileSystem._list_objects\u001b[0;34m(self, path, prefix, versions)\u001b[0m\n\u001b[1;32m 547\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (items \u001b[38;5;241m+\u001b[39m pseudodirs):\n\u001b[1;32m 548\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key:\n\u001b[0;32m--> 549\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [\u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_object(path)]\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m []\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:491\u001b[0m, in \u001b[0;36mGCSFileSystem._get_object\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 488\u001b[0m \u001b[38;5;66;03m# Work around various permission settings. Prefer an object get (storage.objects.get), but\u001b[39;00m\n\u001b[1;32m 489\u001b[0m \u001b[38;5;66;03m# fall back to a bucket list + filter to object name (storage.objects.list).\u001b[39;00m\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 491\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call(\n\u001b[1;32m 492\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m/o/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, bucket, key, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, generation\u001b[38;5;241m=\u001b[39mgeneration\n\u001b[1;32m 493\u001b[0m )\n\u001b[1;32m 494\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 495\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mstr\u001b[39m(e)\u001b[38;5;241m.\u001b[39mstartswith(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mForbidden\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:418\u001b[0m, in \u001b[0;36mGCSFileSystem._call\u001b[0;34m(self, method, path, json_out, info_out, *args, **kwargs)\u001b[0m\n\u001b[1;32m 414\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_call\u001b[39m(\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28mself\u001b[39m, method, path, \u001b[38;5;241m*\u001b[39margs, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, info_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 416\u001b[0m ):\n\u001b[1;32m 417\u001b[0m logger\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mmethod\u001b[38;5;241m.\u001b[39mupper()\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00margs\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkwargs\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mheaders\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 418\u001b[0m status, headers, info, contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_request(\n\u001b[1;32m 419\u001b[0m method, path, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 420\u001b[0m )\n\u001b[1;32m 421\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m json_out:\n\u001b[1;32m 422\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m json\u001b[38;5;241m.\u001b[39mloads(contents)\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/decorator.py:221\u001b[0m, in \u001b[0;36mdecorate..fun\u001b[0;34m(*args, **kw)\u001b[0m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m kwsyntax:\n\u001b[1;32m 220\u001b[0m args, kw \u001b[38;5;241m=\u001b[39m fix(args, kw, sig)\n\u001b[0;32m--> 221\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m caller(func, \u001b[38;5;241m*\u001b[39m(extras \u001b[38;5;241m+\u001b[39m args), \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkw)\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:114\u001b[0m, in \u001b[0;36mretry_request\u001b[0;34m(func, retries, *args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m retry \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;28mmin\u001b[39m(random\u001b[38;5;241m.\u001b[39mrandom() \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m2\u001b[39m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m (retry \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m), \u001b[38;5;241m32\u001b[39m))\n\u001b[0;32m--> 114\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (\n\u001b[1;32m 116\u001b[0m HttpError,\n\u001b[1;32m 117\u001b[0m requests\u001b[38;5;241m.\u001b[39mexceptions\u001b[38;5;241m.\u001b[39mRequestException,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 120\u001b[0m aiohttp\u001b[38;5;241m.\u001b[39mclient_exceptions\u001b[38;5;241m.\u001b[39mClientError,\n\u001b[1;32m 121\u001b[0m ) \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 122\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m (\n\u001b[1;32m 123\u001b[0m \u001b[38;5;28misinstance\u001b[39m(e, HttpError)\n\u001b[1;32m 124\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m e\u001b[38;5;241m.\u001b[39mcode \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m400\u001b[39m\n\u001b[1;32m 125\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrequester pays\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m e\u001b[38;5;241m.\u001b[39mmessage\n\u001b[1;32m 126\u001b[0m ):\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:411\u001b[0m, in \u001b[0;36mGCSFileSystem._request\u001b[0;34m(self, method, path, headers, json, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 408\u001b[0m info \u001b[38;5;241m=\u001b[39m r\u001b[38;5;241m.\u001b[39mrequest_info \u001b[38;5;66;03m# for debug only\u001b[39;00m\n\u001b[1;32m 409\u001b[0m contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m r\u001b[38;5;241m.\u001b[39mread()\n\u001b[0;32m--> 411\u001b[0m \u001b[43mvalidate_response\u001b[49m\u001b[43m(\u001b[49m\u001b[43mstatus\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcontents\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 412\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m status, headers, info, contents\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:83\u001b[0m, in \u001b[0;36mvalidate_response\u001b[0;34m(status, content, path, args)\u001b[0m\n\u001b[1;32m 81\u001b[0m path \u001b[38;5;241m=\u001b[39m path\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;241m*\u001b[39m[quote(p) \u001b[38;5;28;01mfor\u001b[39;00m p \u001b[38;5;129;01min\u001b[39;00m args])\n\u001b[1;32m 82\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m status \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m404\u001b[39m:\n\u001b[0;32m---> 83\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(path)\n\u001b[1;32m 85\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(content, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdecode\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", + "\u001b[0;31mFileNotFoundError\u001b[0m: b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv" + ] + } + ], + "source": [ + "snps = adir1.snp_calls(region=\"KB672868:1000000-2000000\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/malariagen_data/__init__.py b/malariagen_data/__init__.py index dfa555aa7..6bc938825 100644 --- a/malariagen_data/__init__.py +++ b/malariagen_data/__init__.py @@ -1,5 +1,6 @@ # flake8: noqa from .af1 import Af1 +from .adir1 import Adir1 from .ag3 import Ag3 from .amin1 import Amin1 from .anopheles import AnophelesDataResource, Region diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py new file mode 100644 index 000000000..9b053ca62 --- /dev/null +++ b/malariagen_data/adir1.py @@ -0,0 +1,208 @@ +import sys + +import plotly.express as px # type: ignore + +import malariagen_data +from .anopheles import AnophelesDataResource + +MAJOR_VERSION_NUMBER = 1 +MAJOR_VERSION_PATH = "v1.x" +CONFIG_PATH = "v1.x-config.json" +GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/" +GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/v1.x/staging" +GCS_REGION_URLS = { + "us-central1": "gs://vo_adir_production_us_central1", +} +# XPEHH_GWSS_CACHE_NAME = "adir1_xpehh_gwss_v1" +# IHS_GWSS_CACHE_NAME = "adir1_ihs_gwss_v1" + +TAXON_PALETTE = px.colors.qualitative.Plotly +TAXON_COLORS = { + "dirus": TAXON_PALETTE[0], +} + + +class Adir1(AnophelesDataResource): + """Provides access to data from Adir1.x releases. + + Parameters + ---------- + url : str, optional + Base path to data. Defaults to use Google Cloud Storage, or can + be a local path on your file system if data have been downloaded. + site_filters_analysis : str, optional + Site filters analysis version. + bokeh_output_notebook : bool, optional + If True (default), configure bokeh to output plots to the notebook. + results_cache : str, optional + Path to directory on local file system to save results. + log : str or stream, optional + File path or stream output for logging messages. + debug : bool, optional + Set to True to enable debug level logging. + show_progress : bool, optional + If True, show a progress bar during longer-running computations. The default can be overridden using an environmental variable named MGEN_SHOW_PROGRESS. + check_location : bool, optional + If True, use ipinfo to check the location of the client system. + **kwargs + Passed through to fsspec when setting up file system access. + + Examples + -------- + Access data from Google Cloud Storage (default): + + >>> import malariagen_data + >>> adir1 = malariagen_data.Adir1() + + Access data downloaded to a local file system: + + >>> adir1 = malariagen_data.Adir1("/local/path/to/vo_adir_release/") + + Access data from Google Cloud Storage, with caching on the local file system + in a directory named "gcs_cache": + + >>> adir1 = malariagen_data.Adir1( + ... "simplecache::gs://vo_adir_production_us_central1", + ... simplecache=dict(cache_storage="gcs_cache"), + ... ) + + Set up caching of some longer-running computations on the local file system, + in a directory named "results_cache": + + >>> adir1 = malariagen_data.Adir1(results_cache="results_cache") + + """ + + # _xpehh_gwss_cache_name = XPEHH_GWSS_CACHE_NAME + # _ihs_gwss_cache_name = IHS_GWSS_CACHE_NAME + + def __init__( + self, + url=None, + bokeh_output_notebook=True, + results_cache=None, + log=sys.stdout, + debug=False, + show_progress=None, + check_location=True, + cohorts_analysis=None, + site_filters_analysis=None, + discordant_read_calls_analysis=None, + pre=False, + tqdm_class=None, + **storage_options, # used by fsspec via init_filesystem() + ): + super().__init__( + url=url, + config_path=CONFIG_PATH, + cohorts_analysis=cohorts_analysis, + aim_analysis=None, + aim_metadata_dtype=None, + aim_ids=None, + aim_palettes=None, + site_filters_analysis=site_filters_analysis, + discordant_read_calls_analysis=discordant_read_calls_analysis, + default_site_mask="funestus", + default_phasing_analysis="funestus", + default_coverage_calls_analysis="funestus", + bokeh_output_notebook=bokeh_output_notebook, + results_cache=results_cache, + log=log, + debug=debug, + show_progress=show_progress, + check_location=check_location, + pre=pre, + gcs_default_url=GCS_DEFAULT_URL, + gcs_region_urls=GCS_REGION_URLS, + major_version_number=MAJOR_VERSION_NUMBER, + major_version_path=MAJOR_VERSION_PATH, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + storage_options=storage_options, # used by fsspec via init_filesystem() + tqdm_class=tqdm_class, + taxon_colors=TAXON_COLORS, + virtual_contigs=None, + gene_names=None, + inversion_tag_path=None, + ) + + def __repr__(self): + text = ( + f"\n" + f"Storage URL : {self._url}\n" + f"Data releases available : {', '.join(self.releases)}\n" + f"Results cache : {self._results_cache}\n" + # f"Cohorts analysis : {self._cohorts_analysis}\n" + f"Site filters analysis : {self._site_filters_analysis}\n" + f"Software version : malariagen_data {malariagen_data.__version__}\n" + f"Client location : {self.client_location}\n" + f"---\n" + f"Please note that data are subject to terms of use,\n" + f"for more information see https://www.malariagen.net/data\n" + f"or contact support@malariagen.net. For API documentation see \n" + f"https://malariagen.github.io/malariagen-data-python/v{malariagen_data.__version__}/Adir1.html" + ) + return text + + def _repr_html_(self): + html = f""" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MalariaGEN Adir1 API client
+ Please note that data are subject to terms of use, + for more information see + the MalariaGEN website or contact support@malariagen.net. + See also the Adir1 API docs. +
+ Storage URL + {self._url}
+ Data releases available + {', '.join(self.releases)}
+ Results cache + {self._results_cache}
+ Cohorts analysis + {self._cohorts_analysis}
+ Site filters analysis + {self._site_filters_analysis}
+ Software version + malariagen_data {malariagen_data.__version__}
+ Client location + {self.client_location}
+ """ + return html From 624a21f3c38e70ea3968fe893dea1e8dd2caafd3 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 10 Jun 2025 15:03:15 +1000 Subject: [PATCH 08/41] add notebook exploring / troubleshooting adir1 --- notebooks/adir1_explore.ipynb | 483 ++++++++++++++++++++++++++++++++++ 1 file changed, 483 insertions(+) create mode 100644 notebooks/adir1_explore.ipynb diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb new file mode 100644 index 000000000..1fa71882d --- /dev/null +++ b/notebooks/adir1_explore.ipynb @@ -0,0 +1,483 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import malariagen_data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": [ + "'use strict';\n", + "(function(root) {\n", + " function now() {\n", + " return new Date();\n", + " }\n", + "\n", + " const force = true;\n", + "\n", + " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", + " root._bokeh_onload_callbacks = [];\n", + " root._bokeh_is_loading = undefined;\n", + " }\n", + "\n", + "const JS_MIME_TYPE = 'application/javascript';\n", + " const HTML_MIME_TYPE = 'text/html';\n", + " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", + " const CLASS_NAME = 'output_bokeh rendered_html';\n", + "\n", + " /**\n", + " * Render data to the DOM node\n", + " */\n", + " function render(props, node) {\n", + " const script = document.createElement(\"script\");\n", + " node.appendChild(script);\n", + " }\n", + "\n", + " /**\n", + " * Handle when an output is cleared or removed\n", + " */\n", + " function handleClearOutput(event, handle) {\n", + " function drop(id) {\n", + " const view = Bokeh.index.get_by_id(id)\n", + " if (view != null) {\n", + " view.model.document.clear()\n", + " Bokeh.index.delete(view)\n", + " }\n", + " }\n", + "\n", + " const cell = handle.cell;\n", + "\n", + " const id = cell.output_area._bokeh_element_id;\n", + " const server_id = cell.output_area._bokeh_server_id;\n", + "\n", + " // Clean up Bokeh references\n", + " if (id != null) {\n", + " drop(id)\n", + " }\n", + "\n", + " if (server_id !== undefined) {\n", + " // Clean up Bokeh references\n", + " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", + " cell.notebook.kernel.execute(cmd_clean, {\n", + " iopub: {\n", + " output: function(msg) {\n", + " const id = msg.content.text.trim()\n", + " drop(id)\n", + " }\n", + " }\n", + " });\n", + " // Destroy server and session\n", + " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", + " cell.notebook.kernel.execute(cmd_destroy);\n", + " }\n", + " }\n", + "\n", + " /**\n", + " * Handle when a new output is added\n", + " */\n", + " function handleAddOutput(event, handle) {\n", + " const output_area = handle.output_area;\n", + " const output = handle.output;\n", + "\n", + " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", + " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", + " return\n", + " }\n", + "\n", + " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", + "\n", + " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", + " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", + " // store reference to embed id on output_area\n", + " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", + " }\n", + " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", + " const bk_div = document.createElement(\"div\");\n", + " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", + " const script_attrs = bk_div.children[0].attributes;\n", + " for (let i = 0; i < script_attrs.length; i++) {\n", + " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", + " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", + " }\n", + " // store reference to server id on output_area\n", + " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", + " }\n", + " }\n", + "\n", + " function register_renderer(events, OutputArea) {\n", + "\n", + " function append_mime(data, metadata, element) {\n", + " // create a DOM node to render to\n", + " const toinsert = this.create_output_subarea(\n", + " metadata,\n", + " CLASS_NAME,\n", + " EXEC_MIME_TYPE\n", + " );\n", + " this.keyboard_manager.register_events(toinsert);\n", + " // Render to node\n", + " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", + " render(props, toinsert[toinsert.length - 1]);\n", + " element.append(toinsert);\n", + " return toinsert\n", + " }\n", + "\n", + " /* Handle when an output is cleared or removed */\n", + " events.on('clear_output.CodeCell', handleClearOutput);\n", + " events.on('delete.Cell', handleClearOutput);\n", + "\n", + " /* Handle when a new output is added */\n", + " events.on('output_added.OutputArea', handleAddOutput);\n", + "\n", + " /**\n", + " * Register the mime type and append_mime function with output_area\n", + " */\n", + " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", + " /* Is output safe? */\n", + " safe: true,\n", + " /* Index of renderer in `output_area.display_order` */\n", + " index: 0\n", + " });\n", + " }\n", + "\n", + " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", + " if (root.Jupyter !== undefined) {\n", + " const events = require('base/js/events');\n", + " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", + "\n", + " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", + " register_renderer(events, OutputArea);\n", + " }\n", + " }\n", + " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", + " root._bokeh_timeout = Date.now() + 5000;\n", + " root._bokeh_failed_load = false;\n", + " }\n", + "\n", + " const NB_LOAD_WARNING = {'data': {'text/html':\n", + " \"
\\n\"+\n", + " \"

\\n\"+\n", + " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", + " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", + " \"

\\n\"+\n", + " \"
    \\n\"+\n", + " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", + " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", + " \"
\\n\"+\n", + " \"\\n\"+\n", + " \"from bokeh.resources import INLINE\\n\"+\n", + " \"output_notebook(resources=INLINE)\\n\"+\n", + " \"\\n\"+\n", + " \"
\"}};\n", + "\n", + " function display_loaded(error = null) {\n", + " const el = document.getElementById(null);\n", + " if (el != null) {\n", + " const html = (() => {\n", + " if (typeof root.Bokeh === \"undefined\") {\n", + " if (error == null) {\n", + " return \"BokehJS is loading ...\";\n", + " } else {\n", + " return \"BokehJS failed to load.\";\n", + " }\n", + " } else {\n", + " const prefix = `BokehJS ${root.Bokeh.version}`;\n", + " if (error == null) {\n", + " return `${prefix} successfully loaded.`;\n", + " } else {\n", + " return `${prefix} encountered errors while loading and may not function as expected.`;\n", + " }\n", + " }\n", + " })();\n", + " el.innerHTML = html;\n", + "\n", + " if (error != null) {\n", + " const wrapper = document.createElement(\"div\");\n", + " wrapper.style.overflow = \"auto\";\n", + " wrapper.style.height = \"5em\";\n", + " wrapper.style.resize = \"vertical\";\n", + " const content = document.createElement(\"div\");\n", + " content.style.fontFamily = \"monospace\";\n", + " content.style.whiteSpace = \"pre-wrap\";\n", + " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", + " content.textContent = error.stack ?? error.toString();\n", + " wrapper.append(content);\n", + " el.append(wrapper);\n", + " }\n", + " } else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(() => display_loaded(error), 100);\n", + " }\n", + " }\n", + "\n", + " function run_callbacks() {\n", + " try {\n", + " root._bokeh_onload_callbacks.forEach(function(callback) {\n", + " if (callback != null)\n", + " callback();\n", + " });\n", + " } finally {\n", + " delete root._bokeh_onload_callbacks\n", + " }\n", + " console.debug(\"Bokeh: all callbacks have finished\");\n", + " }\n", + "\n", + " function load_libs(css_urls, js_urls, callback) {\n", + " if (css_urls == null) css_urls = [];\n", + " if (js_urls == null) js_urls = [];\n", + "\n", + " root._bokeh_onload_callbacks.push(callback);\n", + " if (root._bokeh_is_loading > 0) {\n", + " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", + " return null;\n", + " }\n", + " if (js_urls == null || js_urls.length === 0) {\n", + " run_callbacks();\n", + " return null;\n", + " }\n", + " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", + " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", + "\n", + " function on_load() {\n", + " root._bokeh_is_loading--;\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", + " run_callbacks()\n", + " }\n", + " }\n", + "\n", + " function on_error(url) {\n", + " console.error(\"failed to load \" + url);\n", + " }\n", + "\n", + " for (let i = 0; i < css_urls.length; i++) {\n", + " const url = css_urls[i];\n", + " const element = document.createElement(\"link\");\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.rel = \"stylesheet\";\n", + " element.type = \"text/css\";\n", + " element.href = url;\n", + " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " for (let i = 0; i < js_urls.length; i++) {\n", + " const url = js_urls[i];\n", + " const element = document.createElement('script');\n", + " element.onload = on_load;\n", + " element.onerror = on_error.bind(null, url);\n", + " element.async = false;\n", + " element.src = url;\n", + " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", + " document.head.appendChild(element);\n", + " }\n", + " };\n", + "\n", + " function inject_raw_css(css) {\n", + " const element = document.createElement(\"style\");\n", + " element.appendChild(document.createTextNode(css));\n", + " document.body.appendChild(element);\n", + " }\n", + "\n", + " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", + " const css_urls = [];\n", + "\n", + " const inline_js = [ function(Bokeh) {\n", + " Bokeh.set_log_level(\"info\");\n", + " },\n", + "function(Bokeh) {\n", + " }\n", + " ];\n", + "\n", + " function run_inline_js() {\n", + " if (root.Bokeh !== undefined || force === true) {\n", + " try {\n", + " for (let i = 0; i < inline_js.length; i++) {\n", + " inline_js[i].call(root, root.Bokeh);\n", + " }\n", + "\n", + " } catch (error) {throw error;\n", + " }} else if (Date.now() < root._bokeh_timeout) {\n", + " setTimeout(run_inline_js, 100);\n", + " } else if (!root._bokeh_failed_load) {\n", + " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", + " root._bokeh_failed_load = true;\n", + " } else if (force !== true) {\n", + " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", + " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", + " }\n", + " }\n", + "\n", + " if (root._bokeh_is_loading === 0) {\n", + " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", + " run_inline_js();\n", + " } else {\n", + " load_libs(css_urls, js_urls, function() {\n", + " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", + " run_inline_js();\n", + " });\n", + " }\n", + "}(window));" + ], + "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MalariaGEN Adir1 API client
\n", + " Please note that data are subject to terms of use,\n", + " for more information see \n", + " the MalariaGEN website or contact support@malariagen.net.\n", + " See also the Adir1 API docs.\n", + "
\n", + " Storage URL\n", + " gs://vo_adir_production_us_central1/
\n", + " Data releases available\n", + " 1.x
\n", + " Results cache\n", + " /Users/dennistpw/Projects/malariagen_results
\n", + " Cohorts analysis\n", + " noneyet
\n", + " Site filters analysis\n", + " sc_20250610
\n", + " Software version\n", + " malariagen_data 13.3.0.post33+90e72d5a
\n", + " Client location\n", + " Queensland, Australia
\n", + " " + ], + "text/plain": [ + "\n", + "Storage URL : gs://vo_adir_production_us_central1/\n", + "Data releases available : 1.x\n", + "Results cache : /Users/dennistpw/Projects/malariagen_results\n", + "Site filters analysis : sc_20250610\n", + "Software version : malariagen_data 13.3.0.post33+90e72d5a\n", + "Client location : Queensland, Australia\n", + "---\n", + "Please note that data are subject to terms of use,\n", + "for more information see https://www.malariagen.net/data\n", + "or contact support@malariagen.net. For API documentation see \n", + "https://malariagen.github.io/malariagen-data-python/v13.3.0.post33+90e72d5a/Adir1.html" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Init Adir1 API\n", + "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')\n", + "adir1" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "snps = adir1.snp_calls(region=\"KB672868:1000000-1010000\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", + "metadata": {}, + "outputs": [], + "source": [ + "adir1.pca(region = \"KB672868\", n_snps = 100_000, " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 6cbce3aeeb82b43fdd7888bca6fb33c570f83b2d Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 10 Jun 2025 15:21:09 +1000 Subject: [PATCH 09/41] comment out TOU lookups for metadata --- adir1_explore.ipynb | 451 ----------------------- malariagen_data/anoph/sample_metadata.py | 13 +- notebooks/adir1_explore.ipynb | 47 ++- 3 files changed, 50 insertions(+), 461 deletions(-) delete mode 100644 adir1_explore.ipynb diff --git a/adir1_explore.ipynb b/adir1_explore.ipynb deleted file mode 100644 index c42d93dd5..000000000 --- a/adir1_explore.ipynb +++ /dev/null @@ -1,451 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import malariagen_data" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "application/javascript": [ - "'use strict';\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " const force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - "const JS_MIME_TYPE = 'application/javascript';\n", - " const HTML_MIME_TYPE = 'text/html';\n", - " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " const CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " const script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " function drop(id) {\n", - " const view = Bokeh.index.get_by_id(id)\n", - " if (view != null) {\n", - " view.model.document.clear()\n", - " Bokeh.index.delete(view)\n", - " }\n", - " }\n", - "\n", - " const cell = handle.cell;\n", - "\n", - " const id = cell.output_area._bokeh_element_id;\n", - " const server_id = cell.output_area._bokeh_server_id;\n", - "\n", - " // Clean up Bokeh references\n", - " if (id != null) {\n", - " drop(id)\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd_clean, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " const id = msg.content.text.trim()\n", - " drop(id)\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd_destroy);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " const output_area = handle.output_area;\n", - " const output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " const bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " const script_attrs = bk_div.children[0].attributes;\n", - " for (let i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " const toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " const events = require('base/js/events');\n", - " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " const NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded(error = null) {\n", - " const el = document.getElementById(null);\n", - " if (el != null) {\n", - " const html = (() => {\n", - " if (typeof root.Bokeh === \"undefined\") {\n", - " if (error == null) {\n", - " return \"BokehJS is loading ...\";\n", - " } else {\n", - " return \"BokehJS failed to load.\";\n", - " }\n", - " } else {\n", - " const prefix = `BokehJS ${root.Bokeh.version}`;\n", - " if (error == null) {\n", - " return `${prefix} successfully loaded.`;\n", - " } else {\n", - " return `${prefix} encountered errors while loading and may not function as expected.`;\n", - " }\n", - " }\n", - " })();\n", - " el.innerHTML = html;\n", - "\n", - " if (error != null) {\n", - " const wrapper = document.createElement(\"div\");\n", - " wrapper.style.overflow = \"auto\";\n", - " wrapper.style.height = \"5em\";\n", - " wrapper.style.resize = \"vertical\";\n", - " const content = document.createElement(\"div\");\n", - " content.style.fontFamily = \"monospace\";\n", - " content.style.whiteSpace = \"pre-wrap\";\n", - " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", - " content.textContent = error.stack ?? error.toString();\n", - " wrapper.append(content);\n", - " el.append(wrapper);\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(() => display_loaded(error), 100);\n", - " }\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error(url) {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (let i = 0; i < css_urls.length; i++) {\n", - " const url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (let i = 0; i < js_urls.length; i++) {\n", - " const url = js_urls[i];\n", - " const element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", - " const css_urls = [];\n", - "\n", - " const inline_js = [ function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - "function(Bokeh) {\n", - " }\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " if (root.Bokeh !== undefined || force === true) {\n", - " try {\n", - " for (let i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }\n", - "\n", - " } catch (error) {throw error;\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "# Init API\n", - "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "f171c3b7-30c2-4e9f-9133-22206985de07", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "text/plain": [ - "'KB672868'" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Are the contigs here? \n", - "chroms = adir1.contigs[:5]\n", - "chroms[1]" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "ename": "FileNotFoundError", - "evalue": "b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:426\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 425\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_sets\u001b[49m\u001b[43m[\u001b[49m\u001b[43mrelease\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n", - "\u001b[0;31mKeyError\u001b[0m: '1.x'", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m snps \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msnp_calls\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868:1000000-2000000\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/snp_data.py:1007\u001b[0m, in \u001b[0;36mAnophelesSnpData.snp_calls\u001b[0;34m(self, region, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, inline_array, chunks, cohort_size, min_cohort_size, max_cohort_size, random_seed)\u001b[0m\n\u001b[1;32m 1001\u001b[0m base_params\u001b[38;5;241m.\u001b[39mvalidate_sample_selection_params(\n\u001b[1;32m 1002\u001b[0m sample_query\u001b[38;5;241m=\u001b[39msample_query, sample_indices\u001b[38;5;241m=\u001b[39msample_indices\n\u001b[1;32m 1003\u001b[0m )\n\u001b[1;32m 1005\u001b[0m \u001b[38;5;66;03m# Normalise parameters.\u001b[39;00m\n\u001b[1;32m 1006\u001b[0m sample_sets_prepped: Tuple[\u001b[38;5;28mstr\u001b[39m, \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mtuple\u001b[39m(\n\u001b[0;32m-> 1007\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_sets_param\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1008\u001b[0m )\n\u001b[1;32m 1009\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m sample_sets\n\u001b[1;32m 1010\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_indices \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:524\u001b[0m, in \u001b[0;36mAnophelesBase._prep_sample_sets_param\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 517\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_prep_sample_sets_param\u001b[39m(\n\u001b[1;32m 518\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;241m*\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets]\n\u001b[1;32m 519\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m List[\u001b[38;5;28mstr\u001b[39m]:\n\u001b[1;32m 520\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Common handling for the `sample_sets` parameter. For convenience, we\u001b[39;00m\n\u001b[1;32m 521\u001b[0m \u001b[38;5;124;03m allow this to be a single sample set, or a list of sample sets, or a\u001b[39;00m\n\u001b[1;32m 522\u001b[0m \u001b[38;5;124;03m release identifier, or a list of release identifiers.\"\"\"\u001b[39;00m\n\u001b[0;32m--> 524\u001b[0m all_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mto_list()\n\u001b[1;32m 526\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_sets \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 527\u001b[0m \u001b[38;5;66;03m# All available sample sets.\u001b[39;00m\n\u001b[1;32m 528\u001b[0m prepped_sample_sets \u001b[38;5;241m=\u001b[39m all_sample_sets\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets(release\u001b[38;5;241m=\u001b[39mr) \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:439\u001b[0m, in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[1;32m 435\u001b[0m releases \u001b[38;5;241m=\u001b[39m \u001b[38;5;28msorted\u001b[39m(\u001b[38;5;28mset\u001b[39m(release))\n\u001b[1;32m 437\u001b[0m \u001b[38;5;66;03m# Retrieve and concatenate sample sets from multiple releases.\u001b[39;00m\n\u001b[1;32m 438\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mconcat(\n\u001b[0;32m--> 439\u001b[0m [\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrelease\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mr\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m r \u001b[38;5;129;01min\u001b[39;00m releases],\n\u001b[1;32m 440\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m0\u001b[39m,\n\u001b[1;32m 441\u001b[0m ignore_index\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m,\n\u001b[1;32m 442\u001b[0m )\n\u001b[1;32m 444\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 445\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:430\u001b[0m, in \u001b[0;36mAnophelesBase.sample_sets\u001b[0;34m(self, release)\u001b[0m\n\u001b[1;32m 426\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release]\n\u001b[1;32m 428\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 429\u001b[0m \u001b[38;5;66;03m# Read and cache dataframe for performance.\u001b[39;00m\n\u001b[0;32m--> 430\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_read_sample_sets\u001b[49m\u001b[43m(\u001b[49m\u001b[43msingle_release\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrelease\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 431\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_sets[release] \u001b[38;5;241m=\u001b[39m df\n\u001b[1;32m 433\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(release, Sequence):\n\u001b[1;32m 434\u001b[0m \u001b[38;5;66;03m# Ensure no duplicates.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:376\u001b[0m, in \u001b[0;36mAnophelesBase._read_sample_sets\u001b[0;34m(self, single_release)\u001b[0m\n\u001b[1;32m 373\u001b[0m manifest_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mrelease_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/manifest.tsv\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 375\u001b[0m \u001b[38;5;66;03m# Read the manifest into a pandas dataframe.\u001b[39;00m\n\u001b[0;32m--> 376\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen_file\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmanifest_path\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;28;01mas\u001b[39;00m f:\n\u001b[1;32m 377\u001b[0m df \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mread_csv(f, sep\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\t\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, na_values\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 379\u001b[0m \u001b[38;5;66;03m# Add a \"release\" column for convenience.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:218\u001b[0m, in \u001b[0;36mAnophelesBase.open_file\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 215\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 216\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mopen_file\u001b[39m(\u001b[38;5;28mself\u001b[39m, path: \u001b[38;5;28mstr\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m IO:\n\u001b[1;32m 217\u001b[0m full_path \u001b[38;5;241m=\u001b[39m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_base_path\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m/\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m--> 218\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_fs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mopen\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfull_path\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1154\u001b[0m, in \u001b[0;36mAbstractFileSystem.open\u001b[0;34m(self, path, mode, block_size, cache_options, compression, **kwargs)\u001b[0m\n\u001b[1;32m 1152\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1153\u001b[0m ac \u001b[38;5;241m=\u001b[39m kwargs\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mautocommit\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_intrans)\n\u001b[0;32m-> 1154\u001b[0m f \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_open\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1155\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1156\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1157\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1158\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mac\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1159\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1160\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1161\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1162\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m compression \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mfsspec\u001b[39;00m\u001b[38;5;21;01m.\u001b[39;00m\u001b[38;5;21;01mcompression\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m compr\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1309\u001b[0m, in \u001b[0;36mGCSFileSystem._open\u001b[0;34m(self, path, mode, block_size, cache_options, acl, consistency, metadata, autocommit, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1307\u001b[0m block_size \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdefault_block_size\n\u001b[1;32m 1308\u001b[0m const \u001b[38;5;241m=\u001b[39m consistency \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mconsistency\n\u001b[0;32m-> 1309\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mGCSFile\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1310\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1311\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1312\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1313\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1314\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1315\u001b[0m \u001b[43m \u001b[49m\u001b[43mconsistency\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mconst\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1316\u001b[0m \u001b[43m \u001b[49m\u001b[43mmetadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmetadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1317\u001b[0m \u001b[43m \u001b[49m\u001b[43macl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43macl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1318\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1319\u001b[0m \u001b[43m \u001b[49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfixed_key_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1320\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1321\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1468\u001b[0m, in \u001b[0;36mGCSFile.__init__\u001b[0;34m(self, gcsfs, path, mode, block_size, autocommit, cache_type, cache_options, acl, consistency, metadata, content_type, timeout, fixed_key_metadata, generation, **kwargs)\u001b[0m\n\u001b[1;32m 1466\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mAttempt to open a bucket\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 1467\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgeneration \u001b[38;5;241m=\u001b[39m _coalesce_generation(generation, path_generation)\n\u001b[0;32m-> 1468\u001b[0m \u001b[38;5;28;43msuper\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[38;5;21;43m__init__\u001b[39;49m\u001b[43m(\u001b[49m\n\u001b[1;32m 1469\u001b[0m \u001b[43m \u001b[49m\u001b[43mgcsfs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1470\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1471\u001b[0m \u001b[43m \u001b[49m\u001b[43mmode\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1472\u001b[0m \u001b[43m \u001b[49m\u001b[43mblock_size\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1473\u001b[0m \u001b[43m \u001b[49m\u001b[43mautocommit\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mautocommit\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1474\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_type\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_type\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1475\u001b[0m \u001b[43m \u001b[49m\u001b[43mcache_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcache_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1476\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 1477\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1478\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mgcsfs \u001b[38;5;241m=\u001b[39m gcsfs\n\u001b[1;32m 1479\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mbucket \u001b[38;5;241m=\u001b[39m bucket\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/spec.py:1510\u001b[0m, in \u001b[0;36mAbstractBufferedFile.__init__\u001b[0;34m(self, fs, path, mode, block_size, autocommit, cache_type, cache_options, size, **kwargs)\u001b[0m\n\u001b[1;32m 1508\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m size\n\u001b[1;32m 1509\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 1510\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdetails\u001b[49m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msize\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n\u001b[1;32m 1511\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcache \u001b[38;5;241m=\u001b[39m caches[cache_type](\n\u001b[1;32m 1512\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mblocksize, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_fetch_range, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msize, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mcache_options\n\u001b[1;32m 1513\u001b[0m )\n\u001b[1;32m 1514\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:1504\u001b[0m, in \u001b[0;36mGCSFile.details\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1501\u001b[0m \u001b[38;5;129m@property\u001b[39m\n\u001b[1;32m 1502\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mdetails\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[1;32m 1503\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m-> 1504\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mfs\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43minfo\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mgeneration\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneration\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1505\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_details\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:115\u001b[0m, in \u001b[0;36msync_wrapper..wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;129m@functools\u001b[39m\u001b[38;5;241m.\u001b[39mwraps(func)\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mwrapper\u001b[39m(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 114\u001b[0m \u001b[38;5;28mself\u001b[39m \u001b[38;5;241m=\u001b[39m obj \u001b[38;5;129;01mor\u001b[39;00m args[\u001b[38;5;241m0\u001b[39m]\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:100\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 98\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m FSTimeoutError \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mreturn_result\u001b[39;00m\n\u001b[1;32m 99\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(return_result, \u001b[38;5;167;01mBaseException\u001b[39;00m):\n\u001b[0;32m--> 100\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m return_result\n\u001b[1;32m 101\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 102\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m return_result\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/fsspec/asyn.py:55\u001b[0m, in \u001b[0;36m_runner\u001b[0;34m(event, coro, result, timeout)\u001b[0m\n\u001b[1;32m 53\u001b[0m coro \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(coro, timeout\u001b[38;5;241m=\u001b[39mtimeout)\n\u001b[1;32m 54\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 55\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m coro\n\u001b[1;32m 56\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m ex:\n\u001b[1;32m 57\u001b[0m result[\u001b[38;5;241m0\u001b[39m] \u001b[38;5;241m=\u001b[39m ex\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:797\u001b[0m, in \u001b[0;36mGCSFileSystem._info\u001b[0;34m(self, path, generation, **kwargs)\u001b[0m\n\u001b[1;32m 795\u001b[0m \u001b[38;5;28;01mpass\u001b[39;00m\n\u001b[1;32m 796\u001b[0m kwargs[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdetail\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mTrue\u001b[39;00m \u001b[38;5;66;03m# Force to true for info\u001b[39;00m\n\u001b[0;32m--> 797\u001b[0m out \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_ls(path, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 798\u001b[0m out0 \u001b[38;5;241m=\u001b[39m [o \u001b[38;5;28;01mfor\u001b[39;00m o \u001b[38;5;129;01min\u001b[39;00m out \u001b[38;5;28;01mif\u001b[39;00m o[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mname\u001b[39m\u001b[38;5;124m\"\u001b[39m]\u001b[38;5;241m.\u001b[39mrstrip(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m/\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;241m==\u001b[39m path]\n\u001b[1;32m 799\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m out0:\n\u001b[1;32m 800\u001b[0m \u001b[38;5;66;03m# exact hit\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:834\u001b[0m, in \u001b[0;36mGCSFileSystem._ls\u001b[0;34m(self, path, detail, prefix, versions, **kwargs)\u001b[0m\n\u001b[1;32m 832\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 833\u001b[0m out \u001b[38;5;241m=\u001b[39m []\n\u001b[0;32m--> 834\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m entry \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_list_objects(\n\u001b[1;32m 835\u001b[0m path, prefix\u001b[38;5;241m=\u001b[39mprefix, versions\u001b[38;5;241m=\u001b[39mversions\n\u001b[1;32m 836\u001b[0m ):\n\u001b[1;32m 837\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m versions \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgeneration\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m entry:\n\u001b[1;32m 838\u001b[0m entry \u001b[38;5;241m=\u001b[39m entry\u001b[38;5;241m.\u001b[39mcopy()\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:549\u001b[0m, in \u001b[0;36mGCSFileSystem._list_objects\u001b[0;34m(self, path, prefix, versions)\u001b[0m\n\u001b[1;32m 547\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (items \u001b[38;5;241m+\u001b[39m pseudodirs):\n\u001b[1;32m 548\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m key:\n\u001b[0;32m--> 549\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m [\u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_object(path)]\n\u001b[1;32m 550\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 551\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m []\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:491\u001b[0m, in \u001b[0;36mGCSFileSystem._get_object\u001b[0;34m(self, path)\u001b[0m\n\u001b[1;32m 488\u001b[0m \u001b[38;5;66;03m# Work around various permission settings. Prefer an object get (storage.objects.get), but\u001b[39;00m\n\u001b[1;32m 489\u001b[0m \u001b[38;5;66;03m# fall back to a bucket list + filter to object name (storage.objects.list).\u001b[39;00m\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 491\u001b[0m res \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_call(\n\u001b[1;32m 492\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mGET\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m/o/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, bucket, key, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, generation\u001b[38;5;241m=\u001b[39mgeneration\n\u001b[1;32m 493\u001b[0m )\n\u001b[1;32m 494\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 495\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mstr\u001b[39m(e)\u001b[38;5;241m.\u001b[39mstartswith(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mForbidden\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:418\u001b[0m, in \u001b[0;36mGCSFileSystem._call\u001b[0;34m(self, method, path, json_out, info_out, *args, **kwargs)\u001b[0m\n\u001b[1;32m 414\u001b[0m \u001b[38;5;28;01masync\u001b[39;00m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m_call\u001b[39m(\n\u001b[1;32m 415\u001b[0m \u001b[38;5;28mself\u001b[39m, method, path, \u001b[38;5;241m*\u001b[39margs, json_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, info_out\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mFalse\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 416\u001b[0m ):\n\u001b[1;32m 417\u001b[0m logger\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mmethod\u001b[38;5;241m.\u001b[39mupper()\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mpath\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00margs\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m, \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkwargs\u001b[38;5;241m.\u001b[39mget(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mheaders\u001b[39m\u001b[38;5;124m'\u001b[39m)\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 418\u001b[0m status, headers, info, contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_request(\n\u001b[1;32m 419\u001b[0m method, path, \u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs\n\u001b[1;32m 420\u001b[0m )\n\u001b[1;32m 421\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m json_out:\n\u001b[1;32m 422\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m json\u001b[38;5;241m.\u001b[39mloads(contents)\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/decorator.py:221\u001b[0m, in \u001b[0;36mdecorate..fun\u001b[0;34m(*args, **kw)\u001b[0m\n\u001b[1;32m 219\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m kwsyntax:\n\u001b[1;32m 220\u001b[0m args, kw \u001b[38;5;241m=\u001b[39m fix(args, kw, sig)\n\u001b[0;32m--> 221\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m caller(func, \u001b[38;5;241m*\u001b[39m(extras \u001b[38;5;241m+\u001b[39m args), \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkw)\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:114\u001b[0m, in \u001b[0;36mretry_request\u001b[0;34m(func, retries, *args, **kwargs)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m retry \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m:\n\u001b[1;32m 113\u001b[0m \u001b[38;5;28;01mawait\u001b[39;00m asyncio\u001b[38;5;241m.\u001b[39msleep(\u001b[38;5;28mmin\u001b[39m(random\u001b[38;5;241m.\u001b[39mrandom() \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m2\u001b[39m \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39m (retry \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m), \u001b[38;5;241m32\u001b[39m))\n\u001b[0;32m--> 114\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;01mawait\u001b[39;00m func(\u001b[38;5;241m*\u001b[39margs, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[1;32m 115\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (\n\u001b[1;32m 116\u001b[0m HttpError,\n\u001b[1;32m 117\u001b[0m requests\u001b[38;5;241m.\u001b[39mexceptions\u001b[38;5;241m.\u001b[39mRequestException,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 120\u001b[0m aiohttp\u001b[38;5;241m.\u001b[39mclient_exceptions\u001b[38;5;241m.\u001b[39mClientError,\n\u001b[1;32m 121\u001b[0m ) \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 122\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m (\n\u001b[1;32m 123\u001b[0m \u001b[38;5;28misinstance\u001b[39m(e, HttpError)\n\u001b[1;32m 124\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m e\u001b[38;5;241m.\u001b[39mcode \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m400\u001b[39m\n\u001b[1;32m 125\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrequester pays\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m e\u001b[38;5;241m.\u001b[39mmessage\n\u001b[1;32m 126\u001b[0m ):\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/core.py:411\u001b[0m, in \u001b[0;36mGCSFileSystem._request\u001b[0;34m(self, method, path, headers, json, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 408\u001b[0m info \u001b[38;5;241m=\u001b[39m r\u001b[38;5;241m.\u001b[39mrequest_info \u001b[38;5;66;03m# for debug only\u001b[39;00m\n\u001b[1;32m 409\u001b[0m contents \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mawait\u001b[39;00m r\u001b[38;5;241m.\u001b[39mread()\n\u001b[0;32m--> 411\u001b[0m \u001b[43mvalidate_response\u001b[49m\u001b[43m(\u001b[49m\u001b[43mstatus\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mcontents\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mpath\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43margs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 412\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m status, headers, info, contents\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/gcsfs/retry.py:83\u001b[0m, in \u001b[0;36mvalidate_response\u001b[0;34m(status, content, path, args)\u001b[0m\n\u001b[1;32m 81\u001b[0m path \u001b[38;5;241m=\u001b[39m path\u001b[38;5;241m.\u001b[39mformat(\u001b[38;5;241m*\u001b[39m[quote(p) \u001b[38;5;28;01mfor\u001b[39;00m p \u001b[38;5;129;01min\u001b[39;00m args])\n\u001b[1;32m 82\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m status \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m404\u001b[39m:\n\u001b[0;32m---> 83\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mFileNotFoundError\u001b[39;00m(path)\n\u001b[1;32m 85\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(content, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdecode\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n", - "\u001b[0;31mFileNotFoundError\u001b[0m: b/vo_adir_production_us_central1/o/v1.x%2Fmanifest.tsv" - ] - } - ], - "source": [ - "snps = adir1.snp_calls(region=\"KB672868:1000000-2000000\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index 62baa6870..c8bfbf601 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -180,15 +180,16 @@ def _parse_general_metadata( axis="columns", ) + # Have commented these out for now as a) this is not a public release and b) for some reason it breaks everything and I haven't had the time to work out why # Add study columns. - study_info = self.lookup_study_info(sample_set=sample_set) - for column in study_info: - df[column] = study_info[column] + # study_info = self.lookup_study_info(sample_set=sample_set) + # for column in study_info: + # df[column] = study_info[column] # Add terms-of-use columns. - terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) - for column in terms_of_use_info: - df[column] = terms_of_use_info[column] + # terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) + # for column in terms_of_use_info: + # df[column] = terms_of_use_info[column] return df diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb index 1fa71882d..450596a2f 100644 --- a/notebooks/adir1_explore.ipynb +++ b/notebooks/adir1_explore.ipynb @@ -450,12 +450,51 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", - "metadata": {}, - "outputs": [], + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "ename": "KeyError", + "evalue": "\"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:581\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 579\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 580\u001b[0m \u001b[38;5;66;03m# Attempt to retrieve from the cache.\u001b[39;00m\n\u001b[0;32m--> 581\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_metadata\u001b[49m\u001b[43m[\u001b[49m\u001b[43mcache_key\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n", + "\u001b[0;31mKeyError\u001b[0m: ('1276-AD-BD-ALAM-VMF00156', '1277-VO-KH-WITKOWSKI-VMF00151', '1277-VO-KH-WITKOWSKI-VMF00183', '1278-VO-TH-KOBYLINSKI-VMF00153')", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m100_000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:89\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 83\u001b[0m name \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpca_v4\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 85\u001b[0m \u001b[38;5;66;03m# Normalize params for consistent hash value.\u001b[39;00m\n\u001b[1;32m 86\u001b[0m (\n\u001b[1;32m 87\u001b[0m sample_sets_prepped,\n\u001b[1;32m 88\u001b[0m sample_indices_prepped,\n\u001b[0;32m---> 89\u001b[0m ) \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_selection_cache_params\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 90\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 91\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 93\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_indices\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_indices\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 94\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 95\u001b[0m region_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_region_cache_param(region\u001b[38;5;241m=\u001b[39mregion)\n\u001b[1;32m 96\u001b[0m site_mask_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_optional_site_mask_param(site_mask\u001b[38;5;241m=\u001b[39msite_mask)\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:892\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._prep_sample_selection_cache_params\u001b[0;34m(self, sample_sets, sample_query, sample_query_options, sample_indices)\u001b[0m\n\u001b[1;32m 885\u001b[0m sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_sample_sets_param(sample_sets\u001b[38;5;241m=\u001b[39msample_sets)\n\u001b[1;32m 887\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_query \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 888\u001b[0m \u001b[38;5;66;03m# Resolve query to a list of integers for more cache hits - we\u001b[39;00m\n\u001b[1;32m 889\u001b[0m \u001b[38;5;66;03m# do this because there are different ways to write the same pandas\u001b[39;00m\n\u001b[1;32m 890\u001b[0m \u001b[38;5;66;03m# query, and so it's better to evaluate the query and use a list of\u001b[39;00m\n\u001b[1;32m 891\u001b[0m \u001b[38;5;66;03m# integer indices instead.\u001b[39;00m\n\u001b[0;32m--> 892\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 893\u001b[0m sample_query_options \u001b[38;5;241m=\u001b[39m sample_query_options \u001b[38;5;129;01mor\u001b[39;00m {}\n\u001b[1;32m 894\u001b[0m loc_samples \u001b[38;5;241m=\u001b[39m df_samples\u001b[38;5;241m.\u001b[39meval(sample_query, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msample_query_options)\u001b[38;5;241m.\u001b[39mvalues\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:589\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 584\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_spinner(desc\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLoad sample metadata\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[1;32m 585\u001b[0m \u001b[38;5;66;03m## Build a single DataFrame using all available metadata.\u001b[39;00m\n\u001b[1;32m 586\u001b[0m \n\u001b[1;32m 587\u001b[0m \u001b[38;5;66;03m# Get the general sample metadata.\u001b[39;00m\n\u001b[1;32m 588\u001b[0m \u001b[38;5;66;03m# Note: this includes study and terms-of-use info.\u001b[39;00m\n\u001b[0;32m--> 589\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneral_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprepped_sample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 591\u001b[0m \u001b[38;5;66;03m# Merge with the sequence QC metadata.\u001b[39;00m\n\u001b[1;32m 592\u001b[0m df_sequence_qc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msequence_qc_metadata(\n\u001b[1;32m 593\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39mprepped_sample_sets\n\u001b[1;32m 594\u001b[0m )\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:185\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.general_metadata\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 174\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 175\u001b[0m \u001b[38;5;129m@doc\u001b[39m(\n\u001b[1;32m 176\u001b[0m summary\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\"\"\u001b[39m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 183\u001b[0m \u001b[38;5;28mself\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 184\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame:\n\u001b[0;32m--> 185\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_metadata_paths\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 186\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath_template\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;132;43;01m{release_path}\u001b[39;49;00m\u001b[38;5;124;43m/metadata/general/\u001b[39;49m\u001b[38;5;132;43;01m{sample_set}\u001b[39;49;00m\u001b[38;5;124;43m/samples.meta.csv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 187\u001b[0m \u001b[43m \u001b[49m\u001b[43mparse_metadata_func\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_general_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 188\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 189\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:119\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_metadata_paths\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 117\u001b[0m path \u001b[38;5;241m=\u001b[39m file_paths[sample_set]\n\u001b[1;32m 118\u001b[0m data \u001b[38;5;241m=\u001b[39m files[path]\n\u001b[0;32m--> 119\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mparse_metadata_func\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 120\u001b[0m dfs\u001b[38;5;241m.\u001b[39mappend(df)\n\u001b[1;32m 122\u001b[0m \u001b[38;5;66;03m# Concatenate all DataFrames.\u001b[39;00m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:160\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_general_metadata\u001b[0;34m(self, sample_set, data)\u001b[0m\n\u001b[1;32m 154\u001b[0m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mquarter\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39mapply(\n\u001b[1;32m 155\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m row: ((row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m) \u001b[38;5;241m/\u001b[39m\u001b[38;5;241m/\u001b[39m \u001b[38;5;241m3\u001b[39m) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m,\n\u001b[1;32m 156\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcolumns\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 157\u001b[0m )\n\u001b[1;32m 159\u001b[0m \u001b[38;5;66;03m# Add study columns.\u001b[39;00m\n\u001b[0;32m--> 160\u001b[0m study_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mlookup_study_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_set\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 161\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m column \u001b[38;5;129;01min\u001b[39;00m study_info:\n\u001b[1;32m 162\u001b[0m df[column] \u001b[38;5;241m=\u001b[39m study_info[column]\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:487\u001b[0m, in \u001b[0;36mAnophelesBase.lookup_study_info\u001b[0;34m(self, sample_set)\u001b[0m\n\u001b[1;32m 485\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 486\u001b[0m df_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets()\u001b[38;5;241m.\u001b[39mset_index(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 487\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;241m=\u001b[39m \u001b[43mdf_sample_sets\u001b[49m\u001b[43m[\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_url\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m \u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mto_dict(orient\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mindex\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 491\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info[sample_set]\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/frame.py:3766\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3764\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_iterator(key):\n\u001b[1;32m 3765\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 3766\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcolumns\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m1\u001b[39m]\n\u001b[1;32m 3768\u001b[0m \u001b[38;5;66;03m# take() does not accept boolean indexers\u001b[39;00m\n\u001b[1;32m 3769\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(indexer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mbool\u001b[39m:\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5935\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5933\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m use_interval_msg:\n\u001b[1;32m 5934\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[1;32m 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mKeyError\u001b[0m: \"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"" + ] + } + ], "source": [ - "adir1.pca(region = \"KB672868\", n_snps = 100_000, " + "pca = adir1.pca(region = \"KB672868\", n_snps = 100_000, sample_query = \"country == 'Thailand'\")" ] } ], From fcbb281cdd7595d4fc06194f74e4a97aaeca55ea Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Thu, 12 Jun 2025 08:39:04 +1000 Subject: [PATCH 10/41] add annotation to commented out bit of metadata --- malariagen_data/anoph/sample_metadata.py | 34 +- notebooks/adir1_explore.ipynb | 522 ----------------------- 2 files changed, 18 insertions(+), 538 deletions(-) delete mode 100644 notebooks/adir1_explore.ipynb diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index c8bfbf601..399998524 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -618,29 +618,31 @@ def sample_metadata( # Note: this includes study and terms-of-use info. df_samples = self.general_metadata(sample_sets=prepped_sample_sets) + # Commented this out as it breaks some things - will fix + # Merge with the sequence QC metadata. - df_sequence_qc = self.sequence_qc_metadata( - sample_sets=prepped_sample_sets - ) + # df_sequence_qc = self.sequence_qc_metadata( + # sample_sets=prepped_sample_sets + # ) # Note: merging can change column dtypes - df_samples = df_samples.merge( - df_sequence_qc, on="sample_id", sort=False, how="left" - ) + # df_samples = df_samples.merge( + # df_sequence_qc, on="sample_id", sort=False, how="left" + # ) # If available, merge with the AIM metadata. - if self._aim_analysis: - df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) - df_samples = df_samples.merge( - df_aim, on="sample_id", sort=False, how="left" - ) + # if self._aim_analysis: + # df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) + # df_samples = df_samples.merge( + # df_aim, on="sample_id", sort=False, how="left" + # ) # If available, merge with the cohorts metadata. - if self._cohorts_analysis: - df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) - df_samples = df_samples.merge( - df_cohorts, on="sample_id", sort=False, how="left" - ) + # if self._cohorts_analysis: + # df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) + # df_samples = df_samples.merge( + # df_cohorts, on="sample_id", sort=False, how="left" + # ) # Store sample metadata in the cache. self._cache_sample_metadata[cache_key] = df_samples diff --git a/notebooks/adir1_explore.ipynb b/notebooks/adir1_explore.ipynb deleted file mode 100644 index 450596a2f..000000000 --- a/notebooks/adir1_explore.ipynb +++ /dev/null @@ -1,522 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "94bd6d28-bf20-4841-aeb5-007d0f76b6c0", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import malariagen_data" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "be3c904b-5b0d-4482-ba2e-113e42d57557", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "application/javascript": [ - "'use strict';\n", - "(function(root) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " const force = true;\n", - "\n", - " if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n", - " root._bokeh_onload_callbacks = [];\n", - " root._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - "const JS_MIME_TYPE = 'application/javascript';\n", - " const HTML_MIME_TYPE = 'text/html';\n", - " const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n", - " const CLASS_NAME = 'output_bokeh rendered_html';\n", - "\n", - " /**\n", - " * Render data to the DOM node\n", - " */\n", - " function render(props, node) {\n", - " const script = document.createElement(\"script\");\n", - " node.appendChild(script);\n", - " }\n", - "\n", - " /**\n", - " * Handle when an output is cleared or removed\n", - " */\n", - " function handleClearOutput(event, handle) {\n", - " function drop(id) {\n", - " const view = Bokeh.index.get_by_id(id)\n", - " if (view != null) {\n", - " view.model.document.clear()\n", - " Bokeh.index.delete(view)\n", - " }\n", - " }\n", - "\n", - " const cell = handle.cell;\n", - "\n", - " const id = cell.output_area._bokeh_element_id;\n", - " const server_id = cell.output_area._bokeh_server_id;\n", - "\n", - " // Clean up Bokeh references\n", - " if (id != null) {\n", - " drop(id)\n", - " }\n", - "\n", - " if (server_id !== undefined) {\n", - " // Clean up Bokeh references\n", - " const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n", - " cell.notebook.kernel.execute(cmd_clean, {\n", - " iopub: {\n", - " output: function(msg) {\n", - " const id = msg.content.text.trim()\n", - " drop(id)\n", - " }\n", - " }\n", - " });\n", - " // Destroy server and session\n", - " const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n", - " cell.notebook.kernel.execute(cmd_destroy);\n", - " }\n", - " }\n", - "\n", - " /**\n", - " * Handle when a new output is added\n", - " */\n", - " function handleAddOutput(event, handle) {\n", - " const output_area = handle.output_area;\n", - " const output = handle.output;\n", - "\n", - " // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n", - " if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n", - " return\n", - " }\n", - "\n", - " const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n", - "\n", - " if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n", - " toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n", - " // store reference to embed id on output_area\n", - " output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n", - " }\n", - " if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n", - " const bk_div = document.createElement(\"div\");\n", - " bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n", - " const script_attrs = bk_div.children[0].attributes;\n", - " for (let i = 0; i < script_attrs.length; i++) {\n", - " toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n", - " toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n", - " }\n", - " // store reference to server id on output_area\n", - " output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n", - " }\n", - " }\n", - "\n", - " function register_renderer(events, OutputArea) {\n", - "\n", - " function append_mime(data, metadata, element) {\n", - " // create a DOM node to render to\n", - " const toinsert = this.create_output_subarea(\n", - " metadata,\n", - " CLASS_NAME,\n", - " EXEC_MIME_TYPE\n", - " );\n", - " this.keyboard_manager.register_events(toinsert);\n", - " // Render to node\n", - " const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n", - " render(props, toinsert[toinsert.length - 1]);\n", - " element.append(toinsert);\n", - " return toinsert\n", - " }\n", - "\n", - " /* Handle when an output is cleared or removed */\n", - " events.on('clear_output.CodeCell', handleClearOutput);\n", - " events.on('delete.Cell', handleClearOutput);\n", - "\n", - " /* Handle when a new output is added */\n", - " events.on('output_added.OutputArea', handleAddOutput);\n", - "\n", - " /**\n", - " * Register the mime type and append_mime function with output_area\n", - " */\n", - " OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n", - " /* Is output safe? */\n", - " safe: true,\n", - " /* Index of renderer in `output_area.display_order` */\n", - " index: 0\n", - " });\n", - " }\n", - "\n", - " // register the mime type if in Jupyter Notebook environment and previously unregistered\n", - " if (root.Jupyter !== undefined) {\n", - " const events = require('base/js/events');\n", - " const OutputArea = require('notebook/js/outputarea').OutputArea;\n", - "\n", - " if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n", - " register_renderer(events, OutputArea);\n", - " }\n", - " }\n", - " if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n", - " root._bokeh_timeout = Date.now() + 5000;\n", - " root._bokeh_failed_load = false;\n", - " }\n", - "\n", - " const NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded(error = null) {\n", - " const el = document.getElementById(null);\n", - " if (el != null) {\n", - " const html = (() => {\n", - " if (typeof root.Bokeh === \"undefined\") {\n", - " if (error == null) {\n", - " return \"BokehJS is loading ...\";\n", - " } else {\n", - " return \"BokehJS failed to load.\";\n", - " }\n", - " } else {\n", - " const prefix = `BokehJS ${root.Bokeh.version}`;\n", - " if (error == null) {\n", - " return `${prefix} successfully loaded.`;\n", - " } else {\n", - " return `${prefix} encountered errors while loading and may not function as expected.`;\n", - " }\n", - " }\n", - " })();\n", - " el.innerHTML = html;\n", - "\n", - " if (error != null) {\n", - " const wrapper = document.createElement(\"div\");\n", - " wrapper.style.overflow = \"auto\";\n", - " wrapper.style.height = \"5em\";\n", - " wrapper.style.resize = \"vertical\";\n", - " const content = document.createElement(\"div\");\n", - " content.style.fontFamily = \"monospace\";\n", - " content.style.whiteSpace = \"pre-wrap\";\n", - " content.style.backgroundColor = \"rgb(255, 221, 221)\";\n", - " content.textContent = error.stack ?? error.toString();\n", - " wrapper.append(content);\n", - " el.append(wrapper);\n", - " }\n", - " } else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(() => display_loaded(error), 100);\n", - " }\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " try {\n", - " root._bokeh_onload_callbacks.forEach(function(callback) {\n", - " if (callback != null)\n", - " callback();\n", - " });\n", - " } finally {\n", - " delete root._bokeh_onload_callbacks\n", - " }\n", - " console.debug(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(css_urls, js_urls, callback) {\n", - " if (css_urls == null) css_urls = [];\n", - " if (js_urls == null) js_urls = [];\n", - "\n", - " root._bokeh_onload_callbacks.push(callback);\n", - " if (root._bokeh_is_loading > 0) {\n", - " console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " root._bokeh_is_loading = css_urls.length + js_urls.length;\n", - "\n", - " function on_load() {\n", - " root._bokeh_is_loading--;\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n", - " run_callbacks()\n", - " }\n", - " }\n", - "\n", - " function on_error(url) {\n", - " console.error(\"failed to load \" + url);\n", - " }\n", - "\n", - " for (let i = 0; i < css_urls.length; i++) {\n", - " const url = css_urls[i];\n", - " const element = document.createElement(\"link\");\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.rel = \"stylesheet\";\n", - " element.type = \"text/css\";\n", - " element.href = url;\n", - " console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " for (let i = 0; i < js_urls.length; i++) {\n", - " const url = js_urls[i];\n", - " const element = document.createElement('script');\n", - " element.onload = on_load;\n", - " element.onerror = on_error.bind(null, url);\n", - " element.async = false;\n", - " element.src = url;\n", - " console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.head.appendChild(element);\n", - " }\n", - " };\n", - "\n", - " function inject_raw_css(css) {\n", - " const element = document.createElement(\"style\");\n", - " element.appendChild(document.createTextNode(css));\n", - " document.body.appendChild(element);\n", - " }\n", - "\n", - " const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n", - " const css_urls = [];\n", - "\n", - " const inline_js = [ function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - "function(Bokeh) {\n", - " }\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " if (root.Bokeh !== undefined || force === true) {\n", - " try {\n", - " for (let i = 0; i < inline_js.length; i++) {\n", - " inline_js[i].call(root, root.Bokeh);\n", - " }\n", - "\n", - " } catch (error) {throw error;\n", - " }} else if (Date.now() < root._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!root._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " root._bokeh_failed_load = true;\n", - " } else if (force !== true) {\n", - " const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - " }\n", - "\n", - " if (root._bokeh_is_loading === 0) {\n", - " console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(css_urls, js_urls, function() {\n", - " console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(window));" - ], - "application/vnd.bokehjs_load.v0+json": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.4.0.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.4.0.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MalariaGEN Adir1 API client
\n", - " Please note that data are subject to terms of use,\n", - " for more information see \n", - " the MalariaGEN website or contact support@malariagen.net.\n", - " See also the Adir1 API docs.\n", - "
\n", - " Storage URL\n", - " gs://vo_adir_production_us_central1/
\n", - " Data releases available\n", - " 1.x
\n", - " Results cache\n", - " /Users/dennistpw/Projects/malariagen_results
\n", - " Cohorts analysis\n", - " noneyet
\n", - " Site filters analysis\n", - " sc_20250610
\n", - " Software version\n", - " malariagen_data 13.3.0.post33+90e72d5a
\n", - " Client location\n", - " Queensland, Australia
\n", - " " - ], - "text/plain": [ - "\n", - "Storage URL : gs://vo_adir_production_us_central1/\n", - "Data releases available : 1.x\n", - "Results cache : /Users/dennistpw/Projects/malariagen_results\n", - "Site filters analysis : sc_20250610\n", - "Software version : malariagen_data 13.3.0.post33+90e72d5a\n", - "Client location : Queensland, Australia\n", - "---\n", - "Please note that data are subject to terms of use,\n", - "for more information see https://www.malariagen.net/data\n", - "or contact support@malariagen.net. For API documentation see \n", - "https://malariagen.github.io/malariagen-data-python/v13.3.0.post33+90e72d5a/Adir1.html" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Init Adir1 API\n", - "adir1 = malariagen_data.Adir1(results_cache = '/Users/dennistpw/Projects/malariagen_results/')\n", - "adir1" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "a4f50d6d-ad1b-404f-a9d1-e546f725abb3", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - } - ], - "source": [ - "snps = adir1.snp_calls(region=\"KB672868:1000000-1010000\")" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "e0489eab-e347-492d-88ce-97d61a0c0aba", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - }, - { - "ename": "KeyError", - "evalue": "\"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:581\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 579\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 580\u001b[0m \u001b[38;5;66;03m# Attempt to retrieve from the cache.\u001b[39;00m\n\u001b[0;32m--> 581\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cache_sample_metadata\u001b[49m\u001b[43m[\u001b[49m\u001b[43mcache_key\u001b[49m\u001b[43m]\u001b[49m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n", - "\u001b[0;31mKeyError\u001b[0m: ('1276-AD-BD-ALAM-VMF00156', '1277-VO-KH-WITKOWSKI-VMF00151', '1277-VO-KH-WITKOWSKI-VMF00183', '1278-VO-TH-KOBYLINSKI-VMF00153')", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[0;32mIn[10], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;241;43m100_000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:89\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 83\u001b[0m name \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mpca_v4\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 85\u001b[0m \u001b[38;5;66;03m# Normalize params for consistent hash value.\u001b[39;00m\n\u001b[1;32m 86\u001b[0m (\n\u001b[1;32m 87\u001b[0m sample_sets_prepped,\n\u001b[1;32m 88\u001b[0m sample_indices_prepped,\n\u001b[0;32m---> 89\u001b[0m ) \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_prep_sample_selection_cache_params\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 90\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 91\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 92\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_query_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_query_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 93\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_indices\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_indices\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 94\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 95\u001b[0m region_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_region_cache_param(region\u001b[38;5;241m=\u001b[39mregion)\n\u001b[1;32m 96\u001b[0m site_mask_prepped \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_optional_site_mask_param(site_mask\u001b[38;5;241m=\u001b[39msite_mask)\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:892\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._prep_sample_selection_cache_params\u001b[0;34m(self, sample_sets, sample_query, sample_query_options, sample_indices)\u001b[0m\n\u001b[1;32m 885\u001b[0m sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_prep_sample_sets_param(sample_sets\u001b[38;5;241m=\u001b[39msample_sets)\n\u001b[1;32m 887\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m sample_query \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 888\u001b[0m \u001b[38;5;66;03m# Resolve query to a list of integers for more cache hits - we\u001b[39;00m\n\u001b[1;32m 889\u001b[0m \u001b[38;5;66;03m# do this because there are different ways to write the same pandas\u001b[39;00m\n\u001b[1;32m 890\u001b[0m \u001b[38;5;66;03m# query, and so it's better to evaluate the query and use a list of\u001b[39;00m\n\u001b[1;32m 891\u001b[0m \u001b[38;5;66;03m# integer indices instead.\u001b[39;00m\n\u001b[0;32m--> 892\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msample_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 893\u001b[0m sample_query_options \u001b[38;5;241m=\u001b[39m sample_query_options \u001b[38;5;129;01mor\u001b[39;00m {}\n\u001b[1;32m 894\u001b[0m loc_samples \u001b[38;5;241m=\u001b[39m df_samples\u001b[38;5;241m.\u001b[39meval(sample_query, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msample_query_options)\u001b[38;5;241m.\u001b[39mvalues\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:589\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.sample_metadata\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 583\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m:\n\u001b[1;32m 584\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_spinner(desc\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLoad sample metadata\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[1;32m 585\u001b[0m \u001b[38;5;66;03m## Build a single DataFrame using all available metadata.\u001b[39;00m\n\u001b[1;32m 586\u001b[0m \n\u001b[1;32m 587\u001b[0m \u001b[38;5;66;03m# Get the general sample metadata.\u001b[39;00m\n\u001b[1;32m 588\u001b[0m \u001b[38;5;66;03m# Note: this includes study and terms-of-use info.\u001b[39;00m\n\u001b[0;32m--> 589\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mgeneral_metadata\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprepped_sample_sets\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 591\u001b[0m \u001b[38;5;66;03m# Merge with the sequence QC metadata.\u001b[39;00m\n\u001b[1;32m 592\u001b[0m df_sequence_qc \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msequence_qc_metadata(\n\u001b[1;32m 593\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39mprepped_sample_sets\n\u001b[1;32m 594\u001b[0m )\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:185\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata.general_metadata\u001b[0;34m(self, sample_sets)\u001b[0m\n\u001b[1;32m 174\u001b[0m \u001b[38;5;129m@check_types\u001b[39m\n\u001b[1;32m 175\u001b[0m \u001b[38;5;129m@doc\u001b[39m(\n\u001b[1;32m 176\u001b[0m summary\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\"\"\u001b[39m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 183\u001b[0m \u001b[38;5;28mself\u001b[39m, sample_sets: Optional[base_params\u001b[38;5;241m.\u001b[39msample_sets] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 184\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame:\n\u001b[0;32m--> 185\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_metadata_paths\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 186\u001b[0m \u001b[43m \u001b[49m\u001b[43mpath_template\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;132;43;01m{release_path}\u001b[39;49;00m\u001b[38;5;124;43m/metadata/general/\u001b[39;49m\u001b[38;5;132;43;01m{sample_set}\u001b[39;49;00m\u001b[38;5;124;43m/samples.meta.csv\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[1;32m 187\u001b[0m \u001b[43m \u001b[49m\u001b[43mparse_metadata_func\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_parse_general_metadata\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 188\u001b[0m \u001b[43m \u001b[49m\u001b[43msample_sets\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_sets\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 189\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:119\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_metadata_paths\u001b[0;34m(***failed resolving arguments***)\u001b[0m\n\u001b[1;32m 117\u001b[0m path \u001b[38;5;241m=\u001b[39m file_paths[sample_set]\n\u001b[1;32m 118\u001b[0m data \u001b[38;5;241m=\u001b[39m files[path]\n\u001b[0;32m--> 119\u001b[0m df \u001b[38;5;241m=\u001b[39m \u001b[43mparse_metadata_func\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 120\u001b[0m dfs\u001b[38;5;241m.\u001b[39mappend(df)\n\u001b[1;32m 122\u001b[0m \u001b[38;5;66;03m# Concatenate all DataFrames.\u001b[39;00m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/sample_metadata.py:160\u001b[0m, in \u001b[0;36mAnophelesSampleMetadata._parse_general_metadata\u001b[0;34m(self, sample_set, data)\u001b[0m\n\u001b[1;32m 154\u001b[0m df[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mquarter\u001b[39m\u001b[38;5;124m\"\u001b[39m] \u001b[38;5;241m=\u001b[39m df\u001b[38;5;241m.\u001b[39mapply(\n\u001b[1;32m 155\u001b[0m \u001b[38;5;28;01mlambda\u001b[39;00m row: ((row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m-\u001b[39m \u001b[38;5;241m1\u001b[39m) \u001b[38;5;241m/\u001b[39m\u001b[38;5;241m/\u001b[39m \u001b[38;5;241m3\u001b[39m) \u001b[38;5;241m+\u001b[39m \u001b[38;5;241m1\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m row\u001b[38;5;241m.\u001b[39mmonth \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m0\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m1\u001b[39m,\n\u001b[1;32m 156\u001b[0m axis\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcolumns\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 157\u001b[0m )\n\u001b[1;32m 159\u001b[0m \u001b[38;5;66;03m# Add study columns.\u001b[39;00m\n\u001b[0;32m--> 160\u001b[0m study_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mlookup_study_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43msample_set\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msample_set\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 161\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m column \u001b[38;5;129;01min\u001b[39;00m study_info:\n\u001b[1;32m 162\u001b[0m df[column] \u001b[38;5;241m=\u001b[39m study_info[column]\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/base.py:487\u001b[0m, in \u001b[0;36mAnophelesBase.lookup_study_info\u001b[0;34m(self, sample_set)\u001b[0m\n\u001b[1;32m 485\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 486\u001b[0m df_sample_sets \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_sets()\u001b[38;5;241m.\u001b[39mset_index(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msample_set\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m--> 487\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info \u001b[38;5;241m=\u001b[39m \u001b[43mdf_sample_sets\u001b[49m\u001b[43m[\u001b[49m\n\u001b[1;32m 488\u001b[0m \u001b[43m \u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mstudy_url\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 489\u001b[0m \u001b[43m \u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mto_dict(orient\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mindex\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 490\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m 491\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_cache_sample_set_to_study_info[sample_set]\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/frame.py:3766\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3764\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_iterator(key):\n\u001b[1;32m 3765\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 3766\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcolumns\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m1\u001b[39m]\n\u001b[1;32m 3768\u001b[0m \u001b[38;5;66;03m# take() does not accept boolean indexers\u001b[39;00m\n\u001b[1;32m 3769\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(indexer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mbool\u001b[39m:\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5935\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5933\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m use_interval_msg:\n\u001b[1;32m 5934\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[0;32m-> 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[1;32m 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "\u001b[0;31mKeyError\u001b[0m: \"None of [Index(['study_id', 'study_url'], dtype='object')] are in the [columns]\"" - ] - } - ], - "source": [ - "pca = adir1.pca(region = \"KB672868\", n_snps = 100_000, sample_query = \"country == 'Thailand'\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} From ce7b80a84f93951a7b4918f9ee3870615fce442d Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Sun, 15 Jun 2025 22:28:15 -0500 Subject: [PATCH 11/41] forgot how the alphabet works d'oh --- malariagen_data/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/__init__.py b/malariagen_data/__init__.py index 6bc938825..306896658 100644 --- a/malariagen_data/__init__.py +++ b/malariagen_data/__init__.py @@ -1,6 +1,6 @@ # flake8: noqa -from .af1 import Af1 from .adir1 import Adir1 +from .af1 import Af1 from .ag3 import Ag3 from .amin1 import Amin1 from .anopheles import AnophelesDataResource, Region From 1b196344fb4f7cd1e4e836b52440b22610cf2df3 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Mon, 16 Jun 2025 20:35:38 -0500 Subject: [PATCH 12/41] add hashing to roh function --- malariagen_data/adir1.py | 6 +- malariagen_data/anopheles.py | 71 +- poetry.lock | 3689 ++++++++++++++++++---------------- pyproject.toml | 1 + 4 files changed, 2031 insertions(+), 1736 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 9b053ca62..c24562426 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -102,9 +102,9 @@ def __init__( aim_palettes=None, site_filters_analysis=site_filters_analysis, discordant_read_calls_analysis=discordant_read_calls_analysis, - default_site_mask="funestus", - default_phasing_analysis="funestus", - default_coverage_calls_analysis="funestus", + default_site_mask="dirus", + default_phasing_analysis="dirus", + default_coverage_calls_analysis="dirus", bokeh_output_notebook=bokeh_output_notebook, results_cache=results_cache, log=log, diff --git a/malariagen_data/anopheles.py b/malariagen_data/anopheles.py index ed9cb65cf..7fc78451e 100644 --- a/malariagen_data/anopheles.py +++ b/malariagen_data/anopheles.py @@ -574,31 +574,68 @@ def roh_hmm( debug = self._log.debug resolved_region: Region = parse_single_region(self, region) - del region - debug("compute windowed heterozygosity") - sample_id, sample_set, windows, counts = self._sample_count_het( + name = "roh" + + params = dict( sample=sample, - region=resolved_region, - site_mask=site_mask, + region=region, window_size=window_size, + site_mask=site_mask, sample_set=sample_set, - chunks=chunks, - inline_array=inline_array, - ) - - debug("compute runs of homozygosity") - df_roh = self._roh_hmm_predict( - windows=windows, - counts=counts, phet_roh=phet_roh, phet_nonroh=phet_nonroh, transition=transition, - window_size=window_size, - sample_id=sample_id, - contig=resolved_region.contig, + chunks=chunks, + inline_array=inline_array, ) + del region + + try: + # Load cached numeric data, adding str / obj data again. + results = self.results_cache_get(name=name, params=params) + df_roh = pd.DataFrame(results) + df_roh["sample_id"] = sample + df_roh["contig"] = resolved_region.contig + + except CacheMiss: + debug("compute windowed heterozygosity") + sample_id, sample_set, windows, counts = self._sample_count_het( + sample=sample, + region=resolved_region, + site_mask=site_mask, + window_size=window_size, + sample_set=sample_set, + chunks=chunks, + inline_array=inline_array, + ) + + debug("compute runs of homozygosity") + df_roh = self._roh_hmm_predict( + windows=windows, + counts=counts, + phet_roh=phet_roh, + phet_nonroh=phet_nonroh, + transition=transition, + window_size=window_size, + sample_id=sample_id, + contig=resolved_region.contig, + ) + + # Specify numeric columns to save (saving obj - sample ID and contig - breaks the save. + columns_to_save = [ + "roh_start", + "roh_stop", + "roh_length", + "roh_is_marginal", + ] + self.results_cache_set( + name=name, + params=params, + results={col: df_roh[col].to_numpy() for col in columns_to_save}, + ) + return df_roh @check_types @@ -1306,7 +1343,7 @@ def ihs_gwss( ) -> Tuple[np.ndarray, np.ndarray]: # change this name if you ever change the behaviour of this function, to # invalidate any previously cached data - name = self._ihs_gwss_cache_name + name = "roh" params = dict( contig=contig, diff --git a/poetry.lock b/poetry.lock index 7ea703765..d02d5c5bc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "accessible-pygments" @@ -6,6 +6,8 @@ version = "0.0.5" description = "A collection of accessible pygments styles" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7"}, {file = "accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872"}, @@ -20,127 +22,122 @@ tests = ["hypothesis", "pytest"] [[package]] name = "aiobotocore" -version = "2.21.1" +version = "2.15.2" description = "Async client for aws services using botocore and aiohttp" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "aiobotocore-2.21.1-py3-none-any.whl", hash = "sha256:bd7c49a6d6f8a3d9444b0a94417c8da13813b5c7eec1c4f0ec2db7e8ce8f23e7"}, - {file = "aiobotocore-2.21.1.tar.gz", hash = "sha256:010357f43004413e92a9d066bb0db1f241aeb29ffed306e9197061ffc94e6577"}, + {file = "aiobotocore-2.15.2-py3-none-any.whl", hash = "sha256:d4d3128b4b558e2b4c369bfa963b022d7e87303adb82eec623cec8aa77ae578a"}, + {file = "aiobotocore-2.15.2.tar.gz", hash = "sha256:9ac1cfcaccccc80602968174aa032bf978abe36bd4e55e6781d6500909af1375"}, ] [package.dependencies] aiohttp = ">=3.9.2,<4.0.0" aioitertools = ">=0.5.1,<1.0.0" -botocore = ">=1.37.0,<1.37.2" -jmespath = ">=0.7.1,<2.0.0" -multidict = ">=6.0.0,<7.0.0" -python-dateutil = ">=2.1,<3.0.0" +botocore = ">=1.35.16,<1.35.37" wrapt = ">=1.10.10,<2.0.0" [package.extras] -awscli = ["awscli (>=1.38.0,<1.38.2)"] -boto3 = ["boto3 (>=1.37.0,<1.37.2)"] +awscli = ["awscli (>=1.34.16,<1.35.3)"] +boto3 = ["boto3 (>=1.35.16,<1.35.37)"] [[package]] name = "aiohappyeyeballs" -version = "2.6.1" +version = "2.4.4" description = "Happy Eyeballs for asyncio" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8"}, - {file = "aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558"}, + {file = "aiohappyeyeballs-2.4.4-py3-none-any.whl", hash = "sha256:a980909d50efcd44795c4afeca523296716d50cd756ddca6af8c65b996e27de8"}, + {file = "aiohappyeyeballs-2.4.4.tar.gz", hash = "sha256:5fdd7d87889c63183afc18ce9271f9b0a7d32c2303e394468dd45d514a757745"}, ] [[package]] name = "aiohttp" -version = "3.11.16" +version = "3.11.9" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" -files = [ - {file = "aiohttp-3.11.16-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fb46bb0f24813e6cede6cc07b1961d4b04f331f7112a23b5e21f567da4ee50aa"}, - {file = "aiohttp-3.11.16-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:54eb3aead72a5c19fad07219acd882c1643a1027fbcdefac9b502c267242f955"}, - {file = "aiohttp-3.11.16-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:38bea84ee4fe24ebcc8edeb7b54bf20f06fd53ce4d2cc8b74344c5b9620597fd"}, - {file = "aiohttp-3.11.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0666afbe984f6933fe72cd1f1c3560d8c55880a0bdd728ad774006eb4241ecd"}, - {file = "aiohttp-3.11.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ba92a2d9ace559a0a14b03d87f47e021e4fa7681dc6970ebbc7b447c7d4b7cd"}, - {file = "aiohttp-3.11.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ad1d59fd7114e6a08c4814983bb498f391c699f3c78712770077518cae63ff7"}, - {file = "aiohttp-3.11.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b88a2bf26965f2015a771381624dd4b0839034b70d406dc74fd8be4cc053e3"}, - {file = "aiohttp-3.11.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:576f5ca28d1b3276026f7df3ec841ae460e0fc3aac2a47cbf72eabcfc0f102e1"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a2a450bcce4931b295fc0848f384834c3f9b00edfc2150baafb4488c27953de6"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:37dcee4906454ae377be5937ab2a66a9a88377b11dd7c072df7a7c142b63c37c"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:4d0c970c0d602b1017e2067ff3b7dac41c98fef4f7472ec2ea26fd8a4e8c2149"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:004511d3413737700835e949433536a2fe95a7d0297edd911a1e9705c5b5ea43"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:c15b2271c44da77ee9d822552201180779e5e942f3a71fb74e026bf6172ff287"}, - {file = "aiohttp-3.11.16-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ad9509ffb2396483ceacb1eee9134724443ee45b92141105a4645857244aecc8"}, - {file = "aiohttp-3.11.16-cp310-cp310-win32.whl", hash = "sha256:634d96869be6c4dc232fc503e03e40c42d32cfaa51712aee181e922e61d74814"}, - {file = "aiohttp-3.11.16-cp310-cp310-win_amd64.whl", hash = "sha256:938f756c2b9374bbcc262a37eea521d8a0e6458162f2a9c26329cc87fdf06534"}, - {file = "aiohttp-3.11.16-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8cb0688a8d81c63d716e867d59a9ccc389e97ac7037ebef904c2b89334407180"}, - {file = "aiohttp-3.11.16-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0ad1fb47da60ae1ddfb316f0ff16d1f3b8e844d1a1e154641928ea0583d486ed"}, - {file = "aiohttp-3.11.16-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:df7db76400bf46ec6a0a73192b14c8295bdb9812053f4fe53f4e789f3ea66bbb"}, - {file = "aiohttp-3.11.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc3a145479a76ad0ed646434d09216d33d08eef0d8c9a11f5ae5cdc37caa3540"}, - {file = "aiohttp-3.11.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d007aa39a52d62373bd23428ba4a2546eed0e7643d7bf2e41ddcefd54519842c"}, - {file = "aiohttp-3.11.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6ddd90d9fb4b501c97a4458f1c1720e42432c26cb76d28177c5b5ad4e332601"}, - {file = "aiohttp-3.11.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a2f451849e6b39e5c226803dcacfa9c7133e9825dcefd2f4e837a2ec5a3bb98"}, - {file = "aiohttp-3.11.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8df6612df74409080575dca38a5237282865408016e65636a76a2eb9348c2567"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:78e6e23b954644737e385befa0deb20233e2dfddf95dd11e9db752bdd2a294d3"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:696ef00e8a1f0cec5e30640e64eca75d8e777933d1438f4facc9c0cdf288a810"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3538bc9fe1b902bef51372462e3d7c96fce2b566642512138a480b7adc9d508"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:3ab3367bb7f61ad18793fea2ef71f2d181c528c87948638366bf1de26e239183"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:56a3443aca82abda0e07be2e1ecb76a050714faf2be84256dae291182ba59049"}, - {file = "aiohttp-3.11.16-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:61c721764e41af907c9d16b6daa05a458f066015abd35923051be8705108ed17"}, - {file = "aiohttp-3.11.16-cp311-cp311-win32.whl", hash = "sha256:3e061b09f6fa42997cf627307f220315e313ece74907d35776ec4373ed718b86"}, - {file = "aiohttp-3.11.16-cp311-cp311-win_amd64.whl", hash = "sha256:745f1ed5e2c687baefc3c5e7b4304e91bf3e2f32834d07baaee243e349624b24"}, - {file = "aiohttp-3.11.16-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:911a6e91d08bb2c72938bc17f0a2d97864c531536b7832abee6429d5296e5b27"}, - {file = "aiohttp-3.11.16-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6ac13b71761e49d5f9e4d05d33683bbafef753e876e8e5a7ef26e937dd766713"}, - {file = "aiohttp-3.11.16-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fd36c119c5d6551bce374fcb5c19269638f8d09862445f85a5a48596fd59f4bb"}, - {file = "aiohttp-3.11.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d489d9778522fbd0f8d6a5c6e48e3514f11be81cb0a5954bdda06f7e1594b321"}, - {file = "aiohttp-3.11.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69a2cbd61788d26f8f1e626e188044834f37f6ae3f937bd9f08b65fc9d7e514e"}, - {file = "aiohttp-3.11.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd464ba806e27ee24a91362ba3621bfc39dbbb8b79f2e1340201615197370f7c"}, - {file = "aiohttp-3.11.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ce63ae04719513dd2651202352a2beb9f67f55cb8490c40f056cea3c5c355ce"}, - {file = "aiohttp-3.11.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09b00dd520d88eac9d1768439a59ab3d145065c91a8fab97f900d1b5f802895e"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7f6428fee52d2bcf96a8aa7b62095b190ee341ab0e6b1bcf50c615d7966fd45b"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:13ceac2c5cdcc3f64b9015710221ddf81c900c5febc505dbd8f810e770011540"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:fadbb8f1d4140825069db3fedbbb843290fd5f5bc0a5dbd7eaf81d91bf1b003b"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6a792ce34b999fbe04a7a71a90c74f10c57ae4c51f65461a411faa70e154154e"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:f4065145bf69de124accdd17ea5f4dc770da0a6a6e440c53f6e0a8c27b3e635c"}, - {file = "aiohttp-3.11.16-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fa73e8c2656a3653ae6c307b3f4e878a21f87859a9afab228280ddccd7369d71"}, - {file = "aiohttp-3.11.16-cp312-cp312-win32.whl", hash = "sha256:f244b8e541f414664889e2c87cac11a07b918cb4b540c36f7ada7bfa76571ea2"}, - {file = "aiohttp-3.11.16-cp312-cp312-win_amd64.whl", hash = "sha256:23a15727fbfccab973343b6d1b7181bfb0b4aa7ae280f36fd2f90f5476805682"}, - {file = "aiohttp-3.11.16-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a3814760a1a700f3cfd2f977249f1032301d0a12c92aba74605cfa6ce9f78489"}, - {file = "aiohttp-3.11.16-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9b751a6306f330801665ae69270a8a3993654a85569b3469662efaad6cf5cc50"}, - {file = "aiohttp-3.11.16-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ad497f38a0d6c329cb621774788583ee12321863cd4bd9feee1effd60f2ad133"}, - {file = "aiohttp-3.11.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca37057625693d097543bd88076ceebeb248291df9d6ca8481349efc0b05dcd0"}, - {file = "aiohttp-3.11.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5abcbba9f4b463a45c8ca8b7720891200658f6f46894f79517e6cd11f3405ca"}, - {file = "aiohttp-3.11.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f420bfe862fb357a6d76f2065447ef6f484bc489292ac91e29bc65d2d7a2c84d"}, - {file = "aiohttp-3.11.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58ede86453a6cf2d6ce40ef0ca15481677a66950e73b0a788917916f7e35a0bb"}, - {file = "aiohttp-3.11.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fdec0213244c39973674ca2a7f5435bf74369e7d4e104d6c7473c81c9bcc8c4"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:72b1b03fb4655c1960403c131740755ec19c5898c82abd3961c364c2afd59fe7"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:780df0d837276276226a1ff803f8d0fa5f8996c479aeef52eb040179f3156cbd"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ecdb8173e6c7aa09eee342ac62e193e6904923bd232e76b4157ac0bfa670609f"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a6db7458ab89c7d80bc1f4e930cc9df6edee2200127cfa6f6e080cf619eddfbd"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2540ddc83cc724b13d1838026f6a5ad178510953302a49e6d647f6e1de82bc34"}, - {file = "aiohttp-3.11.16-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3b4e6db8dc4879015b9955778cfb9881897339c8fab7b3676f8433f849425913"}, - {file = "aiohttp-3.11.16-cp313-cp313-win32.whl", hash = "sha256:493910ceb2764f792db4dc6e8e4b375dae1b08f72e18e8f10f18b34ca17d0979"}, - {file = "aiohttp-3.11.16-cp313-cp313-win_amd64.whl", hash = "sha256:42864e70a248f5f6a49fdaf417d9bc62d6e4d8ee9695b24c5916cb4bb666c802"}, - {file = "aiohttp-3.11.16-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bbcba75fe879ad6fd2e0d6a8d937f34a571f116a0e4db37df8079e738ea95c71"}, - {file = "aiohttp-3.11.16-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:87a6e922b2b2401e0b0cf6b976b97f11ec7f136bfed445e16384fbf6fd5e8602"}, - {file = "aiohttp-3.11.16-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ccf10f16ab498d20e28bc2b5c1306e9c1512f2840f7b6a67000a517a4b37d5ee"}, - {file = "aiohttp-3.11.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb3d0cc5cdb926090748ea60172fa8a213cec728bd6c54eae18b96040fcd6227"}, - {file = "aiohttp-3.11.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d07502cc14ecd64f52b2a74ebbc106893d9a9717120057ea9ea1fd6568a747e7"}, - {file = "aiohttp-3.11.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:776c8e959a01e5e8321f1dec77964cb6101020a69d5a94cd3d34db6d555e01f7"}, - {file = "aiohttp-3.11.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0902e887b0e1d50424112f200eb9ae3dfed6c0d0a19fc60f633ae5a57c809656"}, - {file = "aiohttp-3.11.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e87fd812899aa78252866ae03a048e77bd11b80fb4878ce27c23cade239b42b2"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0a950c2eb8ff17361abd8c85987fd6076d9f47d040ebffce67dce4993285e973"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:c10d85e81d0b9ef87970ecbdbfaeec14a361a7fa947118817fcea8e45335fa46"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:7951decace76a9271a1ef181b04aa77d3cc309a02a51d73826039003210bdc86"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:14461157d8426bcb40bd94deb0450a6fa16f05129f7da546090cebf8f3123b0f"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9756d9b9d4547e091f99d554fbba0d2a920aab98caa82a8fb3d3d9bee3c9ae85"}, - {file = "aiohttp-3.11.16-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:87944bd16b7fe6160607f6a17808abd25f17f61ae1e26c47a491b970fb66d8cb"}, - {file = "aiohttp-3.11.16-cp39-cp39-win32.whl", hash = "sha256:92b7ee222e2b903e0a4b329a9943d432b3767f2d5029dbe4ca59fb75223bbe2e"}, - {file = "aiohttp-3.11.16-cp39-cp39-win_amd64.whl", hash = "sha256:17ae4664031aadfbcb34fd40ffd90976671fa0c0286e6c4113989f78bebab37a"}, - {file = "aiohttp-3.11.16.tar.gz", hash = "sha256:16f8a2c9538c14a557b4d309ed4d0a7c60f0253e8ed7b6c9a2859a7582f8b1b8"}, +groups = ["main"] +files = [ + {file = "aiohttp-3.11.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0411777249f25d11bd2964a230b3ffafcbed6cd65d0f2b132bc2b8f5b8c347c7"}, + {file = "aiohttp-3.11.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:499368eb904566fbdf1a3836a1532000ef1308f34a1bcbf36e6351904cced771"}, + {file = "aiohttp-3.11.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0b5a5009b0159a8f707879dc102b139466d8ec6db05103ec1520394fdd8ea02c"}, + {file = "aiohttp-3.11.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:176f8bb8931da0613bb0ed16326d01330066bb1e172dd97e1e02b1c27383277b"}, + {file = "aiohttp-3.11.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6435a66957cdba1a0b16f368bde03ce9c79c57306b39510da6ae5312a1a5b2c1"}, + {file = "aiohttp-3.11.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:202f40fb686e5f93908eee0c75d1e6fbe50a43e9bd4909bf3bf4a56b560ca180"}, + {file = "aiohttp-3.11.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39625703540feb50b6b7f938b3856d1f4886d2e585d88274e62b1bd273fae09b"}, + {file = "aiohttp-3.11.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6beeac698671baa558e82fa160be9761cf0eb25861943f4689ecf9000f8ebd0"}, + {file = "aiohttp-3.11.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:96726839a42429318017e67a42cca75d4f0d5248a809b3cc2e125445edd7d50d"}, + {file = "aiohttp-3.11.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3f5461c77649358610fb9694e790956b4238ac5d9e697a17f63619c096469afe"}, + {file = "aiohttp-3.11.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4313f3bc901255b22f01663eeeae167468264fdae0d32c25fc631d5d6e15b502"}, + {file = "aiohttp-3.11.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:d6e274661c74195708fc4380a4ef64298926c5a50bb10fbae3d01627d7a075b7"}, + {file = "aiohttp-3.11.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:db2914de2559809fdbcf3e48f41b17a493b58cb7988d3e211f6b63126c55fe82"}, + {file = "aiohttp-3.11.9-cp310-cp310-win32.whl", hash = "sha256:27935716f8d62c1c73010428db310fd10136002cfc6d52b0ba7bdfa752d26066"}, + {file = "aiohttp-3.11.9-cp310-cp310-win_amd64.whl", hash = "sha256:afbe85b50ade42ddff5669947afde9e8a610e64d2c80be046d67ec4368e555fa"}, + {file = "aiohttp-3.11.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:afcda759a69c6a8be3aae764ec6733155aa4a5ad9aad4f398b52ba4037942fe3"}, + {file = "aiohttp-3.11.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5bba6b83fde4ca233cfda04cbd4685ab88696b0c8eaf76f7148969eab5e248a"}, + {file = "aiohttp-3.11.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:442356e8924fe1a121f8c87866b0ecdc785757fd28924b17c20493961b3d6697"}, + {file = "aiohttp-3.11.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f737fef6e117856400afee4f17774cdea392b28ecf058833f5eca368a18cf1bf"}, + {file = "aiohttp-3.11.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea142255d4901b03f89cb6a94411ecec117786a76fc9ab043af8f51dd50b5313"}, + {file = "aiohttp-3.11.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e1e9e447856e9b7b3d38e1316ae9a8c92e7536ef48373de758ea055edfd5db5"}, + {file = "aiohttp-3.11.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7f6173302f8a329ca5d1ee592af9e628d3ade87816e9958dcf7cdae2841def7"}, + {file = "aiohttp-3.11.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7c6147c6306f537cff59409609508a1d2eff81199f0302dd456bb9e7ea50c39"}, + {file = "aiohttp-3.11.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e9d036a9a41fc78e8a3f10a86c2fc1098fca8fab8715ba9eb999ce4788d35df0"}, + {file = "aiohttp-3.11.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:2ac9fd83096df36728da8e2f4488ac3b5602238f602706606f3702f07a13a409"}, + {file = "aiohttp-3.11.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d3108f0ad5c6b6d78eec5273219a5bbd884b4aacec17883ceefaac988850ce6e"}, + {file = "aiohttp-3.11.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:96bbec47beb131bbf4bae05d8ef99ad9e5738f12717cfbbf16648b78b0232e87"}, + {file = "aiohttp-3.11.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:fc726c3fa8f606d07bd2b500e5dc4c0fd664c59be7788a16b9e34352c50b6b6b"}, + {file = "aiohttp-3.11.9-cp311-cp311-win32.whl", hash = "sha256:5720ebbc7a1b46c33a42d489d25d36c64c419f52159485e55589fbec648ea49a"}, + {file = "aiohttp-3.11.9-cp311-cp311-win_amd64.whl", hash = "sha256:17af09d963fa1acd7e4c280e9354aeafd9e3d47eaa4a6bfbd2171ad7da49f0c5"}, + {file = "aiohttp-3.11.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:c1f2d7fd583fc79c240094b3e7237d88493814d4b300d013a42726c35a734bc9"}, + {file = "aiohttp-3.11.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d4b8a1b6c7a68c73191f2ebd3bf66f7ce02f9c374e309bdb68ba886bbbf1b938"}, + {file = "aiohttp-3.11.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd3f711f4c99da0091ced41dccdc1bcf8be0281dc314d6d9c6b6cf5df66f37a9"}, + {file = "aiohttp-3.11.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44cb1a1326a0264480a789e6100dc3e07122eb8cd1ad6b784a3d47d13ed1d89c"}, + {file = "aiohttp-3.11.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7a7ddf981a0b953ade1c2379052d47ccda2f58ab678fca0671c7c7ca2f67aac2"}, + {file = "aiohttp-3.11.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ffa45cc55b18d4ac1396d1ddb029f139b1d3480f1594130e62bceadf2e1a838"}, + {file = "aiohttp-3.11.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cca505829cdab58c2495ff418c96092d225a1bbd486f79017f6de915580d3c44"}, + {file = "aiohttp-3.11.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44d323aa80a867cb6db6bebb4bbec677c6478e38128847f2c6b0f70eae984d72"}, + {file = "aiohttp-3.11.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b2fab23003c4bb2249729a7290a76c1dda38c438300fdf97d4e42bf78b19c810"}, + {file = "aiohttp-3.11.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:be0c7c98e38a1e3ad7a6ff64af8b6d6db34bf5a41b1478e24c3c74d9e7f8ed42"}, + {file = "aiohttp-3.11.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5cc5e0d069c56645446c45a4b5010d4b33ac6c5ebfd369a791b5f097e46a3c08"}, + {file = "aiohttp-3.11.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9bcf97b971289be69638d8b1b616f7e557e1342debc7fc86cf89d3f08960e411"}, + {file = "aiohttp-3.11.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c7333e7239415076d1418dbfb7fa4df48f3a5b00f8fdf854fca549080455bc14"}, + {file = "aiohttp-3.11.9-cp312-cp312-win32.whl", hash = "sha256:9384b07cfd3045b37b05ed002d1c255db02fb96506ad65f0f9b776b762a7572e"}, + {file = "aiohttp-3.11.9-cp312-cp312-win_amd64.whl", hash = "sha256:f5252ba8b43906f206048fa569debf2cd0da0316e8d5b4d25abe53307f573941"}, + {file = "aiohttp-3.11.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:282e0a7ddd36ebc411f156aeaa0491e8fe7f030e2a95da532cf0c84b0b70bc66"}, + {file = "aiohttp-3.11.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ebd3e6b0c7d4954cca59d241970011f8d3327633d555051c430bd09ff49dc494"}, + {file = "aiohttp-3.11.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:30f9f89ae625d412043f12ca3771b2ccec227cc93b93bb1f994db6e1af40a7d3"}, + {file = "aiohttp-3.11.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a3b5b2c012d70c63d9d13c57ed1603709a4d9d7d473e4a9dfece0e4ea3d5f51"}, + {file = "aiohttp-3.11.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6ef1550bb5f55f71b97a6a395286db07f7f2c01c8890e613556df9a51da91e8d"}, + {file = "aiohttp-3.11.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:317251b9c9a2f1a9ff9cd093775b34c6861d1d7df9439ce3d32a88c275c995cd"}, + {file = "aiohttp-3.11.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21cbe97839b009826a61b143d3ca4964c8590d7aed33d6118125e5b71691ca46"}, + {file = "aiohttp-3.11.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:618b18c3a2360ac940a5503da14fa4f880c5b9bc315ec20a830357bcc62e6bae"}, + {file = "aiohttp-3.11.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a0cf4d814689e58f57ecd5d8c523e6538417ca2e72ff52c007c64065cef50fb2"}, + {file = "aiohttp-3.11.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:15c4e489942d987d5dac0ba39e5772dcbed4cc9ae3710d1025d5ba95e4a5349c"}, + {file = "aiohttp-3.11.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ec8df0ff5a911c6d21957a9182402aad7bf060eaeffd77c9ea1c16aecab5adbf"}, + {file = "aiohttp-3.11.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ed95d66745f53e129e935ad726167d3a6cb18c5d33df3165974d54742c373868"}, + {file = "aiohttp-3.11.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:647ec5bee7e4ec9f1034ab48173b5fa970d9a991e565549b965e93331f1328fe"}, + {file = "aiohttp-3.11.9-cp313-cp313-win32.whl", hash = "sha256:ef2c9499b7bd1e24e473dc1a85de55d72fd084eea3d8bdeec7ee0720decb54fa"}, + {file = "aiohttp-3.11.9-cp313-cp313-win_amd64.whl", hash = "sha256:84de955314aa5e8d469b00b14d6d714b008087a0222b0f743e7ffac34ef56aff"}, + {file = "aiohttp-3.11.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e738aabff3586091221044b7a584865ddc4d6120346d12e28e788307cd731043"}, + {file = "aiohttp-3.11.9-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:28f29bce89c3b401a53d6fd4bee401ee943083bf2bdc12ef297c1d63155070b0"}, + {file = "aiohttp-3.11.9-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:31de2f10f63f96cc19e04bd2df9549559beadd0b2ee2da24a17e7ed877ca8c60"}, + {file = "aiohttp-3.11.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f31cebd8c27a36af6c7346055ac564946e562080ee1a838da724585c67474f"}, + {file = "aiohttp-3.11.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bcb7f6976dc0b6b56efde13294862adf68dd48854111b422a336fa729a82ea6"}, + {file = "aiohttp-3.11.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8b13b9950d8b2f8f58b6e5842c4b842b5887e2c32e3f4644d6642f1659a530"}, + {file = "aiohttp-3.11.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9c23e62f3545c2216100603614f9e019e41b9403c47dd85b8e7e5015bf1bde0"}, + {file = "aiohttp-3.11.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec656680fc53a13f849c71afd0c84a55c536206d524cbc831cde80abbe80489e"}, + {file = "aiohttp-3.11.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:36df00e0541f264ce42d62280281541a47474dfda500bc5b7f24f70a7f87be7a"}, + {file = "aiohttp-3.11.9-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:8dcfd14c712aa9dd18049280bfb2f95700ff6a8bde645e09f17c3ed3f05a0130"}, + {file = "aiohttp-3.11.9-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:14624d96f0d69cf451deed3173079a68c322279be6030208b045ab77e1e8d550"}, + {file = "aiohttp-3.11.9-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4b01d9cfcb616eeb6d40f02e66bebfe7b06d9f2ef81641fdd50b8dd981166e0b"}, + {file = "aiohttp-3.11.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:928f92f80e2e8d6567b87d3316c1fd9860ccfe36e87a9a7f5237d4cda8baa1ba"}, + {file = "aiohttp-3.11.9-cp39-cp39-win32.whl", hash = "sha256:c8a02f74ae419e3955af60f570d83187423e42e672a6433c5e292f1d23619269"}, + {file = "aiohttp-3.11.9-cp39-cp39-win_amd64.whl", hash = "sha256:0a97d657f6cf8782a830bb476c13f7d777cfcab8428ac49dde15c22babceb361"}, + {file = "aiohttp-3.11.9.tar.gz", hash = "sha256:a9266644064779840feec0e34f10a89b3ff1d2d6b751fe90017abcad1864fa7c"}, ] [package.dependencies] @@ -154,7 +151,7 @@ propcache = ">=0.2.0" yarl = ">=1.17.0,<2.0" [package.extras] -speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] +speedups = ["Brotli ; platform_python_implementation == \"CPython\"", "aiodns (>=3.2.0) ; sys_platform == \"linux\" or sys_platform == \"darwin\"", "brotlicffi ; platform_python_implementation != \"CPython\""] [[package]] name = "aioitertools" @@ -162,6 +159,7 @@ version = "0.12.0" description = "itertools and builtins for AsyncIO and mixed iterables" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "aioitertools-0.12.0-py3-none-any.whl", hash = "sha256:fc1f5fac3d737354de8831cbba3eb04f79dd649d8f3afb4c5b114925e662a796"}, {file = "aioitertools-0.12.0.tar.gz", hash = "sha256:c2a9055b4fbb7705f561b9d86053e8af5d10cc845d22c32008c43490b2d8dd6b"}, @@ -173,13 +171,14 @@ docs = ["sphinx (==8.0.2)", "sphinx-mdinclude (==0.6.2)"] [[package]] name = "aiosignal" -version = "1.3.2" +version = "1.3.1" description = "aiosignal: a list of registered asynchronous callbacks" optional = false -python-versions = ">=3.9" +python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "aiosignal-1.3.2-py2.py3-none-any.whl", hash = "sha256:45cde58e409a301715980c2b01d0c28bdde3770d8290b5eb2173759d9acb31a5"}, - {file = "aiosignal-1.3.2.tar.gz", hash = "sha256:a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54"}, + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, ] [package.dependencies] @@ -191,6 +190,8 @@ version = "1.0.0" description = "A light, configurable Sphinx theme" optional = false python-versions = ">=3.10" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b"}, {file = "alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e"}, @@ -202,6 +203,7 @@ version = "1.4.0" description = "A neighbour-joining library for Python." optional = false python-versions = "<3.13,>=3.10" +groups = ["main"] files = [ {file = "anjl-1.4.0-py3-none-any.whl", hash = "sha256:062d9b6d3d565a61a0b691fa6ae1e268e28a9ef2271d12259c1b6d42b0a1abea"}, {file = "anjl-1.4.0.tar.gz", hash = "sha256:830d6b6233d3bc9cd5631da7a8ee798e348949a07429fae87e492659b5960fba"}, @@ -220,24 +222,26 @@ dev = ["devtools", "ipykernel", "ipywidgets", "jupyterlab", "memory-profiler", " [[package]] name = "anyio" -version = "4.9.0" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c"}, - {file = "anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" -typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""} +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] -doc = ["Sphinx (>=8.2,<9.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"] -test = ["anyio[trio]", "blockbuster (>=1.5.23)", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1) ; python_version >= \"3.10\"", "uvloop (>=0.21.0b1) ; platform_python_implementation == \"CPython\" and platform_system != \"Windows\""] trio = ["trio (>=0.26.1)"] [[package]] @@ -246,6 +250,8 @@ version = "0.1.4" description = "Disable App Nap on macOS >= 10.9" optional = false python-versions = ">=3.6" +groups = ["main"] +markers = "platform_system == \"Darwin\"" files = [ {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, @@ -257,6 +263,8 @@ version = "23.1.0" description = "Argon2 for Python" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, @@ -277,6 +285,8 @@ version = "21.2.0" description = "Low-level CFFI bindings for Argon2" optional = false python-versions = ">=3.6" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, @@ -314,6 +324,8 @@ version = "1.3.0" description = "Better dates & times for Python" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, @@ -333,6 +345,7 @@ version = "0.3.3" description = "Draws ASCII trees." optional = false python-versions = "*" +groups = ["main"] files = [ {file = "asciitree-0.3.3.tar.gz", hash = "sha256:4aa4b9b649f85e3fcb343363d97564aa1fb62e249677f2e18a96765145cc0f6e"}, ] @@ -343,6 +356,7 @@ version = "3.0.0" description = "Annotate AST trees with source code positions" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"}, {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"}, @@ -354,17 +368,19 @@ test = ["astroid (>=2,<4)", "pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "async-lru" -version = "2.0.5" +version = "2.0.4" description = "Simple LRU cache for asyncio" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "async_lru-2.0.5-py3-none-any.whl", hash = "sha256:ab95404d8d2605310d345932697371a5f40def0487c03d6d0ad9138de52c9943"}, - {file = "async_lru-2.0.5.tar.gz", hash = "sha256:481d52ccdd27275f42c43a928b4a50c3bfb2d67af4e78b170e3e0bb39c66e5bb"}, + {file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"}, + {file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"}, ] [package.dependencies] -typing_extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} [[package]] name = "async-timeout" @@ -372,6 +388,8 @@ version = "5.0.1" description = "Timeout context manager for asyncio programs" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "python_version == \"3.10\"" files = [ {file = "async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c"}, {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"}, @@ -379,51 +397,55 @@ files = [ [[package]] name = "attrs" -version = "25.3.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3"}, - {file = "attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] +benchmark = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +cov = ["cloudpickle ; platform_python_implementation == \"CPython\"", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +dev = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle ; platform_python_implementation == \"CPython\"", "hypothesis", "mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\"", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1) ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\"", "pytest-mypy-plugins ; platform_python_implementation == \"CPython\" and python_version >= \"3.9\" and python_version < \"3.13\""] [[package]] name = "babel" -version = "2.17.0" +version = "2.16.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2"}, - {file = "babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.extras] -dev = ["backports.zoneinfo", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata"] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] [[package]] name = "beautifulsoup4" -version = "4.13.3" +version = "4.12.3" description = "Screen-scraping library" optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.6.0" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16"}, - {file = "beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b"}, + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, ] [package.dependencies] soupsieve = ">1.2" -typing-extensions = ">=4.0.0" [package.extras] cchardet = ["cchardet"] @@ -438,6 +460,7 @@ version = "1.0.6" description = "Read and write the PLINK BED format, simply and efficiently." optional = false python-versions = "*" +groups = ["main"] files = [ {file = "bed_reader-1.0.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5f2e812dea71cf9aebbf8b1bf00149600948fdbf4bbdb8805c4a4ed4b1597aba"}, {file = "bed_reader-1.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7753e3e9dcd4210aadfc071ece22264c4fef1bd53b31d34bd63ce11f217954d5"}, @@ -474,43 +497,37 @@ sparse = ["scipy (>=1.4)"] [[package]] name = "biopython" -version = "1.85" +version = "1.84" description = "Freely available tools for computational molecular biology." optional = false python-versions = ">=3.9" -files = [ - {file = "biopython-1.85-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6308053a61f3bdbb11504ece4cf24e264c6f1d6fad278f7e59e6b84b0d9a7b4"}, - {file = "biopython-1.85-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:434dd23e972b0c89e128f2ebbd16b38075d609184f4f1fd16368035f923019c2"}, - {file = "biopython-1.85-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a08d082e85778259a83501063871e00ba57336136403b75050eea14d523c00a"}, - {file = "biopython-1.85-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d93464e629950e4df87d810125dc4e904538a4344b924f340908ea5bc95db986"}, - {file = "biopython-1.85-cp310-cp310-win32.whl", hash = "sha256:f2f45ab3f1e43fdaa697fd753148999090298623278097c19c2c3c0ba134e57c"}, - {file = "biopython-1.85-cp310-cp310-win_amd64.whl", hash = "sha256:7c8326cd2825ba166abecaf72843b9b15823affd6cec04fde65f0d2526767da4"}, - {file = "biopython-1.85-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:db8822adab0cd75a6e6ae845acf312addd8eab5f9b731c191454b961fc2c2cdc"}, - {file = "biopython-1.85-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8e2bbe58cc1a592b239ef6d68396745d3fbfaafc668ce38283871d8ff070dbab"}, - {file = "biopython-1.85-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5916eb56df7ecd4a3babc07a48d4894c40cfb45dc18ccda1c148d0131017ce04"}, - {file = "biopython-1.85-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0cec8833bf3036049129944ee5382dd576dac9670c3814ff2314b52aa94f199"}, - {file = "biopython-1.85-cp311-cp311-win32.whl", hash = "sha256:cf88a4c8d8af13138be115949639a5e4a201618185a72ff09adbe175b7946b28"}, - {file = "biopython-1.85-cp311-cp311-win_amd64.whl", hash = "sha256:d3c99db65d57ae4fc5034e42ac6cd8ddce069e664903f04c8a4f684d7609d6fa"}, - {file = "biopython-1.85-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc5b981b9e3060db7c355b6145dfe3ce0b6572e1601b31211f6d742b10543874"}, - {file = "biopython-1.85-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6fe47d704c2d3afac99aeb461219ec5f00273120d2d99835dc0a9a617f520141"}, - {file = "biopython-1.85-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54e495239e623660ad367498c2f7a1a294b1997ba603f2ceafb36fd18f0eba6"}, - {file = "biopython-1.85-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d024ad48997ad53d53a77da24b072aaba8a550bd816af8f2e7e606a9918a3b43"}, - {file = "biopython-1.85-cp312-cp312-win32.whl", hash = "sha256:6985e17a2911defcbd30275a12f5ed5de2765e4bc91a60439740d572fdbfdf43"}, - {file = "biopython-1.85-cp312-cp312-win_amd64.whl", hash = "sha256:d6f8efb2db03f2ec115c5e8c764dbadf635e0c9ecd4c0e91fc8216c1b62f85f5"}, - {file = "biopython-1.85-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bae6f17262f20e9587d419ba5683e9dc93a31ee1858b98fa0cff203694d5b786"}, - {file = "biopython-1.85-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b1e4918e6399ab0183dd863527fec18b53b7c61b6f0ef95db84b4adfa430ce75"}, - {file = "biopython-1.85-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:86e487b6fe0f20a2b0138cb53f3d4dc26a7e4060ac4cb6fb1d19e194d445ef46"}, - {file = "biopython-1.85-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:327184048b5a50634ae0970119bcb8a35b76d7cefb2658a01f772915f2fb7686"}, - {file = "biopython-1.85-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66b08905fb1b3f5194f908aaf04bbad474c4e3eaebad6d9f889a04e64dd1faf4"}, - {file = "biopython-1.85-cp313-cp313-win32.whl", hash = "sha256:5a236ab1e2797c7dcf1577d80fdaafabead2908bc338eaed0aa1509dab769fef"}, - {file = "biopython-1.85-cp313-cp313-win_amd64.whl", hash = "sha256:1b61593765e9ebdb71d73307d55fd4b46eb976608d329ae6803c084d90ed34c7"}, - {file = "biopython-1.85-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d76e44b46f555da2e72ac36e757efd327f7f5f690e9f00ede6f723b48538b6d5"}, - {file = "biopython-1.85-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8469095907a17f156c76b6644829227efdf4996164f7726e6f4ca15039329776"}, - {file = "biopython-1.85-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cffc15ac46688cd4cf662b24d03037234ce00b571df67be45a942264f101f990"}, - {file = "biopython-1.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a630b3804f6c3fcae2f9b7485d7a05425e143fc570f25babbc5a4b3d3db00d7"}, - {file = "biopython-1.85-cp39-cp39-win32.whl", hash = "sha256:0ffb03cd982cb3a79326b84e789f2093880175c44eea10f3030c632f98de24f6"}, - {file = "biopython-1.85-cp39-cp39-win_amd64.whl", hash = "sha256:8208bf2d87ade066fafe9a63a2eb77486c233bc1bdda2cbf721ebee54715f1bf"}, - {file = "biopython-1.85.tar.gz", hash = "sha256:5dafab74059de4e78f49f6b5684eddae6e7ce46f09cfa059c1d1339e8b1ea0a6"}, +groups = ["main"] +files = [ + {file = "biopython-1.84-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3c8beded38884abae4c74cb6ce54142da670273fd0b2919bd0f84f6e34d3056b"}, + {file = "biopython-1.84-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b51ef31bfb79872a182a85b4113625e1b553c024bb1586c72ac98b479f8d8fe4"}, + {file = "biopython-1.84-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca8d6a88b9a9718074b3f5b450f9ea5adf7112a7dbaed55d82d5b623f5859a01"}, + {file = "biopython-1.84-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dc2e77490725060330003f73b6b7d5172f8bc160f180de5877a2e899ad999d4"}, + {file = "biopython-1.84-cp310-cp310-win32.whl", hash = "sha256:4f39b38e7625c33384954130d90f19984e91cb5af64e2fb128603359f86884ad"}, + {file = "biopython-1.84-cp310-cp310-win_amd64.whl", hash = "sha256:9e3f7476fd81f31e048965d7be2826f018686e870d96870f440b609002953954"}, + {file = "biopython-1.84-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2d4ed30aebd96b4aadeb1f04adce92795c696f5bd56d1fd45517b89059918dd4"}, + {file = "biopython-1.84-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c792508988fc3ccf18eaae2a826c9cd97f1c27fb55bb87bdce6a101fee9f5a0c"}, + {file = "biopython-1.84-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:507ac3956f3107e77fee362ecb048dafb5f97cbcf110012d091418430c3227c7"}, + {file = "biopython-1.84-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:894ee7533cca7f5f9769e2595fbe7b0dba5018f39a2170753d101a13e7585ff4"}, + {file = "biopython-1.84-cp311-cp311-win32.whl", hash = "sha256:7f4c746825721ec367c2f2d6a8cda3bc6495a1e084e5b2fbab26e9467706603f"}, + {file = "biopython-1.84-cp311-cp311-win_amd64.whl", hash = "sha256:2cb8e839ab472244b6082635ad1df67c94c05df0bd02a023103ed00ea66c4d20"}, + {file = "biopython-1.84-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ba58a6d76288333c5f178a426116953fa68204bd0cfc401694087dd4f96d0059"}, + {file = "biopython-1.84-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ee3566f6dc3acf20e238540daf896f0af20cff531521bf41fdf5143f73e209ae"}, + {file = "biopython-1.84-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89ef3967f5a88b5bb6344bef75ae83386de53fed3966d5c8c334ad885f8db08a"}, + {file = "biopython-1.84-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61765b71f84814a1eeb55ab222f43330aa7ad3e55ab91e8b444706149c67a281"}, + {file = "biopython-1.84-cp312-cp312-win32.whl", hash = "sha256:52b6098f47d6b90fc8a5e8579b81ee50047e9108f0976e69c891ae0c4817e42d"}, + {file = "biopython-1.84-cp312-cp312-win_amd64.whl", hash = "sha256:ecff2fcf5da29b600474c0bfcdbbac0f98b25e22fe60a853d0ee798c00f7396c"}, + {file = "biopython-1.84-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f4c1c9ad7da9eaf8d8f4515bf931a7f6548a468e7ef29b8429e31aaff2d95f4c"}, + {file = "biopython-1.84-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9fbd4b67d3e71b0d716a1712ab8b4e57981c6549ba17ce5626ffa8976d170da7"}, + {file = "biopython-1.84-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c425a39871f652598f502671aa5f6b5125475a91333a368a47f9c611ca96db1"}, + {file = "biopython-1.84-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b69d59f9a762c5bb5f77ed03f197dad05ebd702c34d2cae7be98f1f30e04089"}, + {file = "biopython-1.84-cp39-cp39-win32.whl", hash = "sha256:25f4ef193a307e403eb532e8f060b818e2d75f65803a2b0f4e645b0cae131b4e"}, + {file = "biopython-1.84-cp39-cp39-win_amd64.whl", hash = "sha256:b64575363bb2344073c949fd69a0bf3ea015b447aa1494e4813376855b479118"}, + {file = "biopython-1.84.tar.gz", hash = "sha256:60fbe6f996e8a6866a42698c17e552127d99a9aab3259d6249fbaabd0e0cc7b4"}, ] [package.dependencies] @@ -522,13 +539,14 @@ version = "6.2.0" description = "An easy safelist-based HTML-sanitizing tool." optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, ] [package.dependencies] -tinycss2 = {version = ">=1.1.0,<1.5", optional = true, markers = "extra == \"css\""} webencodings = "*" [package.extras] @@ -540,6 +558,7 @@ version = "1.9.0" description = "Fast, simple object-to-object and broadcast signaling" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc"}, {file = "blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf"}, @@ -547,13 +566,14 @@ files = [ [[package]] name = "bokeh" -version = "3.6.3" +version = "3.6.2" description = "Interactive plots and applications in the browser from Python" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ - {file = "bokeh-3.6.3-py3-none-any.whl", hash = "sha256:1c219e2afe1405e6ada212071ac3bee91c95acfd1aa6d620eb6f61a751407747"}, - {file = "bokeh-3.6.3.tar.gz", hash = "sha256:9b81d6a9ea62e75a04a1a9d9f931942016890beec9ab5d129a2a4432cf595c0a"}, + {file = "bokeh-3.6.2-py3-none-any.whl", hash = "sha256:fddc4b91f8b40178c0e3e83dfcc33886d7803a3a1f041a840834255e435a18c2"}, + {file = "bokeh-3.6.2.tar.gz", hash = "sha256:2f3043d9ecb3d5dc2e8c0ebf8ad55727617188d4e534f3e7208b36357e352396"}, ] [package.dependencies] @@ -569,13 +589,14 @@ xyzservices = ">=2021.09.1" [[package]] name = "botocore" -version = "1.37.1" +version = "1.35.36" description = "Low-level, data-driven core of boto 3." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "botocore-1.37.1-py3-none-any.whl", hash = "sha256:c1db1bfc5d8c6b3b6d1ca6794f605294b4264e82a7e727b88e0fef9c2b9fbb9c"}, - {file = "botocore-1.37.1.tar.gz", hash = "sha256:b194db8fb2a0ffba53568c364ae26166e7eec0445496b2ac86a6e142f3dd982f"}, + {file = "botocore-1.35.36-py3-none-any.whl", hash = "sha256:64241c778bf2dc863d93abab159e14024d97a926a5715056ef6411418cb9ead3"}, + {file = "botocore-1.35.36.tar.gz", hash = "sha256:354ec1b766f0029b5d6ff0c45d1a0f9e5007b7d2f3ec89bcdd755b208c5bc797"}, ] [package.dependencies] @@ -584,17 +605,18 @@ python-dateutil = ">=2.1,<3.0.0" urllib3 = {version = ">=1.25.4,<2.2.0 || >2.2.0,<3", markers = "python_version >= \"3.10\""} [package.extras] -crt = ["awscrt (==0.23.8)"] +crt = ["awscrt (==0.22.0)"] [[package]] name = "branca" -version = "0.8.1" +version = "0.8.0" description = "Generate complex HTML+JS pages with Python" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "branca-0.8.1-py3-none-any.whl", hash = "sha256:d29c5fab31f7c21a92e34bf3f854234e29fecdcf5d2df306b616f20d816be425"}, - {file = "branca-0.8.1.tar.gz", hash = "sha256:ac397c2d79bd13af0d04193b26d5ed17031d27609a7f1fab50c438b8ae712390"}, + {file = "branca-0.8.0-py3-none-any.whl", hash = "sha256:e78d5be39c8799a42e5c2dd1145a797a3cefc099537907bc1e4c43b6b55f7fa4"}, + {file = "branca-0.8.0.tar.gz", hash = "sha256:1f8fd0d2f3b7548f2c146093932be5d3064ba21eee6cebf92d416b7f9092324f"}, ] [package.dependencies] @@ -602,24 +624,26 @@ jinja2 = ">=3" [[package]] name = "cachetools" -version = "5.5.2" +version = "5.5.0" description = "Extensible memoizing collections and decorators" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a"}, - {file = "cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4"}, + {file = "cachetools-5.5.0-py3-none-any.whl", hash = "sha256:02134e8439cdc2ffb62023ce1debca2944c3f289d66bb17ead3ab3dede74b292"}, + {file = "cachetools-5.5.0.tar.gz", hash = "sha256:2cc24fb4cbe39633fb7badd9db9ca6295d766d9c2995f245725a46715d050f2a"}, ] [[package]] name = "certifi" -version = "2025.1.31" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" +groups = ["main"] files = [ - {file = "certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe"}, - {file = "certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] @@ -628,6 +652,8 @@ version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "implementation_name == \"pypy\" or extra == \"dev\"" files = [ {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, @@ -707,6 +733,8 @@ version = "3.4.0" description = "Validate configuration and produce human readable error messages." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, @@ -714,114 +742,129 @@ files = [ [[package]] name = "charset-normalizer" -version = "3.4.1" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false -python-versions = ">=3.7" -files = [ - {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"}, - {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"}, - {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"}, - {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"}, - {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"}, - {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"}, - {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"}, - {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"}, - {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"}, - {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"}, +python-versions = ">=3.7.0" +groups = ["main"] +files = [ + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] name = "click" -version = "8.1.8" +version = "8.1.7" description = "Composable command line interface toolkit" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2"}, - {file = "click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"}, + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, ] [package.dependencies] @@ -829,13 +872,14 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [[package]] name = "cloudpickle" -version = "3.1.1" +version = "3.1.0" description = "Pickler class to extend the standard pickle.Pickler functionality" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "cloudpickle-3.1.1-py3-none-any.whl", hash = "sha256:c8c5a44295039331ee9dad40ba100a9c7297b6f988e50e87ccdf3765a668350e"}, - {file = "cloudpickle-3.1.1.tar.gz", hash = "sha256:b216fa8ae4019d5482a8ac3c95d8f6346115d8835911fd4aefd1a445e4242c64"}, + {file = "cloudpickle-3.1.0-py3-none-any.whl", hash = "sha256:fe11acda67f61aaaec473e3afe030feb131d78a43461b718185363384f1ba12e"}, + {file = "cloudpickle-3.1.0.tar.gz", hash = "sha256:81a929b6e3c7335c863c771d673d105f02efdb89dfaba0c90495d1c64796601b"}, ] [[package]] @@ -844,6 +888,8 @@ version = "0.4.6" description = "Cross-platform colored terminal text." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +groups = ["main"] +markers = "platform_system == \"Windows\" or sys_platform == \"win32\"" files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -855,6 +901,7 @@ version = "0.2.2" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, @@ -872,6 +919,7 @@ version = "1.3.1" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, @@ -941,81 +989,82 @@ test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist" [[package]] name = "coverage" -version = "7.8.0" +version = "7.6.8" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.9" -files = [ - {file = "coverage-7.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2931f66991175369859b5fd58529cd4b73582461877ecfd859b6549869287ffe"}, - {file = "coverage-7.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52a523153c568d2c0ef8826f6cc23031dc86cffb8c6aeab92c4ff776e7951b28"}, - {file = "coverage-7.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c8a5c139aae4c35cbd7cadca1df02ea8cf28a911534fc1b0456acb0b14234f3"}, - {file = "coverage-7.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a26c0c795c3e0b63ec7da6efded5f0bc856d7c0b24b2ac84b4d1d7bc578d676"}, - {file = "coverage-7.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821f7bcbaa84318287115d54becb1915eece6918136c6f91045bb84e2f88739d"}, - {file = "coverage-7.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a321c61477ff8ee705b8a5fed370b5710c56b3a52d17b983d9215861e37b642a"}, - {file = "coverage-7.8.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ed2144b8a78f9d94d9515963ed273d620e07846acd5d4b0a642d4849e8d91a0c"}, - {file = "coverage-7.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:042e7841a26498fff7a37d6fda770d17519982f5b7d8bf5278d140b67b61095f"}, - {file = "coverage-7.8.0-cp310-cp310-win32.whl", hash = "sha256:f9983d01d7705b2d1f7a95e10bbe4091fabc03a46881a256c2787637b087003f"}, - {file = "coverage-7.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a570cd9bd20b85d1a0d7b009aaf6c110b52b5755c17be6962f8ccd65d1dbd23"}, - {file = "coverage-7.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e7ac22a0bb2c7c49f441f7a6d46c9c80d96e56f5a8bc6972529ed43c8b694e27"}, - {file = "coverage-7.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bf13d564d310c156d1c8e53877baf2993fb3073b2fc9f69790ca6a732eb4bfea"}, - {file = "coverage-7.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5761c70c017c1b0d21b0815a920ffb94a670c8d5d409d9b38857874c21f70d7"}, - {file = "coverage-7.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ff52d790c7e1628241ffbcaeb33e07d14b007b6eb00a19320c7b8a7024c040"}, - {file = "coverage-7.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d39fc4817fd67b3915256af5dda75fd4ee10621a3d484524487e33416c6f3543"}, - {file = "coverage-7.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b44674870709017e4b4036e3d0d6c17f06a0e6d4436422e0ad29b882c40697d2"}, - {file = "coverage-7.8.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8f99eb72bf27cbb167b636eb1726f590c00e1ad375002230607a844d9e9a2318"}, - {file = "coverage-7.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b571bf5341ba8c6bc02e0baeaf3b061ab993bf372d982ae509807e7f112554e9"}, - {file = "coverage-7.8.0-cp311-cp311-win32.whl", hash = "sha256:e75a2ad7b647fd8046d58c3132d7eaf31b12d8a53c0e4b21fa9c4d23d6ee6d3c"}, - {file = "coverage-7.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3043ba1c88b2139126fc72cb48574b90e2e0546d4c78b5299317f61b7f718b78"}, - {file = "coverage-7.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bbb5cc845a0292e0c520656d19d7ce40e18d0e19b22cb3e0409135a575bf79fc"}, - {file = "coverage-7.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4dfd9a93db9e78666d178d4f08a5408aa3f2474ad4d0e0378ed5f2ef71640cb6"}, - {file = "coverage-7.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f017a61399f13aa6d1039f75cd467be388d157cd81f1a119b9d9a68ba6f2830d"}, - {file = "coverage-7.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0915742f4c82208ebf47a2b154a5334155ed9ef9fe6190674b8a46c2fb89cb05"}, - {file = "coverage-7.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a40fcf208e021eb14b0fac6bdb045c0e0cab53105f93ba0d03fd934c956143a"}, - {file = "coverage-7.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a1f406a8e0995d654b2ad87c62caf6befa767885301f3b8f6f73e6f3c31ec3a6"}, - {file = "coverage-7.8.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:77af0f6447a582fdc7de5e06fa3757a3ef87769fbb0fdbdeba78c23049140a47"}, - {file = "coverage-7.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f2d32f95922927186c6dbc8bc60df0d186b6edb828d299ab10898ef3f40052fe"}, - {file = "coverage-7.8.0-cp312-cp312-win32.whl", hash = "sha256:769773614e676f9d8e8a0980dd7740f09a6ea386d0f383db6821df07d0f08545"}, - {file = "coverage-7.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:e5d2b9be5b0693cf21eb4ce0ec8d211efb43966f6657807f6859aab3814f946b"}, - {file = "coverage-7.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ac46d0c2dd5820ce93943a501ac5f6548ea81594777ca585bf002aa8854cacd"}, - {file = "coverage-7.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:771eb7587a0563ca5bb6f622b9ed7f9d07bd08900f7589b4febff05f469bea00"}, - {file = "coverage-7.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42421e04069fb2cbcbca5a696c4050b84a43b05392679d4068acbe65449b5c64"}, - {file = "coverage-7.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:554fec1199d93ab30adaa751db68acec2b41c5602ac944bb19187cb9a41a8067"}, - {file = "coverage-7.8.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aaeb00761f985007b38cf463b1d160a14a22c34eb3f6a39d9ad6fc27cb73008"}, - {file = "coverage-7.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:581a40c7b94921fffd6457ffe532259813fc68eb2bdda60fa8cc343414ce3733"}, - {file = "coverage-7.8.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f319bae0321bc838e205bf9e5bc28f0a3165f30c203b610f17ab5552cff90323"}, - {file = "coverage-7.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:04bfec25a8ef1c5f41f5e7e5c842f6b615599ca8ba8391ec33a9290d9d2db3a3"}, - {file = "coverage-7.8.0-cp313-cp313-win32.whl", hash = "sha256:dd19608788b50eed889e13a5d71d832edc34fc9dfce606f66e8f9f917eef910d"}, - {file = "coverage-7.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:a9abbccd778d98e9c7e85038e35e91e67f5b520776781d9a1e2ee9d400869487"}, - {file = "coverage-7.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:18c5ae6d061ad5b3e7eef4363fb27a0576012a7447af48be6c75b88494c6cf25"}, - {file = "coverage-7.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:95aa6ae391a22bbbce1b77ddac846c98c5473de0372ba5c463480043a07bff42"}, - {file = "coverage-7.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e013b07ba1c748dacc2a80e69a46286ff145935f260eb8c72df7185bf048f502"}, - {file = "coverage-7.8.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d766a4f0e5aa1ba056ec3496243150698dc0481902e2b8559314368717be82b1"}, - {file = "coverage-7.8.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad80e6b4a0c3cb6f10f29ae4c60e991f424e6b14219d46f1e7d442b938ee68a4"}, - {file = "coverage-7.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b87eb6fc9e1bb8f98892a2458781348fa37e6925f35bb6ceb9d4afd54ba36c73"}, - {file = "coverage-7.8.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:d1ba00ae33be84066cfbe7361d4e04dec78445b2b88bdb734d0d1cbab916025a"}, - {file = "coverage-7.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f3c38e4e5ccbdc9198aecc766cedbb134b2d89bf64533973678dfcf07effd883"}, - {file = "coverage-7.8.0-cp313-cp313t-win32.whl", hash = "sha256:379fe315e206b14e21db5240f89dc0774bdd3e25c3c58c2c733c99eca96f1ada"}, - {file = "coverage-7.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2e4b6b87bb0c846a9315e3ab4be2d52fac905100565f4b92f02c445c8799e257"}, - {file = "coverage-7.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa260de59dfb143af06dcf30c2be0b200bed2a73737a8a59248fcb9fa601ef0f"}, - {file = "coverage-7.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:96121edfa4c2dfdda409877ea8608dd01de816a4dc4a0523356067b305e4e17a"}, - {file = "coverage-7.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b8af63b9afa1031c0ef05b217faa598f3069148eeee6bb24b79da9012423b82"}, - {file = "coverage-7.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b1f4af0d4afe495cd4787a68e00f30f1d15939f550e869de90a86efa7e0814"}, - {file = "coverage-7.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ec0be97723ae72d63d3aa41961a0b9a6f5a53ff599813c324548d18e3b9e8c"}, - {file = "coverage-7.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8a1d96e780bdb2d0cbb297325711701f7c0b6f89199a57f2049e90064c29f6bd"}, - {file = "coverage-7.8.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f1d8a2a57b47142b10374902777e798784abf400a004b14f1b0b9eaf1e528ba4"}, - {file = "coverage-7.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cf60dd2696b457b710dd40bf17ad269d5f5457b96442f7f85722bdb16fa6c899"}, - {file = "coverage-7.8.0-cp39-cp39-win32.whl", hash = "sha256:be945402e03de47ba1872cd5236395e0f4ad635526185a930735f66710e1bd3f"}, - {file = "coverage-7.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:90e7fbc6216ecaffa5a880cdc9c77b7418c1dcb166166b78dbc630d07f278cc3"}, - {file = "coverage-7.8.0-pp39.pp310.pp311-none-any.whl", hash = "sha256:b8194fb8e50d556d5849753de991d390c5a1edeeba50f68e3a9253fbd8bf8ccd"}, - {file = "coverage-7.8.0-py3-none-any.whl", hash = "sha256:dbf364b4c5e7bae9250528167dfe40219b62e2d573c854d74be213e1e52069f7"}, - {file = "coverage-7.8.0.tar.gz", hash = "sha256:7a3d62b3b03b4b6fd41a085f3574874cf946cb4604d2b4d3e8dca8cd570ca501"}, +groups = ["main"] +markers = "extra == \"dev\"" +files = [ + {file = "coverage-7.6.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b39e6011cd06822eb964d038d5dff5da5d98652b81f5ecd439277b32361a3a50"}, + {file = "coverage-7.6.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63c19702db10ad79151a059d2d6336fe0c470f2e18d0d4d1a57f7f9713875dcf"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3985b9be361d8fb6b2d1adc9924d01dec575a1d7453a14cccd73225cb79243ee"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644ec81edec0f4ad17d51c838a7d01e42811054543b76d4ba2c5d6af741ce2a6"}, + {file = "coverage-7.6.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f188a2402f8359cf0c4b1fe89eea40dc13b52e7b4fd4812450da9fcd210181d"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e19122296822deafce89a0c5e8685704c067ae65d45e79718c92df7b3ec3d331"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13618bed0c38acc418896005732e565b317aa9e98d855a0e9f211a7ffc2d6638"}, + {file = "coverage-7.6.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:193e3bffca48ad74b8c764fb4492dd875038a2f9925530cb094db92bb5e47bed"}, + {file = "coverage-7.6.8-cp310-cp310-win32.whl", hash = "sha256:3988665ee376abce49613701336544041f2117de7b7fbfe91b93d8ff8b151c8e"}, + {file = "coverage-7.6.8-cp310-cp310-win_amd64.whl", hash = "sha256:f56f49b2553d7dd85fd86e029515a221e5c1f8cb3d9c38b470bc38bde7b8445a"}, + {file = "coverage-7.6.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:86cffe9c6dfcfe22e28027069725c7f57f4b868a3f86e81d1c62462764dc46d4"}, + {file = "coverage-7.6.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d82ab6816c3277dc962cfcdc85b1efa0e5f50fb2c449432deaf2398a2928ab94"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13690e923a3932e4fad4c0ebfb9cb5988e03d9dcb4c5150b5fcbf58fd8bddfc4"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4be32da0c3827ac9132bb488d331cb32e8d9638dd41a0557c5569d57cf22c9c1"}, + {file = "coverage-7.6.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e6c85bbdc809383b509d732b06419fb4544dca29ebe18480379633623baafb"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:768939f7c4353c0fac2f7c37897e10b1414b571fd85dd9fc49e6a87e37a2e0d8"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e44961e36cb13c495806d4cac67640ac2866cb99044e210895b506c26ee63d3a"}, + {file = "coverage-7.6.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3ea8bb1ab9558374c0ab591783808511d135a833c3ca64a18ec927f20c4030f0"}, + {file = "coverage-7.6.8-cp311-cp311-win32.whl", hash = "sha256:629a1ba2115dce8bf75a5cce9f2486ae483cb89c0145795603d6554bdc83e801"}, + {file = "coverage-7.6.8-cp311-cp311-win_amd64.whl", hash = "sha256:fb9fc32399dca861584d96eccd6c980b69bbcd7c228d06fb74fe53e007aa8ef9"}, + {file = "coverage-7.6.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e683e6ecc587643f8cde8f5da6768e9d165cd31edf39ee90ed7034f9ca0eefee"}, + {file = "coverage-7.6.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1defe91d41ce1bd44b40fabf071e6a01a5aa14de4a31b986aa9dfd1b3e3e414a"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7ad66e8e50225ebf4236368cc43c37f59d5e6728f15f6e258c8639fa0dd8e6d"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fe47da3e4fda5f1abb5709c156eca207eacf8007304ce3019eb001e7a7204cb"}, + {file = "coverage-7.6.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:202a2d645c5a46b84992f55b0a3affe4f0ba6b4c611abec32ee88358db4bb649"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4674f0daa1823c295845b6a740d98a840d7a1c11df00d1fd62614545c1583787"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:74610105ebd6f33d7c10f8907afed696e79c59e3043c5f20eaa3a46fddf33b4c"}, + {file = "coverage-7.6.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:37cda8712145917105e07aab96388ae76e787270ec04bcb9d5cc786d7cbb8443"}, + {file = "coverage-7.6.8-cp312-cp312-win32.whl", hash = "sha256:9e89d5c8509fbd6c03d0dd1972925b22f50db0792ce06324ba069f10787429ad"}, + {file = "coverage-7.6.8-cp312-cp312-win_amd64.whl", hash = "sha256:379c111d3558272a2cae3d8e57e6b6e6f4fe652905692d54bad5ea0ca37c5ad4"}, + {file = "coverage-7.6.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0b0c69f4f724c64dfbfe79f5dfb503b42fe6127b8d479b2677f2b227478db2eb"}, + {file = "coverage-7.6.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c15b32a7aca8038ed7644f854bf17b663bc38e1671b5d6f43f9a2b2bd0c46f63"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63068a11171e4276f6ece913bde059e77c713b48c3a848814a6537f35afb8365"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f4548c5ead23ad13fb7a2c8ea541357474ec13c2b736feb02e19a3085fac002"}, + {file = "coverage-7.6.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4b4299dd0d2c67caaaf286d58aef5e75b125b95615dda4542561a5a566a1e3"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c9ebfb2507751f7196995142f057d1324afdab56db1d9743aab7f50289abd022"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:c1b4474beee02ede1eef86c25ad4600a424fe36cff01a6103cb4533c6bf0169e"}, + {file = "coverage-7.6.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d9fd2547e6decdbf985d579cf3fc78e4c1d662b9b0ff7cc7862baaab71c9cc5b"}, + {file = "coverage-7.6.8-cp313-cp313-win32.whl", hash = "sha256:8aae5aea53cbfe024919715eca696b1a3201886ce83790537d1c3668459c7146"}, + {file = "coverage-7.6.8-cp313-cp313-win_amd64.whl", hash = "sha256:ae270e79f7e169ccfe23284ff5ea2d52a6f401dc01b337efb54b3783e2ce3f28"}, + {file = "coverage-7.6.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:de38add67a0af869b0d79c525d3e4588ac1ffa92f39116dbe0ed9753f26eba7d"}, + {file = "coverage-7.6.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b07c25d52b1c16ce5de088046cd2432b30f9ad5e224ff17c8f496d9cb7d1d451"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62a66ff235e4c2e37ed3b6104d8b478d767ff73838d1222132a7a026aa548764"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09b9f848b28081e7b975a3626e9081574a7b9196cde26604540582da60235fdf"}, + {file = "coverage-7.6.8-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:093896e530c38c8e9c996901858ac63f3d4171268db2c9c8b373a228f459bbc5"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9a7b8ac36fd688c8361cbc7bf1cb5866977ece6e0b17c34aa0df58bda4fa18a4"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:38c51297b35b3ed91670e1e4efb702b790002e3245a28c76e627478aa3c10d83"}, + {file = "coverage-7.6.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2e4e0f60cb4bd7396108823548e82fdab72d4d8a65e58e2c19bbbc2f1e2bfa4b"}, + {file = "coverage-7.6.8-cp313-cp313t-win32.whl", hash = "sha256:6535d996f6537ecb298b4e287a855f37deaf64ff007162ec0afb9ab8ba3b8b71"}, + {file = "coverage-7.6.8-cp313-cp313t-win_amd64.whl", hash = "sha256:c79c0685f142ca53256722a384540832420dff4ab15fec1863d7e5bc8691bdcc"}, + {file = "coverage-7.6.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3ac47fa29d8d41059ea3df65bd3ade92f97ee4910ed638e87075b8e8ce69599e"}, + {file = "coverage-7.6.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:24eda3a24a38157eee639ca9afe45eefa8d2420d49468819ac5f88b10de84f4c"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4c81ed2820b9023a9a90717020315e63b17b18c274a332e3b6437d7ff70abe0"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd55f8fc8fa494958772a2a7302b0354ab16e0b9272b3c3d83cdb5bec5bd1779"}, + {file = "coverage-7.6.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f39e2f3530ed1626c66e7493be7a8423b023ca852aacdc91fb30162c350d2a92"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:716a78a342679cd1177bc8c2fe957e0ab91405bd43a17094324845200b2fddf4"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:177f01eeaa3aee4a5ffb0d1439c5952b53d5010f86e9d2667963e632e30082cc"}, + {file = "coverage-7.6.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:912e95017ff51dc3d7b6e2be158dedc889d9a5cc3382445589ce554f1a34c0ea"}, + {file = "coverage-7.6.8-cp39-cp39-win32.whl", hash = "sha256:4db3ed6a907b555e57cc2e6f14dc3a4c2458cdad8919e40b5357ab9b6db6c43e"}, + {file = "coverage-7.6.8-cp39-cp39-win_amd64.whl", hash = "sha256:428ac484592f780e8cd7b6b14eb568f7c85460c92e2a37cb0c0e5186e1a0d076"}, + {file = "coverage-7.6.8-pp39.pp310-none-any.whl", hash = "sha256:5c52a036535d12590c32c49209e79cabaad9f9ad8aa4cbd875b68c4d67a9cbce"}, + {file = "coverage-7.6.8.tar.gz", hash = "sha256:8b2b8503edb06822c86d82fa64a4a5cb0760bb8f31f26e138ec743f422f37cfc"}, ] [package.dependencies] tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} [package.extras] -toml = ["tomli"] +toml = ["tomli ; python_full_version <= \"3.11.0a6\""] [[package]] name = "dash" @@ -1023,6 +1072,7 @@ version = "2.18.2" description = "A Python framework for building reactive web-apps. Developed by Plotly." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "dash-2.18.2-py3-none-any.whl", hash = "sha256:0ce0479d1bc958e934630e2de7023b8a4558f23ce1f9f5a4b34b65eb3903a869"}, {file = "dash-2.18.2.tar.gz", hash = "sha256:20e8404f73d0fe88ce2eae33c25bbc513cbe52f30d23a401fa5f24dbb44296c8"}, @@ -1056,6 +1106,7 @@ version = "2.0.0" description = "Core component suite for Dash" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "dash_core_components-2.0.0-py3-none-any.whl", hash = "sha256:52b8e8cce13b18d0802ee3acbc5e888cb1248a04968f962d63d070400af2e346"}, {file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"}, @@ -1067,6 +1118,7 @@ version = "1.0.2" description = "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "dash_cytoscape-1.0.2.tar.gz", hash = "sha256:a61019d2184d63a2b3b5c06d056d3b867a04223a674cc3c7cf900a561a9a59aa"}, ] @@ -1083,6 +1135,7 @@ version = "2.0.0" description = "Vanilla HTML components for Dash" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "dash_html_components-2.0.0-py3-none-any.whl", hash = "sha256:b42cc903713c9706af03b3f2548bda4be7307a7cf89b7d6eae3da872717d1b63"}, {file = "dash_html_components-2.0.0.tar.gz", hash = "sha256:8703a601080f02619a6390998e0b3da4a5daabe97a1fd7a9cebc09d015f26e50"}, @@ -1094,6 +1147,7 @@ version = "5.0.0" description = "Dash table" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "dash_table-5.0.0-py3-none-any.whl", hash = "sha256:19036fa352bb1c11baf38068ec62d172f0515f73ca3276c79dee49b95ddc16c9"}, {file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"}, @@ -1101,13 +1155,14 @@ files = [ [[package]] name = "dask" -version = "2025.3.0" +version = "2024.12.0" description = "Parallel PyData with Task Scheduling" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ - {file = "dask-2025.3.0-py3-none-any.whl", hash = "sha256:b5d72bb33788904a218fd7da1850238517592358ecc79c30bb5c188a71df506d"}, - {file = "dask-2025.3.0.tar.gz", hash = "sha256:322834f44ebc24abeb564c56ccb817c97d6e7af6be71ad0ad96b78b51f2e0e85"}, + {file = "dask-2024.12.0-py3-none-any.whl", hash = "sha256:e038e87b9f06e7927b81ecde6cf2b49aa699bb902fec11abba5697cb48baeb8d"}, + {file = "dask-2024.12.0.tar.gz", hash = "sha256:ffd02b06ac06b993df0b48e0ba4fe02abceb5c8b34b40bd91d63f33ec7a272a4"}, ] [package.dependencies] @@ -1124,44 +1179,45 @@ toolz = ">=0.10.0" [package.extras] array = ["numpy (>=1.24)"] complete = ["dask[array,dataframe,diagnostics,distributed]", "lz4 (>=4.3.2)", "pyarrow (>=14.0.1)"] -dataframe = ["dask[array]", "pandas (>=2.0)", "pyarrow (>=14.0.1)"] +dataframe = ["dask-expr (>=1.1,<1.2)", "dask[array]", "pandas (>=2.0)"] diagnostics = ["bokeh (>=3.1.0)", "jinja2 (>=2.10.3)"] -distributed = ["distributed (==2025.3.0)"] -test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] +distributed = ["distributed (==2024.12.0)"] +test = ["pandas[test]", "pre-commit", "pytest", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist"] [[package]] name = "debugpy" -version = "1.8.14" +version = "1.8.9" description = "An implementation of the Debug Adapter Protocol for Python" optional = false python-versions = ">=3.8" -files = [ - {file = "debugpy-1.8.14-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:93fee753097e85623cab1c0e6a68c76308cd9f13ffdf44127e6fab4fbf024339"}, - {file = "debugpy-1.8.14-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d937d93ae4fa51cdc94d3e865f535f185d5f9748efb41d0d49e33bf3365bd79"}, - {file = "debugpy-1.8.14-cp310-cp310-win32.whl", hash = "sha256:c442f20577b38cc7a9aafecffe1094f78f07fb8423c3dddb384e6b8f49fd2987"}, - {file = "debugpy-1.8.14-cp310-cp310-win_amd64.whl", hash = "sha256:f117dedda6d969c5c9483e23f573b38f4e39412845c7bc487b6f2648df30fe84"}, - {file = "debugpy-1.8.14-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:1b2ac8c13b2645e0b1eaf30e816404990fbdb168e193322be8f545e8c01644a9"}, - {file = "debugpy-1.8.14-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf431c343a99384ac7eab2f763980724834f933a271e90496944195318c619e2"}, - {file = "debugpy-1.8.14-cp311-cp311-win32.whl", hash = "sha256:c99295c76161ad8d507b413cd33422d7c542889fbb73035889420ac1fad354f2"}, - {file = "debugpy-1.8.14-cp311-cp311-win_amd64.whl", hash = "sha256:7816acea4a46d7e4e50ad8d09d963a680ecc814ae31cdef3622eb05ccacf7b01"}, - {file = "debugpy-1.8.14-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:8899c17920d089cfa23e6005ad9f22582fd86f144b23acb9feeda59e84405b84"}, - {file = "debugpy-1.8.14-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6bb5c0dcf80ad5dbc7b7d6eac484e2af34bdacdf81df09b6a3e62792b722826"}, - {file = "debugpy-1.8.14-cp312-cp312-win32.whl", hash = "sha256:281d44d248a0e1791ad0eafdbbd2912ff0de9eec48022a5bfbc332957487ed3f"}, - {file = "debugpy-1.8.14-cp312-cp312-win_amd64.whl", hash = "sha256:5aa56ef8538893e4502a7d79047fe39b1dae08d9ae257074c6464a7b290b806f"}, - {file = "debugpy-1.8.14-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:329a15d0660ee09fec6786acdb6e0443d595f64f5d096fc3e3ccf09a4259033f"}, - {file = "debugpy-1.8.14-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f920c7f9af409d90f5fd26e313e119d908b0dd2952c2393cd3247a462331f15"}, - {file = "debugpy-1.8.14-cp313-cp313-win32.whl", hash = "sha256:3784ec6e8600c66cbdd4ca2726c72d8ca781e94bce2f396cc606d458146f8f4e"}, - {file = "debugpy-1.8.14-cp313-cp313-win_amd64.whl", hash = "sha256:684eaf43c95a3ec39a96f1f5195a7ff3d4144e4a18d69bb66beeb1a6de605d6e"}, - {file = "debugpy-1.8.14-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:d5582bcbe42917bc6bbe5c12db1bffdf21f6bfc28d4554b738bf08d50dc0c8c3"}, - {file = "debugpy-1.8.14-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5349b7c3735b766a281873fbe32ca9cca343d4cc11ba4a743f84cb854339ff35"}, - {file = "debugpy-1.8.14-cp38-cp38-win32.whl", hash = "sha256:7118d462fe9724c887d355eef395fae68bc764fd862cdca94e70dcb9ade8a23d"}, - {file = "debugpy-1.8.14-cp38-cp38-win_amd64.whl", hash = "sha256:d235e4fa78af2de4e5609073972700523e372cf5601742449970110d565ca28c"}, - {file = "debugpy-1.8.14-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:413512d35ff52c2fb0fd2d65e69f373ffd24f0ecb1fac514c04a668599c5ce7f"}, - {file = "debugpy-1.8.14-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c9156f7524a0d70b7a7e22b2e311d8ba76a15496fb00730e46dcdeedb9e1eea"}, - {file = "debugpy-1.8.14-cp39-cp39-win32.whl", hash = "sha256:b44985f97cc3dd9d52c42eb59ee9d7ee0c4e7ecd62bca704891f997de4cef23d"}, - {file = "debugpy-1.8.14-cp39-cp39-win_amd64.whl", hash = "sha256:b1528cfee6c1b1c698eb10b6b096c598738a8238822d218173d21c3086de8123"}, - {file = "debugpy-1.8.14-py2.py3-none-any.whl", hash = "sha256:5cd9a579d553b6cb9759a7908a41988ee6280b961f24f63336835d9418216a20"}, - {file = "debugpy-1.8.14.tar.gz", hash = "sha256:7cd287184318416850aa8b60ac90105837bb1e59531898c07569d197d2ed5322"}, +groups = ["main"] +files = [ + {file = "debugpy-1.8.9-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:cfe1e6c6ad7178265f74981edf1154ffce97b69005212fbc90ca22ddfe3d017e"}, + {file = "debugpy-1.8.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ada7fb65102a4d2c9ab62e8908e9e9f12aed9d76ef44880367bc9308ebe49a0f"}, + {file = "debugpy-1.8.9-cp310-cp310-win32.whl", hash = "sha256:c36856343cbaa448171cba62a721531e10e7ffb0abff838004701454149bc037"}, + {file = "debugpy-1.8.9-cp310-cp310-win_amd64.whl", hash = "sha256:17c5e0297678442511cf00a745c9709e928ea4ca263d764e90d233208889a19e"}, + {file = "debugpy-1.8.9-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:b74a49753e21e33e7cf030883a92fa607bddc4ede1aa4145172debc637780040"}, + {file = "debugpy-1.8.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62d22dacdb0e296966d7d74a7141aaab4bec123fa43d1a35ddcb39bf9fd29d70"}, + {file = "debugpy-1.8.9-cp311-cp311-win32.whl", hash = "sha256:8138efff315cd09b8dcd14226a21afda4ca582284bf4215126d87342bba1cc66"}, + {file = "debugpy-1.8.9-cp311-cp311-win_amd64.whl", hash = "sha256:ff54ef77ad9f5c425398efb150239f6fe8e20c53ae2f68367eba7ece1e96226d"}, + {file = "debugpy-1.8.9-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:957363d9a7a6612a37458d9a15e72d03a635047f946e5fceee74b50d52a9c8e2"}, + {file = "debugpy-1.8.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e565fc54b680292b418bb809f1386f17081d1346dca9a871bf69a8ac4071afe"}, + {file = "debugpy-1.8.9-cp312-cp312-win32.whl", hash = "sha256:3e59842d6c4569c65ceb3751075ff8d7e6a6ada209ceca6308c9bde932bcef11"}, + {file = "debugpy-1.8.9-cp312-cp312-win_amd64.whl", hash = "sha256:66eeae42f3137eb428ea3a86d4a55f28da9bd5a4a3d369ba95ecc3a92c1bba53"}, + {file = "debugpy-1.8.9-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:957ecffff80d47cafa9b6545de9e016ae8c9547c98a538ee96ab5947115fb3dd"}, + {file = "debugpy-1.8.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1efbb3ff61487e2c16b3e033bc8595aea578222c08aaf3c4bf0f93fadbd662ee"}, + {file = "debugpy-1.8.9-cp313-cp313-win32.whl", hash = "sha256:7c4d65d03bee875bcb211c76c1d8f10f600c305dbd734beaed4077e902606fee"}, + {file = "debugpy-1.8.9-cp313-cp313-win_amd64.whl", hash = "sha256:e46b420dc1bea64e5bbedd678148be512442bc589b0111bd799367cde051e71a"}, + {file = "debugpy-1.8.9-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:472a3994999fe6c0756945ffa359e9e7e2d690fb55d251639d07208dbc37caea"}, + {file = "debugpy-1.8.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:365e556a4772d7d0d151d7eb0e77ec4db03bcd95f26b67b15742b88cacff88e9"}, + {file = "debugpy-1.8.9-cp38-cp38-win32.whl", hash = "sha256:54a7e6d3014c408eb37b0b06021366ee985f1539e12fe49ca2ee0d392d9ceca5"}, + {file = "debugpy-1.8.9-cp38-cp38-win_amd64.whl", hash = "sha256:8e99c0b1cc7bf86d83fb95d5ccdc4ad0586d4432d489d1f54e4055bcc795f693"}, + {file = "debugpy-1.8.9-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:7e8b079323a56f719977fde9d8115590cb5e7a1cba2fcee0986ef8817116e7c1"}, + {file = "debugpy-1.8.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6953b335b804a41f16a192fa2e7851bdcfd92173cbb2f9f777bb934f49baab65"}, + {file = "debugpy-1.8.9-cp39-cp39-win32.whl", hash = "sha256:7e646e62d4602bb8956db88b1e72fe63172148c1e25c041e03b103a25f36673c"}, + {file = "debugpy-1.8.9-cp39-cp39-win_amd64.whl", hash = "sha256:3d9755e77a2d680ce3d2c5394a444cf42be4a592caaf246dbfbdd100ffcf7ae5"}, + {file = "debugpy-1.8.9-py2.py3-none-any.whl", hash = "sha256:cc37a6c9987ad743d9c3a14fa1b1a14b7e4e6041f9dd0c8abf8895fe7a97b899"}, + {file = "debugpy-1.8.9.zip", hash = "sha256:1339e14c7d980407248f09824d1b25ff5c5616651689f1e0f0e51bdead3ea13e"}, ] [[package]] @@ -1170,6 +1226,8 @@ version = "1.4.10" description = "Create decorators easily in python." optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "decopatch-1.4.10-py2.py3-none-any.whl", hash = "sha256:e151f7f93de2b1b3fd3f3272dcc7cefd1a69f68ec1c2d8e288ecd9deb36dc5f7"}, {file = "decopatch-1.4.10.tar.gz", hash = "sha256:957f49c93f4150182c23f8fb51d13bb3213e0f17a79e09c8cca7057598b55720"}, @@ -1180,13 +1238,14 @@ makefun = ">=1.5.0" [[package]] name = "decorator" -version = "5.2.1" +version = "5.1.1" description = "Decorators for Humans" optional = false -python-versions = ">=3.8" +python-versions = ">=3.5" +groups = ["main"] files = [ - {file = "decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a"}, - {file = "decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360"}, + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, ] [[package]] @@ -1195,6 +1254,8 @@ version = "0.7.1" description = "XML bomb protection for Python stdlib modules" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, @@ -1206,6 +1267,8 @@ version = "0.3.9" description = "Distribution utilities" optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"}, {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"}, @@ -1213,19 +1276,20 @@ files = [ [[package]] name = "distributed" -version = "2025.3.0" +version = "2024.12.0" description = "Distributed scheduler for Dask" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ - {file = "distributed-2025.3.0-py3-none-any.whl", hash = "sha256:ebdacd181873b39bc30185857a5a856f051efaaf42ef2a8f507708857acdc6a9"}, - {file = "distributed-2025.3.0.tar.gz", hash = "sha256:84a68c91db2a106c752ca7845fba8cd92ad4f3545c0fb2d9b6dec0f44b225539"}, + {file = "distributed-2024.12.0-py3-none-any.whl", hash = "sha256:ed05aa13b6c62b69b33d1ba7d1ca95e78406c8f37163fafd07f7ca94ae036b66"}, + {file = "distributed-2024.12.0.tar.gz", hash = "sha256:6a2c04e63d31973ee3c1f2160d66521ed8f08e637d6a25a450e7561582920f38"}, ] [package.dependencies] click = ">=8.0" cloudpickle = ">=3.0.0" -dask = "2025.3.0" +dask = "2024.12.0" jinja2 = ">=2.10.3" locket = ">=1.0.0" msgpack = ">=1.0.2" @@ -1245,6 +1309,8 @@ version = "0.21.2" description = "Docutils -- Python Documentation Utilities" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2"}, {file = "docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f"}, @@ -1256,6 +1322,8 @@ version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "python_version == \"3.10\"" files = [ {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, @@ -1270,6 +1338,8 @@ version = "2.1.1" description = "execnet: rapid multi-Python deployment" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "execnet-2.1.1-py3-none-any.whl", hash = "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc"}, {file = "execnet-2.1.1.tar.gz", hash = "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3"}, @@ -1280,17 +1350,18 @@ testing = ["hatch", "pre-commit", "pytest", "tox"] [[package]] name = "executing" -version = "2.2.0" +version = "2.1.0" description = "Get the currently executing AST node of a frame, and other information" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa"}, - {file = "executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755"}, + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, ] [package.extras] -tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich ; python_version >= \"3.11\""] [[package]] name = "fasteners" @@ -1298,6 +1369,8 @@ version = "0.19" description = "A python package that provides useful locks" optional = false python-versions = ">=3.6" +groups = ["main"] +markers = "sys_platform != \"emscripten\"" files = [ {file = "fasteners-0.19-py3-none-any.whl", hash = "sha256:758819cb5d94cdedf4e836988b74de396ceacb8e2794d21f82d131fd9ee77237"}, {file = "fasteners-0.19.tar.gz", hash = "sha256:b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0ded09c"}, @@ -1309,6 +1382,8 @@ version = "2.21.1" description = "Fastest Python implementation of JSON schema" optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"}, {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"}, @@ -1319,19 +1394,21 @@ devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benc [[package]] name = "filelock" -version = "3.18.0" +version = "3.16.1" description = "A platform independent file lock." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de"}, - {file = "filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2"}, + {file = "filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0"}, + {file = "filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435"}, ] [package.extras] -docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"] -testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"] -typing = ["typing-extensions (>=4.12.2)"] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4.1)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.6.1)", "diff-cover (>=9.2)", "pytest (>=8.3.3)", "pytest-asyncio (>=0.24)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.26.4)"] +typing = ["typing-extensions (>=4.12.2) ; python_version < \"3.11\""] [[package]] name = "flask" @@ -1339,6 +1416,7 @@ version = "3.0.3" description = "A simple framework for building complex web applications." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "flask-3.0.3-py3-none-any.whl", hash = "sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3"}, {file = "flask-3.0.3.tar.gz", hash = "sha256:ceb27b0af3823ea2737928a4d99d125a06175b8512c445cbd9a9ce200ef76842"}, @@ -1361,6 +1439,8 @@ version = "1.5.1" description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" optional = false python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, @@ -1372,6 +1452,7 @@ version = "1.5.0" description = "A list-like structure which implements collections.abc.MutableSequence" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, @@ -1469,13 +1550,14 @@ files = [ [[package]] name = "fsspec" -version = "2025.3.2" +version = "2024.10.0" description = "File-system specification" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "fsspec-2025.3.2-py3-none-any.whl", hash = "sha256:2daf8dc3d1dfa65b6aa37748d112773a7a08416f6c70d96b264c96476ecaf711"}, - {file = "fsspec-2025.3.2.tar.gz", hash = "sha256:e52c77ef398680bbd6a98c0e628fbc469491282981209907bbc8aea76a04fdc6"}, + {file = "fsspec-2024.10.0-py3-none-any.whl", hash = "sha256:03b9a6785766a4de40368b88906366755e2819e758b83705c88cd7cb5fe81871"}, + {file = "fsspec-2024.10.0.tar.gz", hash = "sha256:eda2d8a4116d4f2429db8550f2457da57279247dd930bb12f821b58391359493"}, ] [package.extras] @@ -1502,25 +1584,26 @@ sftp = ["paramiko"] smb = ["smbprotocol"] ssh = ["paramiko"] test = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "numpy", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "requests"] -test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"] +test-downstream = ["aiobotocore (>=2.5.4,<3.0.0)", "dask-expr", "dask[dataframe,test]", "moto[server] (>4,<5)", "pytest-timeout", "xarray"] test-full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "cloudpickle", "dask", "distributed", "dropbox", "dropboxdrivefs", "fastparquet", "fusepy", "gcsfs", "jinja2", "kerchunk", "libarchive-c", "lz4", "notebook", "numpy", "ocifs", "pandas", "panel", "paramiko", "pyarrow", "pyarrow (>=1)", "pyftpdlib", "pygit2", "pytest", "pytest-asyncio (!=0.22.0)", "pytest-benchmark", "pytest-cov", "pytest-mock", "pytest-recording", "pytest-rerunfailures", "python-snappy", "requests", "smbprotocol", "tqdm", "urllib3", "zarr", "zstandard"] tqdm = ["tqdm"] [[package]] name = "gcsfs" -version = "2025.3.2" +version = "2024.10.0" description = "Convenient Filesystem interface over GCS" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "gcsfs-2025.3.2-py2.py3-none-any.whl", hash = "sha256:1bdecb530fbf3604a31f00f858a208e0770baf24d405a0b9df99fdde35737745"}, - {file = "gcsfs-2025.3.2.tar.gz", hash = "sha256:fe300179492e63e309fecb11e4de7c15a51172eefa2b846d4b3659960216bba8"}, + {file = "gcsfs-2024.10.0-py2.py3-none-any.whl", hash = "sha256:bb2d23547e61203ea2dda5fa6c4b91a0c34b74ebe8bb6ab1926f6c33381bceb2"}, + {file = "gcsfs-2024.10.0.tar.gz", hash = "sha256:5df54cfe568e8fdeea5aafa7fed695cdc69a9a674e991ca8c1ce634f5df1d314"}, ] [package.dependencies] aiohttp = "<4.0.0a0 || >4.0.0a0,<4.0.0a1 || >4.0.0a1" decorator = ">4.1.2" -fsspec = "2025.3.2" +fsspec = "2024.10.0" google-auth = ">=1.2" google-auth-oauthlib = "*" google-cloud-storage = "*" @@ -1532,37 +1615,39 @@ gcsfuse = ["fusepy"] [[package]] name = "google-api-core" -version = "2.24.2" +version = "2.23.0" description = "Google API client core library" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "google_api_core-2.24.2-py3-none-any.whl", hash = "sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9"}, - {file = "google_api_core-2.24.2.tar.gz", hash = "sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696"}, + {file = "google_api_core-2.23.0-py3-none-any.whl", hash = "sha256:c20100d4c4c41070cf365f1d8ddf5365915291b5eb11b83829fbd1c999b5122f"}, + {file = "google_api_core-2.23.0.tar.gz", hash = "sha256:2ceb087315e6af43f256704b871d99326b1f12a9d6ce99beaedec99ba26a0ace"}, ] [package.dependencies] -google-auth = ">=2.14.1,<3.0.0" -googleapis-common-protos = ">=1.56.2,<2.0.0" -proto-plus = ">=1.22.3,<2.0.0" -protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" -requests = ">=2.18.0,<3.0.0" +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +proto-plus = ">=1.22.3,<2.0.0dev" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" [package.extras] async-rest = ["google-auth[aiohttp] (>=2.35.0,<3.0.dev0)"] -grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev) ; python_version >= \"3.11\"", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0) ; python_version >= \"3.11\""] grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] [[package]] name = "google-auth" -version = "2.38.0" +version = "2.36.0" description = "Google Authentication Library" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "google_auth-2.38.0-py2.py3-none-any.whl", hash = "sha256:e7dae6694313f434a2727bf2906f27ad259bae090d7aa896590d86feec3d9d4a"}, - {file = "google_auth-2.38.0.tar.gz", hash = "sha256:8285113607d3b80a3f1543b75962447ba8a09fe85783432a784fdeef6ac094c4"}, + {file = "google_auth-2.36.0-py2.py3-none-any.whl", hash = "sha256:51a15d47028b66fd36e5c64a82d2d57480075bccc7da37cde257fc94177a61fb"}, + {file = "google_auth-2.36.0.tar.gz", hash = "sha256:545e9618f2df0bcbb7dcbc45a546485b1212624716975a1ea5ae8149ce769ab1"}, ] [package.dependencies] @@ -1573,7 +1658,6 @@ rsa = ">=3.1.4,<5" [package.extras] aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] enterprise-cert = ["cryptography", "pyopenssl"] -pyjwt = ["cryptography (>=38.0.3)", "pyjwt (>=2.0)"] pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] reauth = ["pyu2f (>=0.1.5)"] requests = ["requests (>=2.20.0,<3.0.0.dev0)"] @@ -1584,6 +1668,7 @@ version = "1.2.1" description = "Google Authentication Library" optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f"}, {file = "google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263"}, @@ -1598,13 +1683,14 @@ tool = ["click (>=6.0.0)"] [[package]] name = "google-cloud-core" -version = "2.4.3" +version = "2.4.1" description = "Google Cloud API client core library" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "google_cloud_core-2.4.3-py2.py3-none-any.whl", hash = "sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e"}, - {file = "google_cloud_core-2.4.3.tar.gz", hash = "sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53"}, + {file = "google-cloud-core-2.4.1.tar.gz", hash = "sha256:9b7749272a812bde58fff28868d0c5e2f585b82f37e09a1f6ed2d4d10f134073"}, + {file = "google_cloud_core-2.4.1-py2.py3-none-any.whl", hash = "sha256:a9e6a4422b9ac5c29f79a0ede9485473338e2ce78d91f2370c01e730eab22e61"}, ] [package.dependencies] @@ -1616,19 +1702,20 @@ grpc = ["grpcio (>=1.38.0,<2.0dev)", "grpcio-status (>=1.38.0,<2.0.dev0)"] [[package]] name = "google-cloud-storage" -version = "3.1.0" +version = "2.18.2" description = "Google Cloud Storage API client library" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "google_cloud_storage-3.1.0-py2.py3-none-any.whl", hash = "sha256:eaf36966b68660a9633f03b067e4a10ce09f1377cae3ff9f2c699f69a81c66c6"}, - {file = "google_cloud_storage-3.1.0.tar.gz", hash = "sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049"}, + {file = "google_cloud_storage-2.18.2-py2.py3-none-any.whl", hash = "sha256:97a4d45c368b7d401ed48c4fdfe86e1e1cb96401c9e199e419d289e2c0370166"}, + {file = "google_cloud_storage-2.18.2.tar.gz", hash = "sha256:aaf7acd70cdad9f274d29332673fcab98708d0e1f4dceb5a5356aaef06af4d99"}, ] [package.dependencies] google-api-core = ">=2.15.0,<3.0.0dev" google-auth = ">=2.26.1,<3.0dev" -google-cloud-core = ">=2.4.2,<3.0dev" +google-cloud-core = ">=2.3.0,<3.0dev" google-crc32c = ">=1.0,<2.0dev" google-resumable-media = ">=2.7.2" requests = ">=2.18.0,<3.0.0dev" @@ -1639,45 +1726,39 @@ tracing = ["opentelemetry-api (>=1.1.0)"] [[package]] name = "google-crc32c" -version = "1.7.1" +version = "1.6.0" description = "A python wrapper of the C library 'Google CRC32C'" optional = false python-versions = ">=3.9" -files = [ - {file = "google_crc32c-1.7.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b07d48faf8292b4db7c3d64ab86f950c2e94e93a11fd47271c28ba458e4a0d76"}, - {file = "google_crc32c-1.7.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7cc81b3a2fbd932a4313eb53cc7d9dde424088ca3a0337160f35d91826880c1d"}, - {file = "google_crc32c-1.7.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1c67ca0a1f5b56162951a9dae987988679a7db682d6f97ce0f6381ebf0fbea4c"}, - {file = "google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc5319db92daa516b653600794d5b9f9439a9a121f3e162f94b0e1891c7933cb"}, - {file = "google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcdf5a64adb747610140572ed18d011896e3b9ae5195f2514b7ff678c80f1603"}, - {file = "google_crc32c-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:754561c6c66e89d55754106739e22fdaa93fafa8da7221b29c8b8e8270c6ec8a"}, - {file = "google_crc32c-1.7.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:6fbab4b935989e2c3610371963ba1b86afb09537fd0c633049be82afe153ac06"}, - {file = "google_crc32c-1.7.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:ed66cbe1ed9cbaaad9392b5259b3eba4a9e565420d734e6238813c428c3336c9"}, - {file = "google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee6547b657621b6cbed3562ea7826c3e11cab01cd33b74e1f677690652883e77"}, - {file = "google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d68e17bad8f7dd9a49181a1f5a8f4b251c6dbc8cc96fb79f1d321dfd57d66f53"}, - {file = "google_crc32c-1.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:6335de12921f06e1f774d0dd1fbea6bf610abe0887a1638f64d694013138be5d"}, - {file = "google_crc32c-1.7.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2d73a68a653c57281401871dd4aeebbb6af3191dcac751a76ce430df4d403194"}, - {file = "google_crc32c-1.7.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:22beacf83baaf59f9d3ab2bbb4db0fb018da8e5aebdce07ef9f09fce8220285e"}, - {file = "google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19eafa0e4af11b0a4eb3974483d55d2d77ad1911e6cf6f832e1574f6781fd337"}, - {file = "google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6d86616faaea68101195c6bdc40c494e4d76f41e07a37ffdef270879c15fb65"}, - {file = "google_crc32c-1.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:b7491bdc0c7564fcf48c0179d2048ab2f7c7ba36b84ccd3a3e1c3f7a72d3bba6"}, - {file = "google_crc32c-1.7.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:df8b38bdaf1629d62d51be8bdd04888f37c451564c2042d36e5812da9eff3c35"}, - {file = "google_crc32c-1.7.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:e42e20a83a29aa2709a0cf271c7f8aefaa23b7ab52e53b322585297bb94d4638"}, - {file = "google_crc32c-1.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:905a385140bf492ac300026717af339790921f411c0dfd9aa5a9e69a08ed32eb"}, - {file = "google_crc32c-1.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b211ddaf20f7ebeec5c333448582c224a7c90a9d98826fbab82c0ddc11348e6"}, - {file = "google_crc32c-1.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:0f99eaa09a9a7e642a61e06742856eec8b19fc0037832e03f941fe7cf0c8e4db"}, - {file = "google_crc32c-1.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32d1da0d74ec5634a05f53ef7df18fc646666a25efaaca9fc7dcfd4caf1d98c3"}, - {file = "google_crc32c-1.7.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e10554d4abc5238823112c2ad7e4560f96c7bf3820b202660373d769d9e6e4c9"}, - {file = "google_crc32c-1.7.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:9fc196f0b8d8bd2789352c6a522db03f89e83a0ed6b64315923c396d7a932315"}, - {file = "google_crc32c-1.7.1-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:bb5e35dcd8552f76eed9461a23de1030920a3c953c1982f324be8f97946e7127"}, - {file = "google_crc32c-1.7.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f2226b6a8da04f1d9e61d3e357f2460b9551c5e6950071437e122c958a18ae14"}, - {file = "google_crc32c-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f2b3522222746fff0e04a9bd0a23ea003ba3cccc8cf21385c564deb1f223242"}, - {file = "google_crc32c-1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3bda0fcb632d390e3ea8b6b07bf6b4f4a66c9d02dcd6fbf7ba00a197c143f582"}, - {file = "google_crc32c-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:713121af19f1a617054c41f952294764e0c5443d5a5d9034b2cd60f5dd7e0349"}, - {file = "google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8e9afc74168b0b2232fb32dd202c93e46b7d5e4bf03e66ba5dc273bb3559589"}, - {file = "google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa8136cc14dd27f34a3221c0f16fd42d8a40e4778273e61a3c19aedaa44daf6b"}, - {file = "google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85fef7fae11494e747c9fd1359a527e5970fc9603c90764843caabd3a16a0a48"}, - {file = "google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6efb97eb4369d52593ad6f75e7e10d053cf00c48983f7a973105bc70b0ac4d82"}, - {file = "google_crc32c-1.7.1.tar.gz", hash = "sha256:2bff2305f98846f3e825dbeec9ee406f89da7962accdb29356e4eadc251bd472"}, +groups = ["main"] +files = [ + {file = "google_crc32c-1.6.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:5bcc90b34df28a4b38653c36bb5ada35671ad105c99cfe915fb5bed7ad6924aa"}, + {file = "google_crc32c-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:d9e9913f7bd69e093b81da4535ce27af842e7bf371cde42d1ae9e9bd382dc0e9"}, + {file = "google_crc32c-1.6.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a184243544811e4a50d345838a883733461e67578959ac59964e43cca2c791e7"}, + {file = "google_crc32c-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:236c87a46cdf06384f614e9092b82c05f81bd34b80248021f729396a78e55d7e"}, + {file = "google_crc32c-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebab974b1687509e5c973b5c4b8b146683e101e102e17a86bd196ecaa4d099fc"}, + {file = "google_crc32c-1.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:50cf2a96da226dcbff8671233ecf37bf6e95de98b2a2ebadbfdf455e6d05df42"}, + {file = "google_crc32c-1.6.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:f7a1fc29803712f80879b0806cb83ab24ce62fc8daf0569f2204a0cfd7f68ed4"}, + {file = "google_crc32c-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:40b05ab32a5067525670880eb5d169529089a26fe35dce8891127aeddc1950e8"}, + {file = "google_crc32c-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9e4b426c3702f3cd23b933436487eb34e01e00327fac20c9aebb68ccf34117d"}, + {file = "google_crc32c-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51c4f54dd8c6dfeb58d1df5e4f7f97df8abf17a36626a217f169893d1d7f3e9f"}, + {file = "google_crc32c-1.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:bb8b3c75bd157010459b15222c3fd30577042a7060e29d42dabce449c087f2b3"}, + {file = "google_crc32c-1.6.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:ed767bf4ba90104c1216b68111613f0d5926fb3780660ea1198fc469af410e9d"}, + {file = "google_crc32c-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:62f6d4a29fea082ac4a3c9be5e415218255cf11684ac6ef5488eea0c9132689b"}, + {file = "google_crc32c-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c87d98c7c4a69066fd31701c4e10d178a648c2cac3452e62c6b24dc51f9fcc00"}, + {file = "google_crc32c-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd5e7d2445d1a958c266bfa5d04c39932dc54093fa391736dbfdb0f1929c1fb3"}, + {file = "google_crc32c-1.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:7aec8e88a3583515f9e0957fe4f5f6d8d4997e36d0f61624e70469771584c760"}, + {file = "google_crc32c-1.6.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:e2806553238cd076f0a55bddab37a532b53580e699ed8e5606d0de1f856b5205"}, + {file = "google_crc32c-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:bb0966e1c50d0ef5bc743312cc730b533491d60585a9a08f897274e57c3f70e0"}, + {file = "google_crc32c-1.6.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:386122eeaaa76951a8196310432c5b0ef3b53590ef4c317ec7588ec554fec5d2"}, + {file = "google_crc32c-1.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2952396dc604544ea7476b33fe87faedc24d666fb0c2d5ac971a2b9576ab871"}, + {file = "google_crc32c-1.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35834855408429cecf495cac67ccbab802de269e948e27478b1e47dfb6465e57"}, + {file = "google_crc32c-1.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:d8797406499f28b5ef791f339594b0b5fdedf54e203b5066675c406ba69d705c"}, + {file = "google_crc32c-1.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48abd62ca76a2cbe034542ed1b6aee851b6f28aaca4e6551b5599b6f3ef175cc"}, + {file = "google_crc32c-1.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18e311c64008f1f1379158158bb3f0c8d72635b9eb4f9545f8cf990c5668e59d"}, + {file = "google_crc32c-1.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05e2d8c9a2f853ff116db9706b4a27350587f341eda835f46db3c0a8c8ce2f24"}, + {file = "google_crc32c-1.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ca8145b060679ec9176e6de4f89b07363d6805bd4760631ef254905503598d"}, + {file = "google_crc32c-1.6.0.tar.gz", hash = "sha256:6eceb6ad197656a1ff49ebfbbfa870678c75be4344feb35ac1edf694309413dc"}, ] [package.extras] @@ -1689,6 +1770,7 @@ version = "2.7.2" description = "Utilities for Google Media Downloads and Resumable Uploads" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ {file = "google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa"}, {file = "google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0"}, @@ -1703,20 +1785,21 @@ requests = ["requests (>=2.18.0,<3.0.0dev)"] [[package]] name = "googleapis-common-protos" -version = "1.69.2" +version = "1.66.0" description = "Common protobufs used in Google APIs" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "googleapis_common_protos-1.69.2-py3-none-any.whl", hash = "sha256:0b30452ff9c7a27d80bfc5718954063e8ab53dd3697093d3bc99581f5fd24212"}, - {file = "googleapis_common_protos-1.69.2.tar.gz", hash = "sha256:3e1b904a27a33c821b4b749fd31d334c0c9c30e6113023d495e48979a3dc9c5f"}, + {file = "googleapis_common_protos-1.66.0-py2.py3-none-any.whl", hash = "sha256:d7abcd75fabb2e0ec9f74466401f6c119a0b498e27370e9be4c94cb7e382b8ed"}, + {file = "googleapis_common_protos-1.66.0.tar.gz", hash = "sha256:c3e7b33d15fdca5374cc0a7346dd92ffa847425cc4ea941d970f13680052ec8c"}, ] [package.dependencies] -protobuf = ">=3.20.2,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<7.0.0" +protobuf = ">=3.20.2,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<6.0.0.dev0" [package.extras] -grpc = ["grpcio (>=1.44.0,<2.0.0)"] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] [[package]] name = "h11" @@ -1724,6 +1807,8 @@ version = "0.14.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1731,13 +1816,15 @@ files = [ [[package]] name = "httpcore" -version = "1.0.8" +version = "1.0.7" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "httpcore-1.0.8-py3-none-any.whl", hash = "sha256:5254cf149bcb5f75e9d1b2b9f729ea4a4b883d1ad7379fc632b727cec23674be"}, - {file = "httpcore-1.0.8.tar.gz", hash = "sha256:86e94505ed24ea06514883fd44d2bc02d90e77e7979c8eb71b90f41d364a1bad"}, + {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"}, + {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"}, ] [package.dependencies] @@ -1752,13 +1839,15 @@ trio = ["trio (>=0.22.0,<1.0)"] [[package]] name = "httpx" -version = "0.28.1" +version = "0.28.0" description = "The next generation HTTP client." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"}, - {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"}, + {file = "httpx-0.28.0-py3-none-any.whl", hash = "sha256:dc0b419a0cfeb6e8b34e85167c0da2671206f5095f1baa9663d23bcfd6b535fc"}, + {file = "httpx-0.28.0.tar.gz", hash = "sha256:0858d3bab51ba7e386637f22a61d8ccddaeec5f3fe4209da3a6168dbb91573e0"}, ] [package.dependencies] @@ -1768,7 +1857,7 @@ httpcore = "==1.*" idna = "*" [package.extras] -brotli = ["brotli", "brotlicffi"] +brotli = ["brotli ; platform_python_implementation == \"CPython\"", "brotlicffi ; platform_python_implementation != \"CPython\""] cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] @@ -1776,13 +1865,15 @@ zstd = ["zstandard (>=0.18.0)"] [[package]] name = "identify" -version = "2.6.9" +version = "2.6.3" description = "File identification library for Python" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "identify-2.6.9-py2.py3-none-any.whl", hash = "sha256:c98b4322da415a8e5a70ff6e51fbc2d2932c015532d77e9f8537b4ba7813b150"}, - {file = "identify-2.6.9.tar.gz", hash = "sha256:d40dfe3142a1421d8518e3d3985ef5ac42890683e32306ad614a29490abeb6bf"}, + {file = "identify-2.6.3-py2.py3-none-any.whl", hash = "sha256:9edba65473324c2ea9684b1f944fe3191db3345e50b6d04571d10ed164f8d7bd"}, + {file = "identify-2.6.3.tar.gz", hash = "sha256:62f5dae9b5fef52c84cc188514e9ea4f3f636b1d8799ab5ebc475471f9e47a02"}, ] [package.extras] @@ -1794,6 +1885,7 @@ version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, @@ -1804,13 +1896,14 @@ all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2 [[package]] name = "igv-notebook" -version = "0.6.2" +version = "0.6.1" description = "Package for embedding the igv.js genome visualization in IPython notebooks" optional = false python-versions = "*" +groups = ["main"] files = [ - {file = "igv-notebook-0.6.2.tar.gz", hash = "sha256:24c3990872851701bf17e7479180b02b63ab988e35b59859b294acae36eccc21"}, - {file = "igv_notebook-0.6.2-py3-none-any.whl", hash = "sha256:a79579c20aae3f922cd9bdf216930a3570f5408958fdd8ebabf7bf640aed0dbe"}, + {file = "igv-notebook-0.6.1.tar.gz", hash = "sha256:37e4f091d93536775c99075b7fac11069186e22f05874dd2da886b7dc09e9e0d"}, + {file = "igv_notebook-0.6.1-py3-none-any.whl", hash = "sha256:e13a53d245d6d51603173fbdd481f051344d79cbaeaa69f4bcc569a1c5387559"}, ] [package.dependencies] @@ -1824,6 +1917,8 @@ version = "1.4.1" description = "Getting image size from png/jpeg/jpeg2000/gif file" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"}, {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"}, @@ -1831,36 +1926,39 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.6.1" +version = "8.5.0" description = "Read metadata from Python packages" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e"}, - {file = "importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580"}, + {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, + {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, ] [package.dependencies] zipp = ">=3.20" [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] perf = ["ipython"] -test = ["flufl.flake8", "importlib_resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] +test = ["flufl.flake8", "importlib-resources (>=1.3) ; python_version < \"3.9\"", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] type = ["pytest-mypy"] [[package]] name = "iniconfig" -version = "2.1.0" +version = "2.0.0" description = "brain-dead simple config-ini parsing" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760"}, - {file = "iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7"}, + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] [[package]] @@ -1869,6 +1967,7 @@ version = "5.1.1" description = "Official Python library for IPInfo" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "ipinfo-5.1.1-py3-none-any.whl", hash = "sha256:90b2f5400189dd2da7625c9151d7076879a8cac9c31bfb581689345fac34cceb"}, {file = "ipinfo-5.1.1.tar.gz", hash = "sha256:be5a33adac9681bc68280eb5aae16a83e4abbb5f192c87dcc5ee18bdd0ceb276"}, @@ -1885,6 +1984,7 @@ version = "6.29.5" description = "IPython Kernel for Jupyter" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"}, {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"}, @@ -1918,6 +2018,7 @@ version = "0.19.2" description = "A Jupyter widget for dynamic Leaflet maps" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "ipyleaflet-0.19.2-py3-none-any.whl", hash = "sha256:7cc9157848baca2e1793b96e79f8bdb1aa7340521d2b7d8a62aa8bc30eab5278"}, {file = "ipyleaflet-0.19.2.tar.gz", hash = "sha256:b3b83fe3460e742964c2a5924ea7934365a3749bb75310ce388d45fd751372d2"}, @@ -1932,13 +2033,14 @@ xyzservices = ">=2021.8.1" [[package]] name = "ipython" -version = "8.35.0" +version = "8.30.0" description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ - {file = "ipython-8.35.0-py3-none-any.whl", hash = "sha256:e6b7470468ba6f1f0a7b116bb688a3ece2f13e2f94138e508201fad677a788ba"}, - {file = "ipython-8.35.0.tar.gz", hash = "sha256:d200b7d93c3f5883fc36ab9ce28a18249c7706e51347681f80a0aef9895f2520"}, + {file = "ipython-8.30.0-py3-none-any.whl", hash = "sha256:85ec56a7e20f6c38fce7727dcca699ae4ffc85985aa7b23635a8008f918ae321"}, + {file = "ipython-8.30.0.tar.gz", hash = "sha256:cb0a405a306d2995a5cbb9901894d240784a9f341394c6ba3f4fe8c6eb89ff6e"}, ] [package.dependencies] @@ -1957,7 +2059,7 @@ typing_extensions = {version = ">=4.6", markers = "python_version < \"3.12\""} [package.extras] all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] black = ["black"] -doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing_extensions"] +doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli ; python_version < \"3.11\"", "typing_extensions"] kernel = ["ipykernel"] matplotlib = ["matplotlib"] nbconvert = ["nbconvert"] @@ -1966,25 +2068,26 @@ notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"] -test-extra = ["curio", "ipython[test]", "jupyter_ai", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] [[package]] name = "ipywidgets" -version = "8.1.6" +version = "8.1.5" description = "Jupyter interactive widgets" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "ipywidgets-8.1.6-py3-none-any.whl", hash = "sha256:446e7630a1d025bdc7635e1169fcc06f2ce33b5bd41c2003edeb4a47c8d4bbb1"}, - {file = "ipywidgets-8.1.6.tar.gz", hash = "sha256:d8ace49c66f14419fc66071371b99d01bed230bbc15d8a60233b18bfbd782851"}, + {file = "ipywidgets-8.1.5-py3-none-any.whl", hash = "sha256:3290f526f87ae6e77655555baba4f36681c555b8bdbbff430b70e52c34c86245"}, + {file = "ipywidgets-8.1.5.tar.gz", hash = "sha256:870e43b1a35656a80c18c9503bbf2d16802db1cb487eec6fab27d683381dde17"}, ] [package.dependencies] comm = ">=0.1.3" ipython = ">=6.1.0" -jupyterlab_widgets = ">=3.0.14,<3.1.0" +jupyterlab-widgets = ">=3.0.12,<3.1.0" traitlets = ">=4.3.1" -widgetsnbextension = ">=4.0.14,<4.1.0" +widgetsnbextension = ">=4.0.12,<4.1.0" [package.extras] test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] @@ -1995,6 +2098,8 @@ version = "20.11.0" description = "Operations with ISO 8601 durations" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, @@ -2009,6 +2114,7 @@ version = "2.2.0" description = "Safely pass data to untrusted environments and back." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef"}, {file = "itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173"}, @@ -2020,6 +2126,7 @@ version = "0.19.2" description = "An autocompletion tool for Python that can be used for text editors." optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, @@ -2035,13 +2142,14 @@ testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"] [[package]] name = "jinja2" -version = "3.1.6" +version = "3.1.4" description = "A very fast and expressive template engine." optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67"}, - {file = "jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d"}, + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, ] [package.dependencies] @@ -2056,6 +2164,7 @@ version = "1.0.1" description = "JSON Matching Expressions" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -2067,6 +2176,7 @@ version = "1.4.2" description = "Lightweight pipelining with Python functions" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "joblib-1.4.2-py3-none-any.whl", hash = "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6"}, {file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"}, @@ -2074,17 +2184,19 @@ files = [ [[package]] name = "json5" -version = "0.12.0" +version = "0.10.0" description = "A Python implementation of the JSON5 data format." optional = false python-versions = ">=3.8.0" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "json5-0.12.0-py3-none-any.whl", hash = "sha256:6d37aa6c08b0609f16e1ec5ff94697e2cbbfbad5ac112afa05794da9ab7810db"}, - {file = "json5-0.12.0.tar.gz", hash = "sha256:0b4b6ff56801a1c7dc817b0241bca4ce474a0e6a163bfef3fc594d3fd263ff3a"}, + {file = "json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa"}, + {file = "json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559"}, ] [package.extras] -dev = ["build (==1.2.2.post1)", "coverage (==7.5.4)", "coverage (==7.8.0)", "mypy (==1.14.1)", "mypy (==1.15.0)", "pip (==25.0.1)", "pylint (==3.2.7)", "pylint (==3.3.6)", "ruff (==0.11.2)", "twine (==6.1.0)", "uv (==0.6.11)"] +dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"] [[package]] name = "jsonpointer" @@ -2092,6 +2204,8 @@ version = "3.0.0" description = "Identify specific nodes in a JSON document (RFC 6901)" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, @@ -2103,6 +2217,8 @@ version = "4.23.0" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, @@ -2132,6 +2248,8 @@ version = "2024.10.1" description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, @@ -2146,6 +2264,7 @@ version = "8.6.3" description = "Jupyter protocol implementation and client libraries" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"}, {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"}, @@ -2160,7 +2279,7 @@ traitlets = ">=5.3" [package.extras] docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko ; sys_platform == \"win32\"", "pre-commit", "pytest (<8.2.0)", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" @@ -2168,6 +2287,7 @@ version = "5.7.2" description = "Jupyter core package. A base package on which Jupyter projects rely." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, @@ -2184,18 +2304,19 @@ test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout" [[package]] name = "jupyter-events" -version = "0.12.0" +version = "0.10.0" description = "Jupyter Event System library" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb"}, - {file = "jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b"}, + {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, + {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, ] [package.dependencies] jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} -packaging = "*" python-json-logger = ">=2.0.4" pyyaml = ">=5.3" referencing = "*" @@ -2205,7 +2326,7 @@ traitlets = ">=5.3" [package.extras] cli = ["click", "rich"] -docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme (>=0.16)", "sphinx (>=8)", "sphinxcontrib-spelling"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] [[package]] @@ -2214,6 +2335,7 @@ version = "0.19.2" description = "ipyleaflet extensions for JupyterLab and Jupyter Notebook" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "jupyter_leaflet-0.19.2-py3-none-any.whl", hash = "sha256:0d57e15e80c08a4360f0cde0b4c490beddc5d422bb0e9bc1c0b4479d3fb725a6"}, {file = "jupyter_leaflet-0.19.2.tar.gz", hash = "sha256:b09b5ba48b1488cb61da37a6f558347269eb53ff6d64dc1a73e005ffc4420063"}, @@ -2225,6 +2347,8 @@ version = "2.2.5" description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001"}, {file = "jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da"}, @@ -2235,13 +2359,15 @@ jupyter-server = ">=1.1.2" [[package]] name = "jupyter-server" -version = "2.15.0" +version = "2.14.2" description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "jupyter_server-2.15.0-py3-none-any.whl", hash = "sha256:872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3"}, - {file = "jupyter_server-2.15.0.tar.gz", hash = "sha256:9d446b8697b4f7337a1b7cdcac40778babdd93ba614b6d68ab1c0c918f1c4084"}, + {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"}, + {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"}, ] [package.dependencies] @@ -2250,7 +2376,7 @@ argon2-cffi = ">=21.1" jinja2 = ">=3.0.3" jupyter-client = ">=7.4.4" jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" -jupyter-events = ">=0.11.0" +jupyter-events = ">=0.9.0" jupyter-server-terminals = ">=0.4.4" nbconvert = ">=6.4.4" nbformat = ">=5.3.0" @@ -2275,6 +2401,8 @@ version = "0.5.3" description = "A Jupyter Server Extension Providing Terminals." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"}, {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"}, @@ -2290,18 +2418,20 @@ test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (> [[package]] name = "jupyterlab" -version = "4.4.0" +version = "4.3.2" description = "JupyterLab computational environment" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "jupyterlab-4.4.0-py3-none-any.whl", hash = "sha256:61d33991fbb352cc7caac08bd0c34577fea86d8d5d9772600d9d5a6bcbc882c0"}, - {file = "jupyterlab-4.4.0.tar.gz", hash = "sha256:f1767d5f0104e40f3b4a63bf6892bbef8e4704dcabf0c78408a3bdc411792f04"}, + {file = "jupyterlab-4.3.2-py3-none-any.whl", hash = "sha256:e87100cbab8b886ff7a4f325c856100ba6fdfe916162a85409daf0e707e19d1d"}, + {file = "jupyterlab-4.3.2.tar.gz", hash = "sha256:3c0a6882dbddcc0a7bfdd5e2236f351b2b263e48780236e6996c2aca13ac5b22"}, ] [package.dependencies] async-lru = ">=1.0.0" -httpx = ">=0.25.0" +httpx = ">=0.28.0,<0.29.0" ipykernel = ">=6.5.0" jinja2 = ">=3.0.3" jupyter-core = "*" @@ -2310,15 +2440,15 @@ jupyter-server = ">=2.4.0,<3" jupyterlab-server = ">=2.27.1,<3" notebook-shim = ">=0.2" packaging = "*" -setuptools = ">=41.1.0" +setuptools = ">=40.8.0" tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""} tornado = ">=6.2.0" traitlets = "*" [package.extras] -dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.9.9)"] -docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.2.0)", "sphinx-copybutton"] -docs-screenshots = ["altair (==5.5.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.3.post1)", "matplotlib (==3.10.0)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.15.1)", "vega-datasets (==0.9.0)"] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.6.9)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.1.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.4.1)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.2.post3)", "matplotlib (==3.9.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.14.1)", "vega-datasets (==0.9.0)"] test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"] @@ -2328,6 +2458,8 @@ version = "0.3.0" description = "Pygments theme using JupyterLab CSS variables" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, @@ -2339,6 +2471,8 @@ version = "2.27.3" description = "A set of server components for JupyterLab and JupyterLab like applications." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"}, {file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"}, @@ -2360,43 +2494,45 @@ test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-v [[package]] name = "jupyterlab-widgets" -version = "3.0.14" +version = "3.0.13" description = "Jupyter interactive widgets for JupyterLab" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "jupyterlab_widgets-3.0.14-py3-none-any.whl", hash = "sha256:54c33e3306b7fca139d165d6190dc6c0627aafa5d14adfc974a4e9a3d26cb703"}, - {file = "jupyterlab_widgets-3.0.14.tar.gz", hash = "sha256:bad03e59546869f026e537e0d170e454259e6dc7048e14041707ca31e523c8a1"}, + {file = "jupyterlab_widgets-3.0.13-py3-none-any.whl", hash = "sha256:e3cda2c233ce144192f1e29914ad522b2f4c40e77214b0cc97377ca3d323db54"}, + {file = "jupyterlab_widgets-3.0.13.tar.gz", hash = "sha256:a2966d385328c1942b683a8cd96b89b8dd82c8b8f81dda902bb2bc06d46f5bed"}, ] [[package]] name = "llvmlite" -version = "0.44.0" +version = "0.43.0" description = "lightweight wrapper around basic LLVM functionality" optional = false -python-versions = ">=3.10" -files = [ - {file = "llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9fbadbfba8422123bab5535b293da1cf72f9f478a65645ecd73e781f962ca614"}, - {file = "llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cccf8eb28f24840f2689fb1a45f9c0f7e582dd24e088dcf96e424834af11f791"}, - {file = "llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7202b678cdf904823c764ee0fe2dfe38a76981f4c1e51715b4cb5abb6cf1d9e8"}, - {file = "llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40526fb5e313d7b96bda4cbb2c85cd5374e04d80732dd36a282d72a560bb6408"}, - {file = "llvmlite-0.44.0-cp310-cp310-win_amd64.whl", hash = "sha256:41e3839150db4330e1b2716c0be3b5c4672525b4c9005e17c7597f835f351ce2"}, - {file = "llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:eed7d5f29136bda63b6d7804c279e2b72e08c952b7c5df61f45db408e0ee52f3"}, - {file = "llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ace564d9fa44bb91eb6e6d8e7754977783c68e90a471ea7ce913bff30bd62427"}, - {file = "llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5d22c3bfc842668168a786af4205ec8e3ad29fb1bc03fd11fd48460d0df64c1"}, - {file = "llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f01a394e9c9b7b1d4e63c327b096d10f6f0ed149ef53d38a09b3749dcf8c9610"}, - {file = "llvmlite-0.44.0-cp311-cp311-win_amd64.whl", hash = "sha256:d8489634d43c20cd0ad71330dde1d5bc7b9966937a263ff1ec1cebb90dc50955"}, - {file = "llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:1d671a56acf725bf1b531d5ef76b86660a5ab8ef19bb6a46064a705c6ca80aad"}, - {file = "llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f79a728e0435493611c9f405168682bb75ffd1fbe6fc360733b850c80a026db"}, - {file = "llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0143a5ef336da14deaa8ec26c5449ad5b6a2b564df82fcef4be040b9cacfea9"}, - {file = "llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d752f89e31b66db6f8da06df8b39f9b91e78c5feea1bf9e8c1fba1d1c24c065d"}, - {file = "llvmlite-0.44.0-cp312-cp312-win_amd64.whl", hash = "sha256:eae7e2d4ca8f88f89d315b48c6b741dcb925d6a1042da694aa16ab3dd4cbd3a1"}, - {file = "llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:319bddd44e5f71ae2689859b7203080716448a3cd1128fb144fe5c055219d516"}, - {file = "llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c58867118bad04a0bb22a2e0068c693719658105e40009ffe95c7000fcde88e"}, - {file = "llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46224058b13c96af1365290bdfebe9a6264ae62fb79b2b55693deed11657a8bf"}, - {file = "llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa0097052c32bf721a4efc03bd109d335dfa57d9bffb3d4c24cc680711b8b4fc"}, - {file = "llvmlite-0.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930"}, - {file = "llvmlite-0.44.0.tar.gz", hash = "sha256:07667d66a5d150abed9157ab6c0b9393c9356f229784a4385c02f99e94fc94d4"}, +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "llvmlite-0.43.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a289af9a1687c6cf463478f0fa8e8aa3b6fb813317b0d70bf1ed0759eab6f761"}, + {file = "llvmlite-0.43.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d4fd101f571a31acb1559ae1af30f30b1dc4b3186669f92ad780e17c81e91bc"}, + {file = "llvmlite-0.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d434ec7e2ce3cc8f452d1cd9a28591745de022f931d67be688a737320dfcead"}, + {file = "llvmlite-0.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6912a87782acdff6eb8bf01675ed01d60ca1f2551f8176a300a886f09e836a6a"}, + {file = "llvmlite-0.43.0-cp310-cp310-win_amd64.whl", hash = "sha256:14f0e4bf2fd2d9a75a3534111e8ebeb08eda2f33e9bdd6dfa13282afacdde0ed"}, + {file = "llvmlite-0.43.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8d0618cb9bfe40ac38a9633f2493d4d4e9fcc2f438d39a4e854f39cc0f5f98"}, + {file = "llvmlite-0.43.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0a9a1a39d4bf3517f2af9d23d479b4175ead205c592ceeb8b89af48a327ea57"}, + {file = "llvmlite-0.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1da416ab53e4f7f3bc8d4eeba36d801cc1894b9fbfbf2022b29b6bad34a7df2"}, + {file = "llvmlite-0.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:977525a1e5f4059316b183fb4fd34fa858c9eade31f165427a3977c95e3ee749"}, + {file = "llvmlite-0.43.0-cp311-cp311-win_amd64.whl", hash = "sha256:d5bd550001d26450bd90777736c69d68c487d17bf371438f975229b2b8241a91"}, + {file = "llvmlite-0.43.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f99b600aa7f65235a5a05d0b9a9f31150c390f31261f2a0ba678e26823ec38f7"}, + {file = "llvmlite-0.43.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:35d80d61d0cda2d767f72de99450766250560399edc309da16937b93d3b676e7"}, + {file = "llvmlite-0.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eccce86bba940bae0d8d48ed925f21dbb813519169246e2ab292b5092aba121f"}, + {file = "llvmlite-0.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df6509e1507ca0760787a199d19439cc887bfd82226f5af746d6977bd9f66844"}, + {file = "llvmlite-0.43.0-cp312-cp312-win_amd64.whl", hash = "sha256:7a2872ee80dcf6b5dbdc838763d26554c2a18aa833d31a2635bff16aafefb9c9"}, + {file = "llvmlite-0.43.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9cd2a7376f7b3367019b664c21f0c61766219faa3b03731113ead75107f3b66c"}, + {file = "llvmlite-0.43.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18e9953c748b105668487b7c81a3e97b046d8abf95c4ddc0cd3c94f4e4651ae8"}, + {file = "llvmlite-0.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74937acd22dc11b33946b67dca7680e6d103d6e90eeaaaf932603bec6fe7b03a"}, + {file = "llvmlite-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc9efc739cc6ed760f795806f67889923f7274276f0eb45092a1473e40d9b867"}, + {file = "llvmlite-0.43.0-cp39-cp39-win_amd64.whl", hash = "sha256:47e147cdda9037f94b399bf03bfd8a6b6b1f2f90be94a454e3386f006455a9b4"}, + {file = "llvmlite-0.43.0.tar.gz", hash = "sha256:ae2b5b5c3ef67354824fb75517c8db5fbe93bc02cd9671f3c62271626bc041d5"}, ] [[package]] @@ -2405,6 +2541,7 @@ version = "1.0.0" description = "File-based locks for Python on Linux and Windows" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +groups = ["main"] files = [ {file = "locket-1.0.0-py2.py3-none-any.whl", hash = "sha256:b6c819a722f7b6bd955b80781788e4a66a55628b858d347536b7e81325a3a5e3"}, {file = "locket-1.0.0.tar.gz", hash = "sha256:5c0d4c052a8bbbf750e056a8e65ccd309086f4f0f18a2eac306a8dfa4112a632"}, @@ -2416,6 +2553,8 @@ version = "1.15.6" description = "Small library to dynamically create python functions." optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "makefun-1.15.6-py2.py3-none-any.whl", hash = "sha256:e69b870f0bb60304765b1e3db576aaecf2f9b3e5105afe8cfeff8f2afe6ad067"}, {file = "makefun-1.15.6.tar.gz", hash = "sha256:26bc63442a6182fb75efed8b51741dd2d1db2f176bec8c64e20a586256b8f149"}, @@ -2427,6 +2566,7 @@ version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, @@ -2497,6 +2637,7 @@ version = "0.1.7" description = "Inline Matplotlib backend for Jupyter" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"}, {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"}, @@ -2511,6 +2652,8 @@ version = "0.61.0" description = "A module for monitoring memory usage of a python program" optional = false python-versions = ">=3.5" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "memory_profiler-0.61.0-py3-none-any.whl", hash = "sha256:400348e61031e3942ad4d4109d18753b2fb08c2f6fb8290671c5513a34182d84"}, {file = "memory_profiler-0.61.0.tar.gz", hash = "sha256:4e5b73d7864a1d1292fb76a03e82a3e78ef934d06828a698d9dada76da2067b0"}, @@ -2521,24 +2664,24 @@ psutil = "*" [[package]] name = "mistune" -version = "3.1.3" +version = "3.0.2" description = "A sane and fast Markdown parser with useful plugins and renderers" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "mistune-3.1.3-py3-none-any.whl", hash = "sha256:1a32314113cff28aa6432e99e522677c8587fd83e3d51c29b82a52409c842bd9"}, - {file = "mistune-3.1.3.tar.gz", hash = "sha256:a7035c21782b2becb6be62f8f25d3df81ccb4d6fa477a6525b15af06539f02a0"}, + {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, + {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, ] -[package.dependencies] -typing-extensions = {version = "*", markers = "python_version < \"3.11\""} - [[package]] name = "msgpack" version = "1.1.0" description = "MessagePack serializer" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"}, {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"}, @@ -2608,115 +2751,104 @@ files = [ [[package]] name = "multidict" -version = "6.4.3" +version = "6.1.0" description = "multidict implementation" optional = false -python-versions = ">=3.9" -files = [ - {file = "multidict-6.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32a998bd8a64ca48616eac5a8c1cc4fa38fb244a3facf2eeb14abe186e0f6cc5"}, - {file = "multidict-6.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a54ec568f1fc7f3c313c2f3b16e5db346bf3660e1309746e7fccbbfded856188"}, - {file = "multidict-6.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a7be07e5df178430621c716a63151165684d3e9958f2bbfcb644246162007ab7"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b128dbf1c939674a50dd0b28f12c244d90e5015e751a4f339a96c54f7275e291"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:b9cb19dfd83d35b6ff24a4022376ea6e45a2beba8ef3f0836b8a4b288b6ad685"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3cf62f8e447ea2c1395afa289b332e49e13d07435369b6f4e41f887db65b40bf"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:909f7d43ff8f13d1adccb6a397094adc369d4da794407f8dd592c51cf0eae4b1"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0bb8f8302fbc7122033df959e25777b0b7659b1fd6bcb9cb6bed76b5de67afef"}, - {file = "multidict-6.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:224b79471b4f21169ea25ebc37ed6f058040c578e50ade532e2066562597b8a9"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a7bd27f7ab3204f16967a6f899b3e8e9eb3362c0ab91f2ee659e0345445e0078"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:99592bd3162e9c664671fd14e578a33bfdba487ea64bcb41d281286d3c870ad7"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a62d78a1c9072949018cdb05d3c533924ef8ac9bcb06cbf96f6d14772c5cd451"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ccdde001578347e877ca4f629450973c510e88e8865d5aefbcb89b852ccc666"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:eccb67b0e78aa2e38a04c5ecc13bab325a43e5159a181a9d1a6723db913cbb3c"}, - {file = "multidict-6.4.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8b6fcf6054fc4114a27aa865f8840ef3d675f9316e81868e0ad5866184a6cba5"}, - {file = "multidict-6.4.3-cp310-cp310-win32.whl", hash = "sha256:f92c7f62d59373cd93bc9969d2da9b4b21f78283b1379ba012f7ee8127b3152e"}, - {file = "multidict-6.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:b57e28dbc031d13916b946719f213c494a517b442d7b48b29443e79610acd887"}, - {file = "multidict-6.4.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f6f19170197cc29baccd33ccc5b5d6a331058796485857cf34f7635aa25fb0cd"}, - {file = "multidict-6.4.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f2882bf27037eb687e49591690e5d491e677272964f9ec7bc2abbe09108bdfb8"}, - {file = "multidict-6.4.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fbf226ac85f7d6b6b9ba77db4ec0704fde88463dc17717aec78ec3c8546c70ad"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e329114f82ad4b9dd291bef614ea8971ec119ecd0f54795109976de75c9a852"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:1f4e0334d7a555c63f5c8952c57ab6f1c7b4f8c7f3442df689fc9f03df315c08"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:740915eb776617b57142ce0bb13b7596933496e2f798d3d15a20614adf30d229"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255dac25134d2b141c944b59a0d2f7211ca12a6d4779f7586a98b4b03ea80508"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4e8535bd4d741039b5aad4285ecd9b902ef9e224711f0b6afda6e38d7ac02c7"}, - {file = "multidict-6.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c433a33be000dd968f5750722eaa0991037be0be4a9d453eba121774985bc8"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4eb33b0bdc50acd538f45041f5f19945a1f32b909b76d7b117c0c25d8063df56"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:75482f43465edefd8a5d72724887ccdcd0c83778ded8f0cb1e0594bf71736cc0"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ce5b3082e86aee80b3925ab4928198450d8e5b6466e11501fe03ad2191c6d777"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e413152e3212c4d39f82cf83c6f91be44bec9ddea950ce17af87fbf4e32ca6b2"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:8aac2eeff69b71f229a405c0a4b61b54bade8e10163bc7b44fcd257949620618"}, - {file = "multidict-6.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ab583ac203af1d09034be41458feeab7863c0635c650a16f15771e1386abf2d7"}, - {file = "multidict-6.4.3-cp311-cp311-win32.whl", hash = "sha256:1b2019317726f41e81154df636a897de1bfe9228c3724a433894e44cd2512378"}, - {file = "multidict-6.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:43173924fa93c7486402217fab99b60baf78d33806af299c56133a3755f69589"}, - {file = "multidict-6.4.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1f1c2f58f08b36f8475f3ec6f5aeb95270921d418bf18f90dffd6be5c7b0e676"}, - {file = "multidict-6.4.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:26ae9ad364fc61b936fb7bf4c9d8bd53f3a5b4417142cd0be5c509d6f767e2f1"}, - {file = "multidict-6.4.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:659318c6c8a85f6ecfc06b4e57529e5a78dfdd697260cc81f683492ad7e9435a"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1eb72c741fd24d5a28242ce72bb61bc91f8451877131fa3fe930edb195f7054"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3cd06d88cb7398252284ee75c8db8e680aa0d321451132d0dba12bc995f0adcc"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4543d8dc6470a82fde92b035a92529317191ce993533c3c0c68f56811164ed07"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:30a3ebdc068c27e9d6081fca0e2c33fdf132ecea703a72ea216b81a66860adde"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b038f10e23f277153f86f95c777ba1958bcd5993194fda26a1d06fae98b2f00c"}, - {file = "multidict-6.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c605a2b2dc14282b580454b9b5d14ebe0668381a3a26d0ac39daa0ca115eb2ae"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8bd2b875f4ca2bb527fe23e318ddd509b7df163407b0fb717df229041c6df5d3"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:c2e98c840c9c8e65c0e04b40c6c5066c8632678cd50c8721fdbcd2e09f21a507"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:66eb80dd0ab36dbd559635e62fba3083a48a252633164857a1d1684f14326427"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c23831bdee0a2a3cf21be057b5e5326292f60472fb6c6f86392bbf0de70ba731"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1535cec6443bfd80d028052e9d17ba6ff8a5a3534c51d285ba56c18af97e9713"}, - {file = "multidict-6.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3b73e7227681f85d19dec46e5b881827cd354aabe46049e1a61d2f9aaa4e285a"}, - {file = "multidict-6.4.3-cp312-cp312-win32.whl", hash = "sha256:8eac0c49df91b88bf91f818e0a24c1c46f3622978e2c27035bfdca98e0e18124"}, - {file = "multidict-6.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:11990b5c757d956cd1db7cb140be50a63216af32cd6506329c2c59d732d802db"}, - {file = "multidict-6.4.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a76534263d03ae0cfa721fea40fd2b5b9d17a6f85e98025931d41dc49504474"}, - {file = "multidict-6.4.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:805031c2f599eee62ac579843555ed1ce389ae00c7e9f74c2a1b45e0564a88dd"}, - {file = "multidict-6.4.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c56c179839d5dcf51d565132185409d1d5dd8e614ba501eb79023a6cab25576b"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c64f4ddb3886dd8ab71b68a7431ad4aa01a8fa5be5b11543b29674f29ca0ba3"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3002a856367c0b41cad6784f5b8d3ab008eda194ed7864aaa58f65312e2abcac"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d75e621e7d887d539d6e1d789f0c64271c250276c333480a9e1de089611f790"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:995015cf4a3c0d72cbf453b10a999b92c5629eaf3a0c3e1efb4b5c1f602253bb"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2b0fabae7939d09d7d16a711468c385272fa1b9b7fb0d37e51143585d8e72e0"}, - {file = "multidict-6.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61ed4d82f8a1e67eb9eb04f8587970d78fe7cddb4e4d6230b77eda23d27938f9"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:062428944a8dc69df9fdc5d5fc6279421e5f9c75a9ee3f586f274ba7b05ab3c8"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:b90e27b4674e6c405ad6c64e515a505c6d113b832df52fdacb6b1ffd1fa9a1d1"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:7d50d4abf6729921e9613d98344b74241572b751c6b37feed75fb0c37bd5a817"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:43fe10524fb0a0514be3954be53258e61d87341008ce4914f8e8b92bee6f875d"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:236966ca6c472ea4e2d3f02f6673ebfd36ba3f23159c323f5a496869bc8e47c9"}, - {file = "multidict-6.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:422a5ec315018e606473ba1f5431e064cf8b2a7468019233dcf8082fabad64c8"}, - {file = "multidict-6.4.3-cp313-cp313-win32.whl", hash = "sha256:f901a5aace8e8c25d78960dcc24c870c8d356660d3b49b93a78bf38eb682aac3"}, - {file = "multidict-6.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:1c152c49e42277bc9a2f7b78bd5fa10b13e88d1b0328221e7aef89d5c60a99a5"}, - {file = "multidict-6.4.3-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:be8751869e28b9c0d368d94f5afcb4234db66fe8496144547b4b6d6a0645cfc6"}, - {file = "multidict-6.4.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0d4b31f8a68dccbcd2c0ea04f0e014f1defc6b78f0eb8b35f2265e8716a6df0c"}, - {file = "multidict-6.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:032efeab3049e37eef2ff91271884303becc9e54d740b492a93b7e7266e23756"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9e78006af1a7c8a8007e4f56629d7252668344442f66982368ac06522445e375"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:daeac9dd30cda8703c417e4fddccd7c4dc0c73421a0b54a7da2713be125846be"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f6f90700881438953eae443a9c6f8a509808bc3b185246992c4233ccee37fea"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f84627997008390dd15762128dcf73c3365f4ec0106739cde6c20a07ed198ec8"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3307b48cd156153b117c0ea54890a3bdbf858a5b296ddd40dc3852e5f16e9b02"}, - {file = "multidict-6.4.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ead46b0fa1dcf5af503a46e9f1c2e80b5d95c6011526352fa5f42ea201526124"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:1748cb2743bedc339d63eb1bca314061568793acd603a6e37b09a326334c9f44"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:acc9fa606f76fc111b4569348cc23a771cb52c61516dcc6bcef46d612edb483b"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:31469d5832b5885adeb70982e531ce86f8c992334edd2f2254a10fa3182ac504"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:ba46b51b6e51b4ef7bfb84b82f5db0dc5e300fb222a8a13b8cd4111898a869cf"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:389cfefb599edf3fcfd5f64c0410da686f90f5f5e2c4d84e14f6797a5a337af4"}, - {file = "multidict-6.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:64bc2bbc5fba7b9db5c2c8d750824f41c6994e3882e6d73c903c2afa78d091e4"}, - {file = "multidict-6.4.3-cp313-cp313t-win32.whl", hash = "sha256:0ecdc12ea44bab2807d6b4a7e5eef25109ab1c82a8240d86d3c1fc9f3b72efd5"}, - {file = "multidict-6.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:7146a8742ea71b5d7d955bffcef58a9e6e04efba704b52a460134fefd10a8208"}, - {file = "multidict-6.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5427a2679e95a642b7f8b0f761e660c845c8e6fe3141cddd6b62005bd133fc21"}, - {file = "multidict-6.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:24a8caa26521b9ad09732972927d7b45b66453e6ebd91a3c6a46d811eeb7349b"}, - {file = "multidict-6.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6b5a272bc7c36a2cd1b56ddc6bff02e9ce499f9f14ee4a45c45434ef083f2459"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edf74dc5e212b8c75165b435c43eb0d5e81b6b300a938a4eb82827119115e840"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9f35de41aec4b323c71f54b0ca461ebf694fb48bec62f65221f52e0017955b39"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae93e0ff43b6f6892999af64097b18561691ffd835e21a8348a441e256592e1f"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e3929269e9d7eff905d6971d8b8c85e7dbc72c18fb99c8eae6fe0a152f2e343"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6214fe1750adc2a1b801a199d64b5a67671bf76ebf24c730b157846d0e90d2"}, - {file = "multidict-6.4.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d79cf5c0c6284e90f72123f4a3e4add52d6c6ebb4a9054e88df15b8d08444c6"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2427370f4a255262928cd14533a70d9738dfacadb7563bc3b7f704cc2360fc4e"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:fbd8d737867912b6c5f99f56782b8cb81f978a97b4437a1c476de90a3e41c9a1"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:0ee1bf613c448997f73fc4efb4ecebebb1c02268028dd4f11f011f02300cf1e8"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578568c4ba5f2b8abd956baf8b23790dbfdc953e87d5b110bce343b4a54fc9e7"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:a059ad6b80de5b84b9fa02a39400319e62edd39d210b4e4f8c4f1243bdac4752"}, - {file = "multidict-6.4.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:dd53893675b729a965088aaadd6a1f326a72b83742b056c1065bdd2e2a42b4df"}, - {file = "multidict-6.4.3-cp39-cp39-win32.whl", hash = "sha256:abcfed2c4c139f25c2355e180bcc077a7cae91eefbb8b3927bb3f836c9586f1f"}, - {file = "multidict-6.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:b1b389ae17296dd739015d5ddb222ee99fd66adeae910de21ac950e00979d897"}, - {file = "multidict-6.4.3-py3-none-any.whl", hash = "sha256:59fe01ee8e2a1e8ceb3f6dbb216b09c8d9f4ef1c22c4fc825d045a147fa2ebc9"}, - {file = "multidict-6.4.3.tar.gz", hash = "sha256:3ada0b058c9f213c5f95ba301f922d402ac234f1111a7d8fd70f1b99f3c281ec"}, +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7"}, + {file = "multidict-6.1.0-cp310-cp310-win32.whl", hash = "sha256:4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0"}, + {file = "multidict-6.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753"}, + {file = "multidict-6.1.0-cp311-cp311-win32.whl", hash = "sha256:90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80"}, + {file = "multidict-6.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3"}, + {file = "multidict-6.1.0-cp312-cp312-win32.whl", hash = "sha256:58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133"}, + {file = "multidict-6.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6"}, + {file = "multidict-6.1.0-cp313-cp313-win32.whl", hash = "sha256:3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81"}, + {file = "multidict-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:db7457bac39421addd0c8449933ac32d8042aae84a14911a757ae6ca3eef1392"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d094ddec350a2fb899fec68d8353c78233debde9b7d8b4beeafa70825f1c281a"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5845c1fd4866bb5dd3125d89b90e57ed3138241540897de748cdf19de8a2fca2"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9079dfc6a70abe341f521f78405b8949f96db48da98aeb43f9907f342f627cdc"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3914f5aaa0f36d5d60e8ece6a308ee1c9784cd75ec8151062614657a114c4478"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c08be4f460903e5a9d0f76818db3250f12e9c344e79314d1d570fc69d7f4eae4"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d093be959277cb7dee84b801eb1af388b6ad3ca6a6b6bf1ed7585895789d027d"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3702ea6872c5a2a4eeefa6ffd36b042e9773f05b1f37ae3ef7264b1163c2dcf6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2090f6a85cafc5b2db085124d752757c9d251548cedabe9bd31afe6363e0aff2"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:f67f217af4b1ff66c68a87318012de788dd95fcfeb24cc889011f4e1c7454dfd"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:189f652a87e876098bbc67b4da1049afb5f5dfbaa310dd67c594b01c10388db6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:6bb5992037f7a9eff7991ebe4273ea7f51f1c1c511e6a2ce511d0e7bdb754492"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f4c2b9e770c4e393876e35a7046879d195cd123b4f116d299d442b335bcd"}, + {file = "multidict-6.1.0-cp38-cp38-win32.whl", hash = "sha256:e27bbb6d14416713a8bd7aaa1313c0fc8d44ee48d74497a0ff4c3a1b6ccb5167"}, + {file = "multidict-6.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:22f3105d4fb15c8f57ff3959a58fcab6ce36814486500cd7485651230ad4d4ef"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4e18b656c5e844539d506a0a06432274d7bd52a7487e6828c63a63d69185626c"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a185f876e69897a6f3325c3f19f26a297fa058c5e456bfcff8015e9a27e83ae1"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab7c4ceb38d91570a650dba194e1ca87c2b543488fe9309b4212694174fd539c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e617fb6b0b6953fffd762669610c1c4ffd05632c138d61ac7e14ad187870669c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16e5f4bf4e603eb1fdd5d8180f1a25f30056f22e55ce51fb3d6ad4ab29f7d96f"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c035da3f544b1882bac24115f3e2e8760f10a0107614fc9839fd232200b875"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:957cf8e4b6e123a9eea554fa7ebc85674674b713551de587eb318a2df3e00255"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:483a6aea59cb89904e1ceabd2b47368b5600fb7de78a6e4a2c2987b2d256cf30"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:87701f25a2352e5bf7454caa64757642734da9f6b11384c1f9d1a8e699758057"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:682b987361e5fd7a139ed565e30d81fd81e9629acc7d925a205366877d8c8657"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce2186a7df133a9c895dea3331ddc5ddad42cdd0d1ea2f0a51e5d161e4762f28"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9f636b730f7e8cb19feb87094949ba54ee5357440b9658b2a32a5ce4bce53972"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:73eae06aa53af2ea5270cc066dcaf02cc60d2994bbb2c4ef5764949257d10f43"}, + {file = "multidict-6.1.0-cp39-cp39-win32.whl", hash = "sha256:1ca0083e80e791cffc6efce7660ad24af66c8d4079d2a750b29001b53ff59ada"}, + {file = "multidict-6.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:aa466da5b15ccea564bdab9c89175c762bc12825f4659c11227f515cee76fa4a"}, + {file = "multidict-6.1.0-py3-none-any.whl", hash = "sha256:48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506"}, + {file = "multidict-6.1.0.tar.gz", hash = "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a"}, ] [package.dependencies] @@ -2724,49 +2856,51 @@ typing-extensions = {version = ">=4.1.0", markers = "python_version < \"3.11\""} [[package]] name = "mypy" -version = "1.15.0" +version = "1.13.0" description = "Optional static typing for Python" optional = false -python-versions = ">=3.9" -files = [ - {file = "mypy-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:979e4e1a006511dacf628e36fadfecbcc0160a8af6ca7dad2f5025529e082c13"}, - {file = "mypy-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c4bb0e1bd29f7d34efcccd71cf733580191e9a264a2202b0239da95984c5b559"}, - {file = "mypy-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:be68172e9fd9ad8fb876c6389f16d1c1b5f100ffa779f77b1fb2176fcc9ab95b"}, - {file = "mypy-1.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c7be1e46525adfa0d97681432ee9fcd61a3964c2446795714699a998d193f1a3"}, - {file = "mypy-1.15.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2e2c2e6d3593f6451b18588848e66260ff62ccca522dd231cd4dd59b0160668b"}, - {file = "mypy-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:6983aae8b2f653e098edb77f893f7b6aca69f6cffb19b2cc7443f23cce5f4828"}, - {file = "mypy-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2922d42e16d6de288022e5ca321cd0618b238cfc5570e0263e5ba0a77dbef56f"}, - {file = "mypy-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2ee2d57e01a7c35de00f4634ba1bbf015185b219e4dc5909e281016df43f5ee5"}, - {file = "mypy-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:973500e0774b85d9689715feeffcc980193086551110fd678ebe1f4342fb7c5e"}, - {file = "mypy-1.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a95fb17c13e29d2d5195869262f8125dfdb5c134dc8d9a9d0aecf7525b10c2c"}, - {file = "mypy-1.15.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1905f494bfd7d85a23a88c5d97840888a7bd516545fc5aaedff0267e0bb54e2f"}, - {file = "mypy-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:c9817fa23833ff189db061e6d2eff49b2f3b6ed9856b4a0a73046e41932d744f"}, - {file = "mypy-1.15.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:aea39e0583d05124836ea645f412e88a5c7d0fd77a6d694b60d9b6b2d9f184fd"}, - {file = "mypy-1.15.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2f2147ab812b75e5b5499b01ade1f4a81489a147c01585cda36019102538615f"}, - {file = "mypy-1.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ce436f4c6d218a070048ed6a44c0bbb10cd2cc5e272b29e7845f6a2f57ee4464"}, - {file = "mypy-1.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8023ff13985661b50a5928fc7a5ca15f3d1affb41e5f0a9952cb68ef090b31ee"}, - {file = "mypy-1.15.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1124a18bc11a6a62887e3e137f37f53fbae476dc36c185d549d4f837a2a6a14e"}, - {file = "mypy-1.15.0-cp312-cp312-win_amd64.whl", hash = "sha256:171a9ca9a40cd1843abeca0e405bc1940cd9b305eaeea2dda769ba096932bb22"}, - {file = "mypy-1.15.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:93faf3fdb04768d44bf28693293f3904bbb555d076b781ad2530214ee53e3445"}, - {file = "mypy-1.15.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:811aeccadfb730024c5d3e326b2fbe9249bb7413553f15499a4050f7c30e801d"}, - {file = "mypy-1.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:98b7b9b9aedb65fe628c62a6dc57f6d5088ef2dfca37903a7d9ee374d03acca5"}, - {file = "mypy-1.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c43a7682e24b4f576d93072216bf56eeff70d9140241f9edec0c104d0c515036"}, - {file = "mypy-1.15.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:baefc32840a9f00babd83251560e0ae1573e2f9d1b067719479bfb0e987c6357"}, - {file = "mypy-1.15.0-cp313-cp313-win_amd64.whl", hash = "sha256:b9378e2c00146c44793c98b8d5a61039a048e31f429fb0eb546d93f4b000bedf"}, - {file = "mypy-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e601a7fa172c2131bff456bb3ee08a88360760d0d2f8cbd7a75a65497e2df078"}, - {file = "mypy-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:712e962a6357634fef20412699a3655c610110e01cdaa6180acec7fc9f8513ba"}, - {file = "mypy-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f95579473af29ab73a10bada2f9722856792a36ec5af5399b653aa28360290a5"}, - {file = "mypy-1.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8f8722560a14cde92fdb1e31597760dc35f9f5524cce17836c0d22841830fd5b"}, - {file = "mypy-1.15.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1fbb8da62dc352133d7d7ca90ed2fb0e9d42bb1a32724c287d3c76c58cbaa9c2"}, - {file = "mypy-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:d10d994b41fb3497719bbf866f227b3489048ea4bbbb5015357db306249f7980"}, - {file = "mypy-1.15.0-py3-none-any.whl", hash = "sha256:5469affef548bd1895d86d3bf10ce2b44e33d86923c29e4d675b3e323437ea3e"}, - {file = "mypy-1.15.0.tar.gz", hash = "sha256:404534629d51d3efea5c800ee7c42b72a6554d6c400e6a79eafe15d11341fd43"}, +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" +files = [ + {file = "mypy-1.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6607e0f1dd1fb7f0aca14d936d13fd19eba5e17e1cd2a14f808fa5f8f6d8f60a"}, + {file = "mypy-1.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8a21be69bd26fa81b1f80a61ee7ab05b076c674d9b18fb56239d72e21d9f4c80"}, + {file = "mypy-1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b2353a44d2179846a096e25691d54d59904559f4232519d420d64da6828a3a7"}, + {file = "mypy-1.13.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0730d1c6a2739d4511dc4253f8274cdd140c55c32dfb0a4cf8b7a43f40abfa6f"}, + {file = "mypy-1.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:c5fc54dbb712ff5e5a0fca797e6e0aa25726c7e72c6a5850cfd2adbc1eb0a372"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:581665e6f3a8a9078f28d5502f4c334c0c8d802ef55ea0e7276a6e409bc0d82d"}, + {file = "mypy-1.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ddb5b9bf82e05cc9a627e84707b528e5c7caaa1c55c69e175abb15a761cec2d"}, + {file = "mypy-1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:20c7ee0bc0d5a9595c46f38beb04201f2620065a93755704e141fcac9f59db2b"}, + {file = "mypy-1.13.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3790ded76f0b34bc9c8ba4def8f919dd6a46db0f5a6610fb994fe8efdd447f73"}, + {file = "mypy-1.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:51f869f4b6b538229c1d1bcc1dd7d119817206e2bc54e8e374b3dfa202defcca"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5c7051a3461ae84dfb5dd15eff5094640c61c5f22257c8b766794e6dd85e72d5"}, + {file = "mypy-1.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39bb21c69a5d6342f4ce526e4584bc5c197fd20a60d14a8624d8743fffb9472e"}, + {file = "mypy-1.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:164f28cb9d6367439031f4c81e84d3ccaa1e19232d9d05d37cb0bd880d3f93c2"}, + {file = "mypy-1.13.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a4c1bfcdbce96ff5d96fc9b08e3831acb30dc44ab02671eca5953eadad07d6d0"}, + {file = "mypy-1.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0affb3a79a256b4183ba09811e3577c5163ed06685e4d4b46429a271ba174d2"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a7b44178c9760ce1a43f544e595d35ed61ac2c3de306599fa59b38a6048e1aa7"}, + {file = "mypy-1.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5d5092efb8516d08440e36626f0153b5006d4088c1d663d88bf79625af3d1d62"}, + {file = "mypy-1.13.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2904956dac40ced10931ac967ae63c5089bd498542194b436eb097a9f77bc8"}, + {file = "mypy-1.13.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:7bfd8836970d33c2105562650656b6846149374dc8ed77d98424b40b09340ba7"}, + {file = "mypy-1.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:9f73dba9ec77acb86457a8fc04b5239822df0c14a082564737833d2963677dbc"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:100fac22ce82925f676a734af0db922ecfea991e1d7ec0ceb1e115ebe501301a"}, + {file = "mypy-1.13.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7bcb0bb7f42a978bb323a7c88f1081d1b5dee77ca86f4100735a6f541299d8fb"}, + {file = "mypy-1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bde31fc887c213e223bbfc34328070996061b0833b0a4cfec53745ed61f3519b"}, + {file = "mypy-1.13.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:07de989f89786f62b937851295ed62e51774722e5444a27cecca993fc3f9cd74"}, + {file = "mypy-1.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:4bde84334fbe19bad704b3f5b78c4abd35ff1026f8ba72b29de70dda0916beb6"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0246bcb1b5de7f08f2826451abd947bf656945209b140d16ed317f65a17dc7dc"}, + {file = "mypy-1.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7f5b7deae912cf8b77e990b9280f170381fdfbddf61b4ef80927edd813163732"}, + {file = "mypy-1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7029881ec6ffb8bc233a4fa364736789582c738217b133f1b55967115288a2bc"}, + {file = "mypy-1.13.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3e38b980e5681f28f033f3be86b099a247b13c491f14bb8b1e1e134d23bb599d"}, + {file = "mypy-1.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:a6789be98a2017c912ae6ccb77ea553bbaf13d27605d2ca20a76dfbced631b24"}, + {file = "mypy-1.13.0-py3-none-any.whl", hash = "sha256:9c250883f9fd81d212e0952c92dbfcc96fc237f4b7c92f56ac81fd48460b3e5a"}, + {file = "mypy-1.13.0.tar.gz", hash = "sha256:0291a61b6fbf3e6673e3405cfcc0e7650bebc7939659fdca2702958038bd835e"}, ] [package.dependencies] -mypy_extensions = ">=1.0.0" +mypy-extensions = ">=1.0.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} -typing_extensions = ">=4.6.0" +typing-extensions = ">=4.6.0" [package.extras] dmypy = ["psutil (>=4.0)"] @@ -2781,43 +2915,24 @@ version = "1.0.0" description = "Type system extensions for programs checked with the mypy type checker." optional = false python-versions = ">=3.5" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, ] -[[package]] -name = "narwhals" -version = "1.34.1" -description = "Extremely lightweight compatibility layer between dataframe libraries" -optional = false -python-versions = ">=3.8" -files = [ - {file = "narwhals-1.34.1-py3-none-any.whl", hash = "sha256:aee49a30d1624371ad975ede2bab16cd125ab5df0fd185e2f4757e103b074d27"}, - {file = "narwhals-1.34.1.tar.gz", hash = "sha256:8941a08cf62f39ae67be945090b20a19c51fb9048ac909cad2f95aee23f9e302"}, -] - -[package.extras] -cudf = ["cudf (>=24.10.0)"] -dask = ["dask[dataframe] (>=2024.8)"] -duckdb = ["duckdb (>=1.0)"] -ibis = ["ibis-framework (>=6.0.0)", "packaging", "pyarrow-hotfix", "rich"] -modin = ["modin"] -pandas = ["pandas (>=0.25.3)"] -polars = ["polars (>=0.20.3)"] -pyarrow = ["pyarrow (>=11.0.0)"] -pyspark = ["pyspark (>=3.5.0)"] -sqlframe = ["sqlframe (>=3.22.0)"] - [[package]] name = "nbclient" -version = "0.10.2" +version = "0.10.1" description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." optional = false -python-versions = ">=3.9.0" +python-versions = ">=3.8.0" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d"}, - {file = "nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193"}, + {file = "nbclient-0.10.1-py3-none-any.whl", hash = "sha256:949019b9240d66897e442888cfb618f69ef23dc71c01cb5fced8499c2cfc084d"}, + {file = "nbclient-0.10.1.tar.gz", hash = "sha256:3e93e348ab27e712acd46fccd809139e356eb9a31aab641d1a7991a6eb4e6f68"}, ] [package.dependencies] @@ -2828,23 +2943,25 @@ traitlets = ">=5.4" [package.extras] dev = ["pre-commit"] -docs = ["autodoc-traits", "flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "mock", "moto", "myst-parser", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling", "testpath", "xmltodict"] -test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] +docs = ["autodoc-traits", "flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "mock", "moto", "myst-parser", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling", "testpath", "xmltodict"] +test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] [[package]] name = "nbconvert" -version = "7.16.6" +version = "7.16.4" description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b"}, - {file = "nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582"}, + {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, + {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, ] [package.dependencies] beautifulsoup4 = "*" -bleach = {version = "!=5.0.0", extras = ["css"]} +bleach = "!=5.0.0" defusedxml = "*" jinja2 = ">=3.0" jupyter-core = ">=4.7" @@ -2856,6 +2973,7 @@ nbformat = ">=5.7" packaging = "*" pandocfilters = ">=1.4.1" pygments = ">=2.4.1" +tinycss2 = "*" traitlets = ">=5.1" [package.extras] @@ -2873,6 +2991,8 @@ version = "5.10.4" description = "The Jupyter Notebook format" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"}, {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"}, @@ -2894,6 +3014,7 @@ version = "1.6.0" description = "Patch asyncio to allow nested event loops" optional = false python-versions = ">=3.5" +groups = ["main"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -2905,6 +3026,7 @@ version = "3.4.2" description = "Python package for creating and manipulating graphs and networks" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, @@ -2924,6 +3046,8 @@ version = "1.9.1" description = "Node.js virtual environment builder" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"}, {file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"}, @@ -2931,18 +3055,20 @@ files = [ [[package]] name = "notebook" -version = "7.4.0" +version = "7.3.0" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "notebook-7.4.0-py3-none-any.whl", hash = "sha256:005fd21f4db6093a7b739b17df5fe60597811adb07e8255f458db4035d208e3a"}, - {file = "notebook-7.4.0.tar.gz", hash = "sha256:581d88f83709d90ce738dfd1d759892b96e3cbbc9c4a989912ed6c6a08f0d3e8"}, + {file = "notebook-7.3.0-py3-none-any.whl", hash = "sha256:affa2fdbc10661aa05790ba105836871666b3919559abb5bc92dd8d9f0cbeee3"}, + {file = "notebook-7.3.0.tar.gz", hash = "sha256:e1dc37db32620b04043ae78866a40b087c43308d85067699db99e6f9e22846bc"}, ] [package.dependencies] jupyter-server = ">=2.4.0,<3" -jupyterlab = ">=4.4.0rc0,<4.5" +jupyterlab = ">=4.3.2,<4.4" jupyterlab-server = ">=2.27.1,<3" notebook-shim = ">=0.2,<0.3" tornado = ">=6.2.0" @@ -2950,7 +3076,7 @@ tornado = ">=6.2.0" [package.extras] dev = ["hatch", "pre-commit"] docs = ["myst-parser", "nbsphinx", "pydata-sphinx-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] -test = ["importlib-resources (>=5.0)", "ipykernel", "jupyter-server[test] (>=2.4.0,<3)", "jupyterlab-server[test] (>=2.27.1,<3)", "nbval", "pytest (>=7.0)", "pytest-console-scripts", "pytest-timeout", "pytest-tornasync", "requests"] +test = ["importlib-resources (>=5.0) ; python_version < \"3.10\"", "ipykernel", "jupyter-server[test] (>=2.4.0,<3)", "jupyterlab-server[test] (>=2.27.1,<3)", "nbval", "pytest (>=7.0)", "pytest-console-scripts", "pytest-timeout", "pytest-tornasync", "requests"] [[package]] name = "notebook-shim" @@ -2958,6 +3084,8 @@ version = "0.2.4" description = "A shim layer for notebook traits and config" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, @@ -2971,37 +3099,38 @@ test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync" [[package]] name = "numba" -version = "0.61.2" +version = "0.60.0" description = "compiling Python code using LLVM" optional = false -python-versions = ">=3.10" -files = [ - {file = "numba-0.61.2-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:cf9f9fc00d6eca0c23fc840817ce9f439b9f03c8f03d6246c0e7f0cb15b7162a"}, - {file = "numba-0.61.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ea0247617edcb5dd61f6106a56255baab031acc4257bddaeddb3a1003b4ca3fd"}, - {file = "numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ae8c7a522c26215d5f62ebec436e3d341f7f590079245a2f1008dfd498cc1642"}, - {file = "numba-0.61.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd1e74609855aa43661edffca37346e4e8462f6903889917e9f41db40907daa2"}, - {file = "numba-0.61.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae45830b129c6137294093b269ef0a22998ccc27bf7cf096ab8dcf7bca8946f9"}, - {file = "numba-0.61.2-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:efd3db391df53aaa5cfbee189b6c910a5b471488749fd6606c3f33fc984c2ae2"}, - {file = "numba-0.61.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49c980e4171948ffebf6b9a2520ea81feed113c1f4890747ba7f59e74be84b1b"}, - {file = "numba-0.61.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3945615cd73c2c7eba2a85ccc9c1730c21cd3958bfcf5a44302abae0fb07bb60"}, - {file = "numba-0.61.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbfdf4eca202cebade0b7d43896978e146f39398909a42941c9303f82f403a18"}, - {file = "numba-0.61.2-cp311-cp311-win_amd64.whl", hash = "sha256:76bcec9f46259cedf888041b9886e257ae101c6268261b19fda8cfbc52bec9d1"}, - {file = "numba-0.61.2-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:34fba9406078bac7ab052efbf0d13939426c753ad72946baaa5bf9ae0ebb8dd2"}, - {file = "numba-0.61.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4ddce10009bc097b080fc96876d14c051cc0c7679e99de3e0af59014dab7dfe8"}, - {file = "numba-0.61.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b1bb509d01f23d70325d3a5a0e237cbc9544dd50e50588bc581ba860c213546"}, - {file = "numba-0.61.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:48a53a3de8f8793526cbe330f2a39fe9a6638efcbf11bd63f3d2f9757ae345cd"}, - {file = "numba-0.61.2-cp312-cp312-win_amd64.whl", hash = "sha256:97cf4f12c728cf77c9c1d7c23707e4d8fb4632b46275f8f3397de33e5877af18"}, - {file = "numba-0.61.2-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:3a10a8fc9afac40b1eac55717cece1b8b1ac0b946f5065c89e00bde646b5b154"}, - {file = "numba-0.61.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d3bcada3c9afba3bed413fba45845f2fb9cd0d2b27dd58a1be90257e293d140"}, - {file = "numba-0.61.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bdbca73ad81fa196bd53dc12e3aaf1564ae036e0c125f237c7644fe64a4928ab"}, - {file = "numba-0.61.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5f154aaea625fb32cfbe3b80c5456d514d416fcdf79733dd69c0df3a11348e9e"}, - {file = "numba-0.61.2-cp313-cp313-win_amd64.whl", hash = "sha256:59321215e2e0ac5fa928a8020ab00b8e57cda8a97384963ac0dfa4d4e6aa54e7"}, - {file = "numba-0.61.2.tar.gz", hash = "sha256:8750ee147940a6637b80ecf7f95062185ad8726c8c28a2295b8ec1160a196f7d"}, +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "numba-0.60.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d761de835cd38fb400d2c26bb103a2726f548dc30368853121d66201672e651"}, + {file = "numba-0.60.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:159e618ef213fba758837f9837fb402bbe65326e60ba0633dbe6c7f274d42c1b"}, + {file = "numba-0.60.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1527dc578b95c7c4ff248792ec33d097ba6bef9eda466c948b68dfc995c25781"}, + {file = "numba-0.60.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fe0b28abb8d70f8160798f4de9d486143200f34458d34c4a214114e445d7124e"}, + {file = "numba-0.60.0-cp310-cp310-win_amd64.whl", hash = "sha256:19407ced081d7e2e4b8d8c36aa57b7452e0283871c296e12d798852bc7d7f198"}, + {file = "numba-0.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a17b70fc9e380ee29c42717e8cc0bfaa5556c416d94f9aa96ba13acb41bdece8"}, + {file = "numba-0.60.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fb02b344a2a80efa6f677aa5c40cd5dd452e1b35f8d1c2af0dfd9ada9978e4b"}, + {file = "numba-0.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5f4fde652ea604ea3c86508a3fb31556a6157b2c76c8b51b1d45eb40c8598703"}, + {file = "numba-0.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4142d7ac0210cc86432b818338a2bc368dc773a2f5cf1e32ff7c5b378bd63ee8"}, + {file = "numba-0.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cac02c041e9b5bc8cf8f2034ff6f0dbafccd1ae9590dc146b3a02a45e53af4e2"}, + {file = "numba-0.60.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7da4098db31182fc5ffe4bc42c6f24cd7d1cb8a14b59fd755bfee32e34b8404"}, + {file = "numba-0.60.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:38d6ea4c1f56417076ecf8fc327c831ae793282e0ff51080c5094cb726507b1c"}, + {file = "numba-0.60.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:62908d29fb6a3229c242e981ca27e32a6e606cc253fc9e8faeb0e48760de241e"}, + {file = "numba-0.60.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0ebaa91538e996f708f1ab30ef4d3ddc344b64b5227b67a57aa74f401bb68b9d"}, + {file = "numba-0.60.0-cp312-cp312-win_amd64.whl", hash = "sha256:f75262e8fe7fa96db1dca93d53a194a38c46da28b112b8a4aca168f0df860347"}, + {file = "numba-0.60.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:01ef4cd7d83abe087d644eaa3d95831b777aa21d441a23703d649e06b8e06b74"}, + {file = "numba-0.60.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:819a3dfd4630d95fd574036f99e47212a1af41cbcb019bf8afac63ff56834449"}, + {file = "numba-0.60.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b983bd6ad82fe868493012487f34eae8bf7dd94654951404114f23c3466d34b"}, + {file = "numba-0.60.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c151748cd269ddeab66334bd754817ffc0cabd9433acb0f551697e5151917d25"}, + {file = "numba-0.60.0-cp39-cp39-win_amd64.whl", hash = "sha256:3031547a015710140e8c87226b4cfe927cac199835e5bf7d4fe5cb64e814e3ab"}, + {file = "numba-0.60.0.tar.gz", hash = "sha256:5df6158e5584eece5fc83294b949fd30b9f1125df7708862205217e068aabf16"}, ] [package.dependencies] -llvmlite = "==0.44.*" -numpy = ">=1.24,<2.3" +llvmlite = "==0.43.*" +numpy = ">=1.22,<2.1" [[package]] name = "numcodecs" @@ -3009,6 +3138,7 @@ version = "0.13.1" description = "A Python package providing buffer compression and transformation codecs for use in data storage and communication applications." optional = false python-versions = ">=3.10" +groups = ["main"] files = [ {file = "numcodecs-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:96add4f783c5ce57cc7e650b6cac79dd101daf887c479a00a29bc1487ced180b"}, {file = "numcodecs-0.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:237b7171609e868a20fd313748494444458ccd696062f67e198f7f8f52000c15"}, @@ -3042,66 +3172,57 @@ zfpy = ["numpy (<2.0.0)", "zfpy (>=1.0.0)"] [[package]] name = "numpy" -version = "2.1.3" +version = "2.0.2" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.10" -files = [ - {file = "numpy-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c894b4305373b9c5576d7a12b473702afdf48ce5369c074ba304cc5ad8730dff"}, - {file = "numpy-2.1.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b47fbb433d3260adcd51eb54f92a2ffbc90a4595f8970ee00e064c644ac788f5"}, - {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:825656d0743699c529c5943554d223c021ff0494ff1442152ce887ef4f7561a1"}, - {file = "numpy-2.1.3-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:6a4825252fcc430a182ac4dee5a505053d262c807f8a924603d411f6718b88fd"}, - {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e711e02f49e176a01d0349d82cb5f05ba4db7d5e7e0defd026328e5cfb3226d3"}, - {file = "numpy-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78574ac2d1a4a02421f25da9559850d59457bac82f2b8d7a44fe83a64f770098"}, - {file = "numpy-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c7662f0e3673fe4e832fe07b65c50342ea27d989f92c80355658c7f888fcc83c"}, - {file = "numpy-2.1.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:fa2d1337dc61c8dc417fbccf20f6d1e139896a30721b7f1e832b2bb6ef4eb6c4"}, - {file = "numpy-2.1.3-cp310-cp310-win32.whl", hash = "sha256:72dcc4a35a8515d83e76b58fdf8113a5c969ccd505c8a946759b24e3182d1f23"}, - {file = "numpy-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:ecc76a9ba2911d8d37ac01de72834d8849e55473457558e12995f4cd53e778e0"}, - {file = "numpy-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d1167c53b93f1f5d8a139a742b3c6f4d429b54e74e6b57d0eff40045187b15d"}, - {file = "numpy-2.1.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c80e4a09b3d95b4e1cac08643f1152fa71a0a821a2d4277334c88d54b2219a41"}, - {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:576a1c1d25e9e02ed7fa5477f30a127fe56debd53b8d2c89d5578f9857d03ca9"}, - {file = "numpy-2.1.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:973faafebaae4c0aaa1a1ca1ce02434554d67e628b8d805e61f874b84e136b09"}, - {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:762479be47a4863e261a840e8e01608d124ee1361e48b96916f38b119cfda04a"}, - {file = "numpy-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc6f24b3d1ecc1eebfbf5d6051faa49af40b03be1aaa781ebdadcbc090b4539b"}, - {file = "numpy-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:17ee83a1f4fef3c94d16dc1802b998668b5419362c8a4f4e8a491de1b41cc3ee"}, - {file = "numpy-2.1.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15cb89f39fa6d0bdfb600ea24b250e5f1a3df23f901f51c8debaa6a5d122b2f0"}, - {file = "numpy-2.1.3-cp311-cp311-win32.whl", hash = "sha256:d9beb777a78c331580705326d2367488d5bc473b49a9bc3036c154832520aca9"}, - {file = "numpy-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:d89dd2b6da69c4fff5e39c28a382199ddedc3a5be5390115608345dec660b9e2"}, - {file = "numpy-2.1.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f55ba01150f52b1027829b50d70ef1dafd9821ea82905b63936668403c3b471e"}, - {file = "numpy-2.1.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:13138eadd4f4da03074851a698ffa7e405f41a0845a6b1ad135b81596e4e9958"}, - {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a6b46587b14b888e95e4a24d7b13ae91fa22386c199ee7b418f449032b2fa3b8"}, - {file = "numpy-2.1.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:0fa14563cc46422e99daef53d725d0c326e99e468a9320a240affffe87852564"}, - {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8637dcd2caa676e475503d1f8fdb327bc495554e10838019651b76d17b98e512"}, - {file = "numpy-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2312b2aa89e1f43ecea6da6ea9a810d06aae08321609d8dc0d0eda6d946a541b"}, - {file = "numpy-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a38c19106902bb19351b83802531fea19dee18e5b37b36454f27f11ff956f7fc"}, - {file = "numpy-2.1.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02135ade8b8a84011cbb67dc44e07c58f28575cf9ecf8ab304e51c05528c19f0"}, - {file = "numpy-2.1.3-cp312-cp312-win32.whl", hash = "sha256:e6988e90fcf617da2b5c78902fe8e668361b43b4fe26dbf2d7b0f8034d4cafb9"}, - {file = "numpy-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:0d30c543f02e84e92c4b1f415b7c6b5326cbe45ee7882b6b77db7195fb971e3a"}, - {file = "numpy-2.1.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96fe52fcdb9345b7cd82ecd34547fca4321f7656d500eca497eb7ea5a926692f"}, - {file = "numpy-2.1.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f653490b33e9c3a4c1c01d41bc2aef08f9475af51146e4a7710c450cf9761598"}, - {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:dc258a761a16daa791081d026f0ed4399b582712e6fc887a95af09df10c5ca57"}, - {file = "numpy-2.1.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:016d0f6f5e77b0f0d45d77387ffa4bb89816b57c835580c3ce8e099ef830befe"}, - {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c181ba05ce8299c7aa3125c27b9c2167bca4a4445b7ce73d5febc411ca692e43"}, - {file = "numpy-2.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5641516794ca9e5f8a4d17bb45446998c6554704d888f86df9b200e66bdcce56"}, - {file = "numpy-2.1.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ea4dedd6e394a9c180b33c2c872b92f7ce0f8e7ad93e9585312b0c5a04777a4a"}, - {file = "numpy-2.1.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b0df3635b9c8ef48bd3be5f862cf71b0a4716fa0e702155c45067c6b711ddcef"}, - {file = "numpy-2.1.3-cp313-cp313-win32.whl", hash = "sha256:50ca6aba6e163363f132b5c101ba078b8cbd3fa92c7865fd7d4d62d9779ac29f"}, - {file = "numpy-2.1.3-cp313-cp313-win_amd64.whl", hash = "sha256:747641635d3d44bcb380d950679462fae44f54b131be347d5ec2bce47d3df9ed"}, - {file = "numpy-2.1.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:996bb9399059c5b82f76b53ff8bb686069c05acc94656bb259b1d63d04a9506f"}, - {file = "numpy-2.1.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:45966d859916ad02b779706bb43b954281db43e185015df6eb3323120188f9e4"}, - {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:baed7e8d7481bfe0874b566850cb0b85243e982388b7b23348c6db2ee2b2ae8e"}, - {file = "numpy-2.1.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a9f7f672a3388133335589cfca93ed468509cb7b93ba3105fce780d04a6576a0"}, - {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7aac50327da5d208db2eec22eb11e491e3fe13d22653dce51b0f4109101b408"}, - {file = "numpy-2.1.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4394bc0dbd074b7f9b52024832d16e019decebf86caf909d94f6b3f77a8ee3b6"}, - {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:50d18c4358a0a8a53f12a8ba9d772ab2d460321e6a93d6064fc22443d189853f"}, - {file = "numpy-2.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:14e253bd43fc6b37af4921b10f6add6925878a42a0c5fe83daee390bca80bc17"}, - {file = "numpy-2.1.3-cp313-cp313t-win32.whl", hash = "sha256:08788d27a5fd867a663f6fc753fd7c3ad7e92747efc73c53bca2f19f8bc06f48"}, - {file = "numpy-2.1.3-cp313-cp313t-win_amd64.whl", hash = "sha256:2564fbdf2b99b3f815f2107c1bbc93e2de8ee655a69c261363a1172a79a257d4"}, - {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4f2015dfe437dfebbfce7c85c7b53d81ba49e71ba7eadbf1df40c915af75979f"}, - {file = "numpy-2.1.3-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3522b0dfe983a575e6a9ab3a4a4dfe156c3e428468ff08ce582b9bb6bd1d71d4"}, - {file = "numpy-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c006b607a865b07cd981ccb218a04fc86b600411d83d6fc261357f1c0966755d"}, - {file = "numpy-2.1.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e14e26956e6f1696070788252dcdff11b4aca4c3e8bd166e0df1bb8f315a67cb"}, - {file = "numpy-2.1.3.tar.gz", hash = "sha256:aa08e04e08aaf974d4458def539dece0d28146d866a39da5639596f4921fd761"}, +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8c5713284ce4e282544c68d1c3b2c7161d38c256d2eefc93c1d683cf47683e66"}, + {file = "numpy-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:becfae3ddd30736fe1889a37f1f580e245ba79a5855bff5f2a29cb3ccc22dd7b"}, + {file = "numpy-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2da5960c3cf0df7eafefd806d4e612c5e19358de82cb3c343631188991566ccd"}, + {file = "numpy-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:496f71341824ed9f3d2fd36cf3ac57ae2e0165c143b55c3a035ee219413f3318"}, + {file = "numpy-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a61ec659f68ae254e4d237816e33171497e978140353c0c2038d46e63282d0c8"}, + {file = "numpy-2.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d731a1c6116ba289c1e9ee714b08a8ff882944d4ad631fd411106a30f083c326"}, + {file = "numpy-2.0.2-cp310-cp310-win32.whl", hash = "sha256:984d96121c9f9616cd33fbd0618b7f08e0cfc9600a7ee1d6fd9b239186d19d97"}, + {file = "numpy-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:c7b0be4ef08607dd04da4092faee0b86607f111d5ae68036f16cc787e250a131"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:49ca4decb342d66018b01932139c0961a8f9ddc7589611158cb3c27cbcf76448"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:11a76c372d1d37437857280aa142086476136a8c0f373b2e648ab2c8f18fb195"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:807ec44583fd708a21d4a11d94aedf2f4f3c3719035c76a2bbe1fe8e217bdc57"}, + {file = "numpy-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8cafab480740e22f8d833acefed5cc87ce276f4ece12fdaa2e8903db2f82897a"}, + {file = "numpy-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15f476a45e6e5a3a79d8a14e62161d27ad897381fecfa4a09ed5322f2085669"}, + {file = "numpy-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e689d772146140a252c3a28501da66dfecd77490b498b168b501835041f951"}, + {file = "numpy-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9ea91dfb7c3d1c56a0e55657c0afb38cf1eeae4544c208dc465c3c9f3a7c09f9"}, + {file = "numpy-2.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c1c9307701fec8f3f7a1e6711f9089c06e6284b3afbbcd259f7791282d660a15"}, + {file = "numpy-2.0.2-cp311-cp311-win32.whl", hash = "sha256:a392a68bd329eafac5817e5aefeb39038c48b671afd242710b451e76090e81f4"}, + {file = "numpy-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:286cd40ce2b7d652a6f22efdfc6d1edf879440e53e76a75955bc0c826c7e64dc"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:df55d490dea7934f330006d0f81e8551ba6010a5bf035a249ef61a94f21c500b"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df823f570d9adf0978347d1f926b2a867d5608f434a7cff7f7908c6570dcf5e"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9a92ae5c14811e390f3767053ff54eaee3bf84576d99a2456391401323f4ec2c"}, + {file = "numpy-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a842d573724391493a97a62ebbb8e731f8a5dcc5d285dfc99141ca15a3302d0c"}, + {file = "numpy-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05e238064fc0610c840d1cf6a13bf63d7e391717d247f1bf0318172e759e692"}, + {file = "numpy-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0123ffdaa88fa4ab64835dcbde75dcdf89c453c922f18dced6e27c90d1d0ec5a"}, + {file = "numpy-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:96a55f64139912d61de9137f11bf39a55ec8faec288c75a54f93dfd39f7eb40c"}, + {file = "numpy-2.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec9852fb39354b5a45a80bdab5ac02dd02b15f44b3804e9f00c556bf24b4bded"}, + {file = "numpy-2.0.2-cp312-cp312-win32.whl", hash = "sha256:671bec6496f83202ed2d3c8fdc486a8fc86942f2e69ff0e986140339a63bcbe5"}, + {file = "numpy-2.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:cfd41e13fdc257aa5778496b8caa5e856dc4896d4ccf01841daee1d96465467a"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9059e10581ce4093f735ed23f3b9d283b9d517ff46009ddd485f1747eb22653c"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:423e89b23490805d2a5a96fe40ec507407b8ee786d66f7328be214f9679df6dd"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:2b2955fa6f11907cf7a70dab0d0755159bca87755e831e47932367fc8f2f2d0b"}, + {file = "numpy-2.0.2-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:97032a27bd9d8988b9a97a8c4d2c9f2c15a81f61e2f21404d7e8ef00cb5be729"}, + {file = "numpy-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e795a8be3ddbac43274f18588329c72939870a16cae810c2b73461c40718ab1"}, + {file = "numpy-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b258c385842546006213344c50655ff1555a9338e2e5e02a0756dc3e803dd"}, + {file = "numpy-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fec9451a7789926bcf7c2b8d187292c9f93ea30284802a0ab3f5be8ab36865d"}, + {file = "numpy-2.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9189427407d88ff25ecf8f12469d4d39d35bee1db5d39fc5c168c6f088a6956d"}, + {file = "numpy-2.0.2-cp39-cp39-win32.whl", hash = "sha256:905d16e0c60200656500c95b6b8dca5d109e23cb24abc701d41c02d74c6b3afa"}, + {file = "numpy-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3f4ab0caa7f053f6797fcd4e1e25caee367db3112ef2b6ef82d749530768c73"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7f0a0c6f12e07fa94133c8a67404322845220c06a9e80e85999afe727f7438b8"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:312950fdd060354350ed123c0e25a71327d3711584beaef30cdaa93320c392d4"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26df23238872200f63518dd2aa984cfca675d82469535dc7162dc2ee52d9dd5c"}, + {file = "numpy-2.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a46288ec55ebbd58947d31d72be2c63cbf839f0a63b49cb755022310792a3385"}, + {file = "numpy-2.0.2.tar.gz", hash = "sha256:883c987dee1880e2a864ab0dc9892292582510604156762362d9326444636e78"}, ] [[package]] @@ -3110,6 +3231,7 @@ version = "2.2.1" description = "" optional = false python-versions = "<3.13,>=3.10" +groups = ["main"] files = [ {file = "numpydoc_decorator-2.2.1-py3-none-any.whl", hash = "sha256:16181c97b20c2099d6fd75404bef379cc3678338d9aa8e6e8fafb3ae7adc166a"}, {file = "numpydoc_decorator-2.2.1.tar.gz", hash = "sha256:c3b5b16bec1e7ed221adab7bd77a8a8acc0c7be1bb4e0871721b2a5d2f3145fa"}, @@ -3124,6 +3246,7 @@ version = "3.2.2" description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -3136,79 +3259,87 @@ signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] [[package]] name = "orjson" -version = "3.10.16" +version = "3.10.12" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false -python-versions = ">=3.9" -files = [ - {file = "orjson-3.10.16-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:4cb473b8e79154fa778fb56d2d73763d977be3dcc140587e07dbc545bbfc38f8"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:622a8e85eeec1948690409a19ca1c7d9fd8ff116f4861d261e6ae2094fe59a00"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c682d852d0ce77613993dc967e90e151899fe2d8e71c20e9be164080f468e370"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c520ae736acd2e32df193bcff73491e64c936f3e44a2916b548da048a48b46b"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:134f87c76bfae00f2094d85cfab261b289b76d78c6da8a7a3b3c09d362fd1e06"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b59afde79563e2cf37cfe62ee3b71c063fd5546c8e662d7fcfc2a3d5031a5c4c"}, - {file = "orjson-3.10.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:113602f8241daaff05d6fad25bd481d54c42d8d72ef4c831bb3ab682a54d9e15"}, - {file = "orjson-3.10.16-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4fc0077d101f8fab4031e6554fc17b4c2ad8fdbc56ee64a727f3c95b379e31da"}, - {file = "orjson-3.10.16-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:9c6bf6ff180cd69e93f3f50380224218cfab79953a868ea3908430bcfaf9cb5e"}, - {file = "orjson-3.10.16-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5673eadfa952f95a7cd76418ff189df11b0a9c34b1995dff43a6fdbce5d63bf4"}, - {file = "orjson-3.10.16-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5fe638a423d852b0ae1e1a79895851696cb0d9fa0946fdbfd5da5072d9bb9551"}, - {file = "orjson-3.10.16-cp310-cp310-win32.whl", hash = "sha256:33af58f479b3c6435ab8f8b57999874b4b40c804c7a36b5cc6b54d8f28e1d3dd"}, - {file = "orjson-3.10.16-cp310-cp310-win_amd64.whl", hash = "sha256:0338356b3f56d71293c583350af26f053017071836b07e064e92819ecf1aa055"}, - {file = "orjson-3.10.16-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44fcbe1a1884f8bc9e2e863168b0f84230c3d634afe41c678637d2728ea8e739"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78177bf0a9d0192e0b34c3d78bcff7fe21d1b5d84aeb5ebdfe0dbe637b885225"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:12824073a010a754bb27330cad21d6e9b98374f497f391b8707752b96f72e741"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddd41007e56284e9867864aa2f29f3136bb1dd19a49ca43c0b4eda22a579cf53"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0877c4d35de639645de83666458ca1f12560d9fa7aa9b25d8bb8f52f61627d14"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a09a539e9cc3beead3e7107093b4ac176d015bec64f811afb5965fce077a03c"}, - {file = "orjson-3.10.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31b98bc9b40610fec971d9a4d67bb2ed02eec0a8ae35f8ccd2086320c28526ca"}, - {file = "orjson-3.10.16-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0ce243f5a8739f3a18830bc62dc2e05b69a7545bafd3e3249f86668b2bcd8e50"}, - {file = "orjson-3.10.16-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:64792c0025bae049b3074c6abe0cf06f23c8e9f5a445f4bab31dc5ca23dbf9e1"}, - {file = "orjson-3.10.16-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ea53f7e68eec718b8e17e942f7ca56c6bd43562eb19db3f22d90d75e13f0431d"}, - {file = "orjson-3.10.16-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a741ba1a9488c92227711bde8c8c2b63d7d3816883268c808fbeada00400c164"}, - {file = "orjson-3.10.16-cp311-cp311-win32.whl", hash = "sha256:c7ed2c61bb8226384c3fdf1fb01c51b47b03e3f4536c985078cccc2fd19f1619"}, - {file = "orjson-3.10.16-cp311-cp311-win_amd64.whl", hash = "sha256:cd67d8b3e0e56222a2e7b7f7da9031e30ecd1fe251c023340b9f12caca85ab60"}, - {file = "orjson-3.10.16-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6d3444abbfa71ba21bb042caa4b062535b122248259fdb9deea567969140abca"}, - {file = "orjson-3.10.16-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:30245c08d818fdcaa48b7d5b81499b8cae09acabb216fe61ca619876b128e184"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0ba1d0baa71bf7579a4ccdcf503e6f3098ef9542106a0eca82395898c8a500a"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb0beefa5ef3af8845f3a69ff2a4aa62529b5acec1cfe5f8a6b4141033fd46ef"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6daa0e1c9bf2e030e93c98394de94506f2a4d12e1e9dadd7c53d5e44d0f9628e"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da9019afb21e02410ef600e56666652b73eb3e4d213a0ec919ff391a7dd52aa"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:daeb3a1ee17b69981d3aae30c3b4e786b0f8c9e6c71f2b48f1aef934f63f38f4"}, - {file = "orjson-3.10.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80fed80eaf0e20a31942ae5d0728849862446512769692474be5e6b73123a23b"}, - {file = "orjson-3.10.16-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73390ed838f03764540a7bdc4071fe0123914c2cc02fb6abf35182d5fd1b7a42"}, - {file = "orjson-3.10.16-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a22bba012a0c94ec02a7768953020ab0d3e2b884760f859176343a36c01adf87"}, - {file = "orjson-3.10.16-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5385bbfdbc90ff5b2635b7e6bebf259652db00a92b5e3c45b616df75b9058e88"}, - {file = "orjson-3.10.16-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:02c6279016346e774dd92625d46c6c40db687b8a0d685aadb91e26e46cc33e1e"}, - {file = "orjson-3.10.16-cp312-cp312-win32.whl", hash = "sha256:7ca55097a11426db80f79378e873a8c51f4dde9ffc22de44850f9696b7eb0e8c"}, - {file = "orjson-3.10.16-cp312-cp312-win_amd64.whl", hash = "sha256:86d127efdd3f9bf5f04809b70faca1e6836556ea3cc46e662b44dab3fe71f3d6"}, - {file = "orjson-3.10.16-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:148a97f7de811ba14bc6dbc4a433e0341ffd2cc285065199fb5f6a98013744bd"}, - {file = "orjson-3.10.16-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:1d960c1bf0e734ea36d0adc880076de3846aaec45ffad29b78c7f1b7962516b8"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a318cd184d1269f68634464b12871386808dc8b7c27de8565234d25975a7a137"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:df23f8df3ef9223d1d6748bea63fca55aae7da30a875700809c500a05975522b"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b94dda8dd6d1378f1037d7f3f6b21db769ef911c4567cbaa962bb6dc5021cf90"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f12970a26666a8775346003fd94347d03ccb98ab8aa063036818381acf5f523e"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15a1431a245d856bd56e4d29ea0023eb4d2c8f71efe914beb3dee8ab3f0cd7fb"}, - {file = "orjson-3.10.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c83655cfc247f399a222567d146524674a7b217af7ef8289c0ff53cfe8db09f0"}, - {file = "orjson-3.10.16-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fa59ae64cb6ddde8f09bdbf7baf933c4cd05734ad84dcf4e43b887eb24e37652"}, - {file = "orjson-3.10.16-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ca5426e5aacc2e9507d341bc169d8af9c3cbe88f4cd4c1cf2f87e8564730eb56"}, - {file = "orjson-3.10.16-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6fd5da4edf98a400946cd3a195680de56f1e7575109b9acb9493331047157430"}, - {file = "orjson-3.10.16-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:980ecc7a53e567169282a5e0ff078393bac78320d44238da4e246d71a4e0e8f5"}, - {file = "orjson-3.10.16-cp313-cp313-win32.whl", hash = "sha256:28f79944dd006ac540a6465ebd5f8f45dfdf0948ff998eac7a908275b4c1add6"}, - {file = "orjson-3.10.16-cp313-cp313-win_amd64.whl", hash = "sha256:fe0a145e96d51971407cb8ba947e63ead2aa915db59d6631a355f5f2150b56b7"}, - {file = "orjson-3.10.16-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c35b5c1fb5a5d6d2fea825dec5d3d16bea3c06ac744708a8e1ff41d4ba10cdf1"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9aac7ecc86218b4b3048c768f227a9452287001d7548500150bb75ee21bf55d"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6e19f5102fff36f923b6dfdb3236ec710b649da975ed57c29833cb910c5a73ab"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17210490408eb62755a334a6f20ed17c39f27b4f45d89a38cd144cd458eba80b"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fbbe04451db85916e52a9f720bd89bf41f803cf63b038595674691680cbebd1b"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a966eba501a3a1f309f5a6af32ed9eb8f316fa19d9947bac3e6350dc63a6f0a"}, - {file = "orjson-3.10.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01e0d22f06c81e6c435723343e1eefc710e0510a35d897856766d475f2a15687"}, - {file = "orjson-3.10.16-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7c1e602d028ee285dbd300fb9820b342b937df64d5a3336e1618b354e95a2569"}, - {file = "orjson-3.10.16-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:d230e5020666a6725629df81e210dc11c3eae7d52fe909a7157b3875238484f3"}, - {file = "orjson-3.10.16-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:0f8baac07d4555f57d44746a7d80fbe6b2c4fe2ed68136b4abb51cfec512a5e9"}, - {file = "orjson-3.10.16-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:524e48420b90fc66953e91b660b3d05faaf921277d6707e328fde1c218b31250"}, - {file = "orjson-3.10.16-cp39-cp39-win32.whl", hash = "sha256:a9f614e31423d7292dbca966a53b2d775c64528c7d91424ab2747d8ab8ce5c72"}, - {file = "orjson-3.10.16-cp39-cp39-win_amd64.whl", hash = "sha256:c338dc2296d1ed0d5c5c27dfb22d00b330555cb706c2e0be1e1c3940a0895905"}, - {file = "orjson-3.10.16.tar.gz", hash = "sha256:d2aaa5c495e11d17b9b93205f5fa196737ee3202f000aaebf028dc9a73750f10"}, +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "orjson-3.10.12-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ece01a7ec71d9940cc654c482907a6b65df27251255097629d0dea781f255c6d"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34ec9aebc04f11f4b978dd6caf697a2df2dd9b47d35aa4cc606cabcb9df69d7"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd6ec8658da3480939c79b9e9e27e0db31dffcd4ba69c334e98c9976ac29140e"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f17e6baf4cf01534c9de8a16c0c611f3d94925d1701bf5f4aff17003677d8ced"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6402ebb74a14ef96f94a868569f5dccf70d791de49feb73180eb3c6fda2ade56"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0000758ae7c7853e0a4a6063f534c61656ebff644391e1f81698c1b2d2fc8cd2"}, + {file = "orjson-3.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:888442dcee99fd1e5bd37a4abb94930915ca6af4db50e23e746cdf4d1e63db13"}, + {file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c1f7a3ce79246aa0e92f5458d86c54f257fb5dfdc14a192651ba7ec2c00f8a05"}, + {file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:802a3935f45605c66fb4a586488a38af63cb37aaad1c1d94c982c40dcc452e85"}, + {file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1da1ef0113a2be19bb6c557fb0ec2d79c92ebd2fed4cfb1b26bab93f021fb885"}, + {file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a3273e99f367f137d5b3fecb5e9f45bcdbfac2a8b2f32fbc72129bbd48789c2"}, + {file = "orjson-3.10.12-cp310-none-win32.whl", hash = "sha256:475661bf249fd7907d9b0a2a2421b4e684355a77ceef85b8352439a9163418c3"}, + {file = "orjson-3.10.12-cp310-none-win_amd64.whl", hash = "sha256:87251dc1fb2b9e5ab91ce65d8f4caf21910d99ba8fb24b49fd0c118b2362d509"}, + {file = "orjson-3.10.12-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a734c62efa42e7df94926d70fe7d37621c783dea9f707a98cdea796964d4cf74"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:750f8b27259d3409eda8350c2919a58b0cfcd2054ddc1bd317a643afc646ef23"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb52c22bfffe2857e7aa13b4622afd0dd9d16ea7cc65fd2bf318d3223b1b6252"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:440d9a337ac8c199ff8251e100c62e9488924c92852362cd27af0e67308c16ef"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9e15c06491c69997dfa067369baab3bf094ecb74be9912bdc4339972323f252"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:362d204ad4b0b8724cf370d0cd917bb2dc913c394030da748a3bb632445ce7c4"}, + {file = "orjson-3.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b57cbb4031153db37b41622eac67329c7810e5f480fda4cfd30542186f006ae"}, + {file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:165c89b53ef03ce0d7c59ca5c82fa65fe13ddf52eeb22e859e58c237d4e33b9b"}, + {file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5dee91b8dfd54557c1a1596eb90bcd47dbcd26b0baaed919e6861f076583e9da"}, + {file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a4e1cfb72de6f905bdff061172adfb3caf7a4578ebf481d8f0530879476c07"}, + {file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:038d42c7bc0606443459b8fe2d1f121db474c49067d8d14c6a075bbea8bf14dd"}, + {file = "orjson-3.10.12-cp311-none-win32.whl", hash = "sha256:03b553c02ab39bed249bedd4abe37b2118324d1674e639b33fab3d1dafdf4d79"}, + {file = "orjson-3.10.12-cp311-none-win_amd64.whl", hash = "sha256:8b8713b9e46a45b2af6b96f559bfb13b1e02006f4242c156cbadef27800a55a8"}, + {file = "orjson-3.10.12-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:53206d72eb656ca5ac7d3a7141e83c5bbd3ac30d5eccfe019409177a57634b0d"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac8010afc2150d417ebda810e8df08dd3f544e0dd2acab5370cfa6bcc0662f8f"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed459b46012ae950dd2e17150e838ab08215421487371fa79d0eced8d1461d70"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dcb9673f108a93c1b52bfc51b0af422c2d08d4fc710ce9c839faad25020bb69"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22a51ae77680c5c4652ebc63a83d5255ac7d65582891d9424b566fb3b5375ee9"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910fdf2ac0637b9a77d1aad65f803bac414f0b06f720073438a7bd8906298192"}, + {file = "orjson-3.10.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:24ce85f7100160936bc2116c09d1a8492639418633119a2224114f67f63a4559"}, + {file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a76ba5fc8dd9c913640292df27bff80a685bed3a3c990d59aa6ce24c352f8fc"}, + {file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ff70ef093895fd53f4055ca75f93f047e088d1430888ca1229393a7c0521100f"}, + {file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f4244b7018b5753ecd10a6d324ec1f347da130c953a9c88432c7fbc8875d13be"}, + {file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16135ccca03445f37921fa4b585cff9a58aa8d81ebcb27622e69bfadd220b32c"}, + {file = "orjson-3.10.12-cp312-none-win32.whl", hash = "sha256:2d879c81172d583e34153d524fcba5d4adafbab8349a7b9f16ae511c2cee8708"}, + {file = "orjson-3.10.12-cp312-none-win_amd64.whl", hash = "sha256:fc23f691fa0f5c140576b8c365bc942d577d861a9ee1142e4db468e4e17094fb"}, + {file = "orjson-3.10.12-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47962841b2a8aa9a258b377f5188db31ba49af47d4003a32f55d6f8b19006543"}, + {file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6334730e2532e77b6054e87ca84f3072bee308a45a452ea0bffbbbc40a67e296"}, + {file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:accfe93f42713c899fdac2747e8d0d5c659592df2792888c6c5f829472e4f85e"}, + {file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a7974c490c014c48810d1dede6c754c3cc46598da758c25ca3b4001ac45b703f"}, + {file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3f250ce7727b0b2682f834a3facff88e310f52f07a5dcfd852d99637d386e79e"}, + {file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f31422ff9486ae484f10ffc51b5ab2a60359e92d0716fcce1b3593d7bb8a9af6"}, + {file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5f29c5d282bb2d577c2a6bbde88d8fdcc4919c593f806aac50133f01b733846e"}, + {file = "orjson-3.10.12-cp313-none-win32.whl", hash = "sha256:f45653775f38f63dc0e6cd4f14323984c3149c05d6007b58cb154dd080ddc0dc"}, + {file = "orjson-3.10.12-cp313-none-win_amd64.whl", hash = "sha256:229994d0c376d5bdc91d92b3c9e6be2f1fbabd4cc1b59daae1443a46ee5e9825"}, + {file = "orjson-3.10.12-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7d69af5b54617a5fac5c8e5ed0859eb798e2ce8913262eb522590239db6c6763"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ed119ea7d2953365724a7059231a44830eb6bbb0cfead33fcbc562f5fd8f935"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c5fc1238ef197e7cad5c91415f524aaa51e004be5a9b35a1b8a84ade196f73f"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43509843990439b05f848539d6f6198d4ac86ff01dd024b2f9a795c0daeeab60"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f72e27a62041cfb37a3de512247ece9f240a561e6c8662276beaf4d53d406db4"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a904f9572092bb6742ab7c16c623f0cdccbad9eeb2d14d4aa06284867bddd31"}, + {file = "orjson-3.10.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:855c0833999ed5dc62f64552db26f9be767434917d8348d77bacaab84f787d7b"}, + {file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:897830244e2320f6184699f598df7fb9db9f5087d6f3f03666ae89d607e4f8ed"}, + {file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:0b32652eaa4a7539f6f04abc6243619c56f8530c53bf9b023e1269df5f7816dd"}, + {file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:36b4aa31e0f6a1aeeb6f8377769ca5d125db000f05c20e54163aef1d3fe8e833"}, + {file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5535163054d6cbf2796f93e4f0dbc800f61914c0e3c4ed8499cf6ece22b4a3da"}, + {file = "orjson-3.10.12-cp38-none-win32.whl", hash = "sha256:90a5551f6f5a5fa07010bf3d0b4ca2de21adafbbc0af6cb700b63cd767266cb9"}, + {file = "orjson-3.10.12-cp38-none-win_amd64.whl", hash = "sha256:703a2fb35a06cdd45adf5d733cf613cbc0cb3ae57643472b16bc22d325b5fb6c"}, + {file = "orjson-3.10.12-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f29de3ef71a42a5822765def1febfb36e0859d33abf5c2ad240acad5c6a1b78d"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de365a42acc65d74953f05e4772c974dad6c51cfc13c3240899f534d611be967"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:91a5a0158648a67ff0004cb0df5df7dcc55bfc9ca154d9c01597a23ad54c8d0c"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c47ce6b8d90fe9646a25b6fb52284a14ff215c9595914af63a5933a49972ce36"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0eee4c2c5bfb5c1b47a5db80d2ac7aaa7e938956ae88089f098aff2c0f35d5d8"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35d3081bbe8b86587eb5c98a73b97f13d8f9fea685cf91a579beddacc0d10566"}, + {file = "orjson-3.10.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:73c23a6e90383884068bc2dba83d5222c9fcc3b99a0ed2411d38150734236755"}, + {file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5472be7dc3269b4b52acba1433dac239215366f89dc1d8d0e64029abac4e714e"}, + {file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7319cda750fca96ae5973efb31b17d97a5c5225ae0bc79bf5bf84df9e1ec2ab6"}, + {file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:74d5ca5a255bf20b8def6a2b96b1e18ad37b4a122d59b154c458ee9494377f80"}, + {file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ff31d22ecc5fb85ef62c7d4afe8301d10c558d00dd24274d4bbe464380d3cd69"}, + {file = "orjson-3.10.12-cp39-none-win32.whl", hash = "sha256:c22c3ea6fba91d84fcb4cda30e64aff548fcf0c44c876e681f47d61d24b12e6b"}, + {file = "orjson-3.10.12-cp39-none-win_amd64.whl", hash = "sha256:be604f60d45ace6b0b33dd990a66b4526f1a7a186ac411c942674625456ca548"}, + {file = "orjson-3.10.12.tar.gz", hash = "sha256:0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff"}, ] [[package]] @@ -3217,6 +3348,8 @@ version = "7.7.0" description = "A decorator to automatically detect mismatch when overriding a method." optional = false python-versions = ">=3.6" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, @@ -3228,6 +3361,7 @@ version = "24.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, @@ -3239,6 +3373,7 @@ version = "2.2.3" description = "Powerful data structures for data analysis, time series, and statistics" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5"}, {file = "pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348"}, @@ -3321,13 +3456,15 @@ xml = ["lxml (>=4.9.2)"] [[package]] name = "pandas-stubs" -version = "2.2.3.250308" +version = "2.2.3.241126" description = "Type annotations for pandas" optional = false python-versions = ">=3.10" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "pandas_stubs-2.2.3.250308-py3-none-any.whl", hash = "sha256:a377edff3b61f8b268c82499fdbe7c00fdeed13235b8b71d6a1dc347aeddc74d"}, - {file = "pandas_stubs-2.2.3.250308.tar.gz", hash = "sha256:3a6e9daf161f00b85c83772ed3d5cff9522028f07a94817472c07b91f46710fd"}, + {file = "pandas_stubs-2.2.3.241126-py3-none-any.whl", hash = "sha256:74aa79c167af374fe97068acc90776c0ebec5266a6e5c69fe11e9c2cf51f2267"}, + {file = "pandas_stubs-2.2.3.241126.tar.gz", hash = "sha256:cf819383c6d9ae7d4dabf34cd47e1e45525bb2f312e6ad2939c2c204cb708acd"}, ] [package.dependencies] @@ -3340,6 +3477,8 @@ version = "1.5.1" description = "Utilities for writing pandoc filters in python" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, @@ -3351,6 +3490,7 @@ version = "0.8.4" description = "A Python Parser" optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"}, {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"}, @@ -3366,6 +3506,7 @@ version = "1.4.2" description = "Appendable key-value storage" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "partd-1.4.2-py3-none-any.whl", hash = "sha256:978e4ac767ec4ba5b86c6eaa52e5a2a3bc748a2ca839e8cc798f1cc6ce6efb0f"}, {file = "partd-1.4.2.tar.gz", hash = "sha256:d022c33afbdc8405c226621b015e8067888173d85f7f5ecebb3cafed9a20f02c"}, @@ -3384,6 +3525,7 @@ version = "1.0.1" description = "A Python package for describing statistical models and for building design matrices." optional = false python-versions = ">=3.6" +groups = ["main"] files = [ {file = "patsy-1.0.1-py2.py3-none-any.whl", hash = "sha256:751fb38f9e97e62312e921a1954b81e1bb2bcda4f5eeabaf94db251ee791509c"}, {file = "patsy-1.0.1.tar.gz", hash = "sha256:e786a9391eec818c054e359b737bbce692f051aee4c661f4141cc88fb459c0c4"}, @@ -3401,6 +3543,8 @@ version = "4.9.0" description = "Pexpect allows easy control of interactive console applications." optional = false python-versions = "*" +groups = ["main"] +markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\"" files = [ {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, @@ -3411,125 +3555,129 @@ ptyprocess = ">=0.5" [[package]] name = "pillow" -version = "11.1.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.9" -files = [ - {file = "pillow-11.1.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:e1abe69aca89514737465752b4bcaf8016de61b3be1397a8fc260ba33321b3a8"}, - {file = "pillow-11.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c640e5a06869c75994624551f45e5506e4256562ead981cce820d5ab39ae2192"}, - {file = "pillow-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a07dba04c5e22824816b2615ad7a7484432d7f540e6fa86af60d2de57b0fcee2"}, - {file = "pillow-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e267b0ed063341f3e60acd25c05200df4193e15a4a5807075cd71225a2386e26"}, - {file = "pillow-11.1.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd165131fd51697e22421d0e467997ad31621b74bfc0b75956608cb2906dda07"}, - {file = "pillow-11.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:abc56501c3fd148d60659aae0af6ddc149660469082859fa7b066a298bde9482"}, - {file = "pillow-11.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:54ce1c9a16a9561b6d6d8cb30089ab1e5eb66918cb47d457bd996ef34182922e"}, - {file = "pillow-11.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:73ddde795ee9b06257dac5ad42fcb07f3b9b813f8c1f7f870f402f4dc54b5269"}, - {file = "pillow-11.1.0-cp310-cp310-win32.whl", hash = "sha256:3a5fe20a7b66e8135d7fd617b13272626a28278d0e578c98720d9ba4b2439d49"}, - {file = "pillow-11.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:b6123aa4a59d75f06e9dd3dac5bf8bc9aa383121bb3dd9a7a612e05eabc9961a"}, - {file = "pillow-11.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:a76da0a31da6fcae4210aa94fd779c65c75786bc9af06289cd1c184451ef7a65"}, - {file = "pillow-11.1.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457"}, - {file = "pillow-11.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35"}, - {file = "pillow-11.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2"}, - {file = "pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070"}, - {file = "pillow-11.1.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6"}, - {file = "pillow-11.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1"}, - {file = "pillow-11.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2"}, - {file = "pillow-11.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96"}, - {file = "pillow-11.1.0-cp311-cp311-win32.whl", hash = "sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f"}, - {file = "pillow-11.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761"}, - {file = "pillow-11.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71"}, - {file = "pillow-11.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2062ffb1d36544d42fcaa277b069c88b01bb7298f4efa06731a7fd6cc290b81a"}, - {file = "pillow-11.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a85b653980faad27e88b141348707ceeef8a1186f75ecc600c395dcac19f385b"}, - {file = "pillow-11.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9409c080586d1f683df3f184f20e36fb647f2e0bc3988094d4fd8c9f4eb1b3b3"}, - {file = "pillow-11.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7fdadc077553621911f27ce206ffcbec7d3f8d7b50e0da39f10997e8e2bb7f6a"}, - {file = "pillow-11.1.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:93a18841d09bcdd774dcdc308e4537e1f867b3dec059c131fde0327899734aa1"}, - {file = "pillow-11.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9aa9aeddeed452b2f616ff5507459e7bab436916ccb10961c4a382cd3e03f47f"}, - {file = "pillow-11.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3cdcdb0b896e981678eee140d882b70092dac83ac1cdf6b3a60e2216a73f2b91"}, - {file = "pillow-11.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:36ba10b9cb413e7c7dfa3e189aba252deee0602c86c309799da5a74009ac7a1c"}, - {file = "pillow-11.1.0-cp312-cp312-win32.whl", hash = "sha256:cfd5cd998c2e36a862d0e27b2df63237e67273f2fc78f47445b14e73a810e7e6"}, - {file = "pillow-11.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:a697cd8ba0383bba3d2d3ada02b34ed268cb548b369943cd349007730c92bddf"}, - {file = "pillow-11.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:4dd43a78897793f60766563969442020e90eb7847463eca901e41ba186a7d4a5"}, - {file = "pillow-11.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc"}, - {file = "pillow-11.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0"}, - {file = "pillow-11.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1"}, - {file = "pillow-11.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec"}, - {file = "pillow-11.1.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5"}, - {file = "pillow-11.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114"}, - {file = "pillow-11.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352"}, - {file = "pillow-11.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3"}, - {file = "pillow-11.1.0-cp313-cp313-win32.whl", hash = "sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9"}, - {file = "pillow-11.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c"}, - {file = "pillow-11.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65"}, - {file = "pillow-11.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861"}, - {file = "pillow-11.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081"}, - {file = "pillow-11.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c"}, - {file = "pillow-11.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547"}, - {file = "pillow-11.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab"}, - {file = "pillow-11.1.0-cp313-cp313t-win32.whl", hash = "sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9"}, - {file = "pillow-11.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe"}, - {file = "pillow-11.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756"}, - {file = "pillow-11.1.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:bf902d7413c82a1bfa08b06a070876132a5ae6b2388e2712aab3a7cbc02205c6"}, - {file = "pillow-11.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c1eec9d950b6fe688edee07138993e54ee4ae634c51443cfb7c1e7613322718e"}, - {file = "pillow-11.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e275ee4cb11c262bd108ab2081f750db2a1c0b8c12c1897f27b160c8bd57bbc"}, - {file = "pillow-11.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4db853948ce4e718f2fc775b75c37ba2efb6aaea41a1a5fc57f0af59eee774b2"}, - {file = "pillow-11.1.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ab8a209b8485d3db694fa97a896d96dd6533d63c22829043fd9de627060beade"}, - {file = "pillow-11.1.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:54251ef02a2309b5eec99d151ebf5c9904b77976c8abdcbce7891ed22df53884"}, - {file = "pillow-11.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5bb94705aea800051a743aa4874bb1397d4695fb0583ba5e425ee0328757f196"}, - {file = "pillow-11.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:89dbdb3e6e9594d512780a5a1c42801879628b38e3efc7038094430844e271d8"}, - {file = "pillow-11.1.0-cp39-cp39-win32.whl", hash = "sha256:e5449ca63da169a2e6068dd0e2fcc8d91f9558aba89ff6d02121ca8ab11e79e5"}, - {file = "pillow-11.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:3362c6ca227e65c54bf71a5f88b3d4565ff1bcbc63ae72c34b07bbb1cc59a43f"}, - {file = "pillow-11.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:b20be51b37a75cc54c2c55def3fa2c65bb94ba859dde241cd0a4fd302de5ae0a"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8c730dc3a83e5ac137fbc92dfcfe1511ce3b2b5d7578315b63dbbb76f7f51d90"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d33d2fae0e8b170b6a6c57400e077412240f6f5bb2a342cf1ee512a787942bb"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8d65b38173085f24bc07f8b6c505cbb7418009fa1a1fcb111b1f4961814a442"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:015c6e863faa4779251436db398ae75051469f7c903b043a48f078e437656f83"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d44ff19eea13ae4acdaaab0179fa68c0c6f2f45d66a4d8ec1eda7d6cecbcc15f"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d3d8da4a631471dfaf94c10c85f5277b1f8e42ac42bade1ac67da4b4a7359b73"}, - {file = "pillow-11.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:4637b88343166249fe8aa94e7c4a62a180c4b3898283bb5d3d2fd5fe10d8e4e0"}, - {file = "pillow-11.1.0.tar.gz", hash = "sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20"}, +groups = ["main"] +files = [ + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] fpx = ["olefile"] mic = ["olefile"] -tests = ["check-manifest", "coverage (>=7.4.2)", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout", "trove-classifiers (>=2024.10.12)"] -typing = ["typing-extensions"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions ; python_version < \"3.10\""] xmp = ["defusedxml"] [[package]] name = "platformdirs" -version = "4.3.7" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94"}, - {file = "platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.4)", "pytest-cov (>=6)", "pytest-mock (>=3.14)"] -type = ["mypy (>=1.14.1)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "plotly" -version = "6.0.1" -description = "An open-source interactive data visualization library for Python" +version = "5.24.1" +description = "An open-source, interactive data visualization library for Python" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768"}, - {file = "plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b"}, + {file = "plotly-5.24.1-py3-none-any.whl", hash = "sha256:f67073a1e637eb0dc3e46324d9d51e2fe76e9727c892dde64ddf1e1b51f29089"}, + {file = "plotly-5.24.1.tar.gz", hash = "sha256:dbc8ac8339d248a4bcc36e08a5659bacfe1b079390b8953533f4eb22169b4bae"}, ] [package.dependencies] -narwhals = ">=1.15.1" packaging = "*" - -[package.extras] -express = ["numpy"] +tenacity = ">=6.2.0" [[package]] name = "pluggy" @@ -3537,6 +3685,8 @@ version = "1.5.0" description = "plugin and hook calling mechanisms for python" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, @@ -3548,13 +3698,15 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pre-commit" -version = "4.2.0" +version = "4.0.1" description = "A framework for managing and maintaining multi-language pre-commit hooks." optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd"}, - {file = "pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146"}, + {file = "pre_commit-4.0.1-py2.py3-none-any.whl", hash = "sha256:efde913840816312445dc98787724647c65473daefe420785f885e8ed9a06878"}, + {file = "pre_commit-4.0.1.tar.gz", hash = "sha256:80905ac375958c0444c65e9cebebd948b3cdb518f335a091a670a89d652139d2"}, ] [package.dependencies] @@ -3570,6 +3722,8 @@ version = "0.21.1" description = "Python client for the Prometheus monitoring system." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"}, {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"}, @@ -3580,13 +3734,14 @@ twisted = ["twisted"] [[package]] name = "prompt-toolkit" -version = "3.0.50" +version = "3.0.48" description = "Library for building powerful interactive command lines in Python" optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.7.0" +groups = ["main"] files = [ - {file = "prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198"}, - {file = "prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab"}, + {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, + {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, ] [package.dependencies] @@ -3594,144 +3749,133 @@ wcwidth = "*" [[package]] name = "propcache" -version = "0.3.1" +version = "0.2.1" description = "Accelerated property cache" optional = false python-versions = ">=3.9" -files = [ - {file = "propcache-0.3.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f27785888d2fdd918bc36de8b8739f2d6c791399552333721b58193f68ea3e98"}, - {file = "propcache-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4e89cde74154c7b5957f87a355bb9c8ec929c167b59c83d90654ea36aeb6180"}, - {file = "propcache-0.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:730178f476ef03d3d4d255f0c9fa186cb1d13fd33ffe89d39f2cda4da90ceb71"}, - {file = "propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967a8eec513dbe08330f10137eacb427b2ca52118769e82ebcfcab0fba92a649"}, - {file = "propcache-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b9145c35cc87313b5fd480144f8078716007656093d23059e8993d3a8fa730f"}, - {file = "propcache-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9e64e948ab41411958670f1093c0a57acfdc3bee5cf5b935671bbd5313bcf229"}, - {file = "propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:319fa8765bfd6a265e5fa661547556da381e53274bc05094fc9ea50da51bfd46"}, - {file = "propcache-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c66d8ccbc902ad548312b96ed8d5d266d0d2c6d006fd0f66323e9d8f2dd49be7"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2d219b0dbabe75e15e581fc1ae796109b07c8ba7d25b9ae8d650da582bed01b0"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:cd6a55f65241c551eb53f8cf4d2f4af33512c39da5d9777694e9d9c60872f519"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9979643ffc69b799d50d3a7b72b5164a2e97e117009d7af6dfdd2ab906cb72cd"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4cf9e93a81979f1424f1a3d155213dc928f1069d697e4353edb8a5eba67c6259"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2fce1df66915909ff6c824bbb5eb403d2d15f98f1518e583074671a30fe0c21e"}, - {file = "propcache-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4d0dfdd9a2ebc77b869a0b04423591ea8823f791293b527dc1bb896c1d6f1136"}, - {file = "propcache-0.3.1-cp310-cp310-win32.whl", hash = "sha256:1f6cc0ad7b4560e5637eb2c994e97b4fa41ba8226069c9277eb5ea7101845b42"}, - {file = "propcache-0.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:47ef24aa6511e388e9894ec16f0fbf3313a53ee68402bc428744a367ec55b833"}, - {file = "propcache-0.3.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7f30241577d2fef2602113b70ef7231bf4c69a97e04693bde08ddab913ba0ce5"}, - {file = "propcache-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:43593c6772aa12abc3af7784bff4a41ffa921608dd38b77cf1dfd7f5c4e71371"}, - {file = "propcache-0.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a75801768bbe65499495660b777e018cbe90c7980f07f8aa57d6be79ea6f71da"}, - {file = "propcache-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6f1324db48f001c2ca26a25fa25af60711e09b9aaf4b28488602776f4f9a744"}, - {file = "propcache-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cdb0f3e1eb6dfc9965d19734d8f9c481b294b5274337a8cb5cb01b462dcb7e0"}, - {file = "propcache-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1eb34d90aac9bfbced9a58b266f8946cb5935869ff01b164573a7634d39fbcb5"}, - {file = "propcache-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f35c7070eeec2cdaac6fd3fe245226ed2a6292d3ee8c938e5bb645b434c5f256"}, - {file = "propcache-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b23c11c2c9e6d4e7300c92e022046ad09b91fd00e36e83c44483df4afa990073"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3e19ea4ea0bf46179f8a3652ac1426e6dcbaf577ce4b4f65be581e237340420d"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:bd39c92e4c8f6cbf5f08257d6360123af72af9f4da75a690bef50da77362d25f"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:b0313e8b923b3814d1c4a524c93dfecea5f39fa95601f6a9b1ac96cd66f89ea0"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e861ad82892408487be144906a368ddbe2dc6297074ade2d892341b35c59844a"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:61014615c1274df8da5991a1e5da85a3ccb00c2d4701ac6f3383afd3ca47ab0a"}, - {file = "propcache-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:71ebe3fe42656a2328ab08933d420df5f3ab121772eef78f2dc63624157f0ed9"}, - {file = "propcache-0.3.1-cp311-cp311-win32.whl", hash = "sha256:58aa11f4ca8b60113d4b8e32d37e7e78bd8af4d1a5b5cb4979ed856a45e62005"}, - {file = "propcache-0.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:9532ea0b26a401264b1365146c440a6d78269ed41f83f23818d4b79497aeabe7"}, - {file = "propcache-0.3.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f78eb8422acc93d7b69964012ad7048764bb45a54ba7a39bb9e146c72ea29723"}, - {file = "propcache-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:89498dd49c2f9a026ee057965cdf8192e5ae070ce7d7a7bd4b66a8e257d0c976"}, - {file = "propcache-0.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:09400e98545c998d57d10035ff623266927cb784d13dd2b31fd33b8a5316b85b"}, - {file = "propcache-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa8efd8c5adc5a2c9d3b952815ff8f7710cefdcaf5f2c36d26aff51aeca2f12f"}, - {file = "propcache-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2fe5c910f6007e716a06d269608d307b4f36e7babee5f36533722660e8c4a70"}, - {file = "propcache-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a0ab8cf8cdd2194f8ff979a43ab43049b1df0b37aa64ab7eca04ac14429baeb7"}, - {file = "propcache-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:563f9d8c03ad645597b8d010ef4e9eab359faeb11a0a2ac9f7b4bc8c28ebef25"}, - {file = "propcache-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb6e0faf8cb6b4beea5d6ed7b5a578254c6d7df54c36ccd3d8b3eb00d6770277"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1c5c7ab7f2bb3f573d1cb921993006ba2d39e8621019dffb1c5bc94cdbae81e8"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:050b571b2e96ec942898f8eb46ea4bfbb19bd5502424747e83badc2d4a99a44e"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e1c4d24b804b3a87e9350f79e2371a705a188d292fd310e663483af6ee6718ee"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:e4fe2a6d5ce975c117a6bb1e8ccda772d1e7029c1cca1acd209f91d30fa72815"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:feccd282de1f6322f56f6845bf1207a537227812f0a9bf5571df52bb418d79d5"}, - {file = "propcache-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ec314cde7314d2dd0510c6787326bbffcbdc317ecee6b7401ce218b3099075a7"}, - {file = "propcache-0.3.1-cp312-cp312-win32.whl", hash = "sha256:7d2d5a0028d920738372630870e7d9644ce437142197f8c827194fca404bf03b"}, - {file = "propcache-0.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:88c423efef9d7a59dae0614eaed718449c09a5ac79a5f224a8b9664d603f04a3"}, - {file = "propcache-0.3.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f1528ec4374617a7a753f90f20e2f551121bb558fcb35926f99e3c42367164b8"}, - {file = "propcache-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dc1915ec523b3b494933b5424980831b636fe483d7d543f7afb7b3bf00f0c10f"}, - {file = "propcache-0.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a110205022d077da24e60b3df8bcee73971be9575dec5573dd17ae5d81751111"}, - {file = "propcache-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d249609e547c04d190e820d0d4c8ca03ed4582bcf8e4e160a6969ddfb57b62e5"}, - {file = "propcache-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ced33d827625d0a589e831126ccb4f5c29dfdf6766cac441d23995a65825dcb"}, - {file = "propcache-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4114c4ada8f3181af20808bedb250da6bae56660e4b8dfd9cd95d4549c0962f7"}, - {file = "propcache-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:975af16f406ce48f1333ec5e912fe11064605d5c5b3f6746969077cc3adeb120"}, - {file = "propcache-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a34aa3a1abc50740be6ac0ab9d594e274f59960d3ad253cd318af76b996dd654"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9cec3239c85ed15bfaded997773fdad9fb5662b0a7cbc854a43f291eb183179e"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:05543250deac8e61084234d5fc54f8ebd254e8f2b39a16b1dce48904f45b744b"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5cb5918253912e088edbf023788de539219718d3b10aef334476b62d2b53de53"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f3bbecd2f34d0e6d3c543fdb3b15d6b60dd69970c2b4c822379e5ec8f6f621d5"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aca63103895c7d960a5b9b044a83f544b233c95e0dcff114389d64d762017af7"}, - {file = "propcache-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a0a9898fdb99bf11786265468571e628ba60af80dc3f6eb89a3545540c6b0ef"}, - {file = "propcache-0.3.1-cp313-cp313-win32.whl", hash = "sha256:3a02a28095b5e63128bcae98eb59025924f121f048a62393db682f049bf4ac24"}, - {file = "propcache-0.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:813fbb8b6aea2fc9659815e585e548fe706d6f663fa73dff59a1677d4595a037"}, - {file = "propcache-0.3.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:a444192f20f5ce8a5e52761a031b90f5ea6288b1eef42ad4c7e64fef33540b8f"}, - {file = "propcache-0.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0fbe94666e62ebe36cd652f5fc012abfbc2342de99b523f8267a678e4dfdee3c"}, - {file = "propcache-0.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f011f104db880f4e2166bcdcf7f58250f7a465bc6b068dc84c824a3d4a5c94dc"}, - {file = "propcache-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e584b6d388aeb0001d6d5c2bd86b26304adde6d9bb9bfa9c4889805021b96de"}, - {file = "propcache-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a17583515a04358b034e241f952f1715243482fc2c2945fd99a1b03a0bd77d6"}, - {file = "propcache-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5aed8d8308215089c0734a2af4f2e95eeb360660184ad3912686c181e500b2e7"}, - {file = "propcache-0.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d8e309ff9a0503ef70dc9a0ebd3e69cf7b3894c9ae2ae81fc10943c37762458"}, - {file = "propcache-0.3.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b655032b202028a582d27aeedc2e813299f82cb232f969f87a4fde491a233f11"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9f64d91b751df77931336b5ff7bafbe8845c5770b06630e27acd5dbb71e1931c"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:19a06db789a4bd896ee91ebc50d059e23b3639c25d58eb35be3ca1cbe967c3bf"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:bef100c88d8692864651b5f98e871fb090bd65c8a41a1cb0ff2322db39c96c27"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:87380fb1f3089d2a0b8b00f006ed12bd41bd858fabfa7330c954c70f50ed8757"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:e474fc718e73ba5ec5180358aa07f6aded0ff5f2abe700e3115c37d75c947e18"}, - {file = "propcache-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:17d1c688a443355234f3c031349da69444be052613483f3e4158eef751abcd8a"}, - {file = "propcache-0.3.1-cp313-cp313t-win32.whl", hash = "sha256:359e81a949a7619802eb601d66d37072b79b79c2505e6d3fd8b945538411400d"}, - {file = "propcache-0.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e7fb9a84c9abbf2b2683fa3e7b0d7da4d8ecf139a1c635732a8bda29c5214b0e"}, - {file = "propcache-0.3.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ed5f6d2edbf349bd8d630e81f474d33d6ae5d07760c44d33cd808e2f5c8f4ae6"}, - {file = "propcache-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:668ddddc9f3075af019f784456267eb504cb77c2c4bd46cc8402d723b4d200bf"}, - {file = "propcache-0.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0c86e7ceea56376216eba345aa1fc6a8a6b27ac236181f840d1d7e6a1ea9ba5c"}, - {file = "propcache-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83be47aa4e35b87c106fc0c84c0fc069d3f9b9b06d3c494cd404ec6747544894"}, - {file = "propcache-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:27c6ac6aa9fc7bc662f594ef380707494cb42c22786a558d95fcdedb9aa5d035"}, - {file = "propcache-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64a956dff37080b352c1c40b2966b09defb014347043e740d420ca1eb7c9b908"}, - {file = "propcache-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82de5da8c8893056603ac2d6a89eb8b4df49abf1a7c19d536984c8dd63f481d5"}, - {file = "propcache-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c3c3a203c375b08fd06a20da3cf7aac293b834b6f4f4db71190e8422750cca5"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b303b194c2e6f171cfddf8b8ba30baefccf03d36a4d9cab7fd0bb68ba476a3d7"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:916cd229b0150129d645ec51614d38129ee74c03293a9f3f17537be0029a9641"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a461959ead5b38e2581998700b26346b78cd98540b5524796c175722f18b0294"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:069e7212890b0bcf9b2be0a03afb0c2d5161d91e1bf51569a64f629acc7defbf"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ef2e4e91fb3945769e14ce82ed53007195e616a63aa43b40fb7ebaaf907c8d4c"}, - {file = "propcache-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:8638f99dca15b9dff328fb6273e09f03d1c50d9b6512f3b65a4154588a7595fe"}, - {file = "propcache-0.3.1-cp39-cp39-win32.whl", hash = "sha256:6f173bbfe976105aaa890b712d1759de339d8a7cef2fc0a1714cc1a1e1c47f64"}, - {file = "propcache-0.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:603f1fe4144420374f1a69b907494c3acbc867a581c2d49d4175b0de7cc64566"}, - {file = "propcache-0.3.1-py3-none-any.whl", hash = "sha256:9a8ecf38de50a7f518c21568c80f985e776397b902f1ce0b01f799aba1608b40"}, - {file = "propcache-0.3.1.tar.gz", hash = "sha256:40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf"}, +groups = ["main"] +files = [ + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2"}, + {file = "propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6445804cf4ec763dc70de65a3b0d9954e868609e83850a47ca4f0cb64bd79fea"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9479aa06a793c5aeba49ce5c5692ffb51fcd9a7016e017d555d5e2b0045d212"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9631c5e8b5b3a0fda99cb0d29c18133bca1e18aea9effe55adb3da1adef80d3"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3156628250f46a0895f1f36e1d4fbe062a1af8718ec3ebeb746f1d23f0c5dc4d"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b6fb63ae352e13748289f04f37868099e69dba4c2b3e271c46061e82c745634"}, + {file = "propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:887d9b0a65404929641a9fabb6452b07fe4572b269d901d622d8a34a4e9043b2"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a96dc1fa45bd8c407a0af03b2d5218392729e1822b0c32e62c5bf7eeb5fb3958"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a7e65eb5c003a303b94aa2c3852ef130230ec79e349632d030e9571b87c4698c"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:999779addc413181912e984b942fbcc951be1f5b3663cd80b2687758f434c583"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:19a0f89a7bb9d8048d9c4370c9c543c396e894c76be5525f5e1ad287f1750ddf"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1ac2f5fe02fa75f56e1ad473f1175e11f475606ec9bd0be2e78e4734ad575034"}, + {file = "propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:574faa3b79e8ebac7cb1d7930f51184ba1ccf69adfdec53a12f319a06030a68b"}, + {file = "propcache-0.2.1-cp310-cp310-win32.whl", hash = "sha256:03ff9d3f665769b2a85e6157ac8b439644f2d7fd17615a82fa55739bc97863f4"}, + {file = "propcache-0.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:2d3af2e79991102678f53e0dbf4c35de99b6b8b58f29a27ca0325816364caaba"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ffc3cca89bb438fb9c95c13fc874012f7b9466b89328c3c8b1aa93cdcfadd16"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f174bbd484294ed9fdf09437f889f95807e5f229d5d93588d34e92106fbf6717"}, + {file = "propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:70693319e0b8fd35dd863e3e29513875eb15c51945bf32519ef52927ca883bc3"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b480c6a4e1138e1aa137c0079b9b6305ec6dcc1098a8ca5196283e8a49df95a9"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d27b84d5880f6d8aa9ae3edb253c59d9f6642ffbb2c889b78b60361eed449787"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:857112b22acd417c40fa4595db2fe28ab900c8c5fe4670c7989b1c0230955465"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf6c4150f8c0e32d241436526f3c3f9cbd34429492abddbada2ffcff506c51af"}, + {file = "propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66d4cfda1d8ed687daa4bc0274fcfd5267873db9a5bc0418c2da19273040eeb7"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2f992c07c0fca81655066705beae35fc95a2fa7366467366db627d9f2ee097f"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:4a571d97dbe66ef38e472703067021b1467025ec85707d57e78711c085984e54"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb6178c241278d5fe853b3de743087be7f5f4c6f7d6d22a3b524d323eecec505"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:ad1af54a62ffe39cf34db1aa6ed1a1873bd548f6401db39d8e7cd060b9211f82"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e7048abd75fe40712005bcfc06bb44b9dfcd8e101dda2ecf2f5aa46115ad07ca"}, + {file = "propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:160291c60081f23ee43d44b08a7e5fb76681221a8e10b3139618c5a9a291b84e"}, + {file = "propcache-0.2.1-cp311-cp311-win32.whl", hash = "sha256:819ce3b883b7576ca28da3861c7e1a88afd08cc8c96908e08a3f4dd64a228034"}, + {file = "propcache-0.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:edc9fc7051e3350643ad929df55c451899bb9ae6d24998a949d2e4c87fb596d3"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:081a430aa8d5e8876c6909b67bd2d937bfd531b0382d3fdedb82612c618bc41a"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2ccec9ac47cf4e04897619c0e0c1a48c54a71bdf045117d3a26f80d38ab1fb0"}, + {file = "propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14d86fe14b7e04fa306e0c43cdbeebe6b2c2156a0c9ce56b815faacc193e320d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:049324ee97bb67285b49632132db351b41e77833678432be52bdd0289c0e05e4"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cd9a1d071158de1cc1c71a26014dcdfa7dd3d5f4f88c298c7f90ad6f27bb46d"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98110aa363f1bb4c073e8dcfaefd3a5cea0f0834c2aab23dda657e4dab2f53b5"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:647894f5ae99c4cf6bb82a1bb3a796f6e06af3caa3d32e26d2350d0e3e3faf24"}, + {file = "propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfd3223c15bebe26518d58ccf9a39b93948d3dcb3e57a20480dfdd315356baff"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d71264a80f3fcf512eb4f18f59423fe82d6e346ee97b90625f283df56aee103f"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e73091191e4280403bde6c9a52a6999d69cdfde498f1fdf629105247599b57ec"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3935bfa5fede35fb202c4b569bb9c042f337ca4ff7bd540a0aa5e37131659348"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f508b0491767bb1f2b87fdfacaba5f7eddc2f867740ec69ece6d1946d29029a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1672137af7c46662a1c2be1e8dc78cb6d224319aaa40271c9257d886be4363a6"}, + {file = "propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b74c261802d3d2b85c9df2dfb2fa81b6f90deeef63c2db9f0e029a3cac50b518"}, + {file = "propcache-0.2.1-cp312-cp312-win32.whl", hash = "sha256:d09c333d36c1409d56a9d29b3a1b800a42c76a57a5a8907eacdbce3f18768246"}, + {file = "propcache-0.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:c214999039d4f2a5b2073ac506bba279945233da8c786e490d411dfc30f855c1"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aca405706e0b0a44cc6bfd41fbe89919a6a56999157f6de7e182a990c36e37bc"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:12d1083f001ace206fe34b6bdc2cb94be66d57a850866f0b908972f90996b3e9"}, + {file = "propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d93f3307ad32a27bda2e88ec81134b823c240aa3abb55821a8da553eed8d9439"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba278acf14471d36316159c94a802933d10b6a1e117b8554fe0d0d9b75c9d536"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e6281aedfca15301c41f74d7005e6e3f4ca143584ba696ac69df4f02f40d629"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b750a8e5a1262434fb1517ddf64b5de58327f1adc3524a5e44c2ca43305eb0b"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf72af5e0fb40e9babf594308911436c8efde3cb5e75b6f206c34ad18be5c052"}, + {file = "propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2d0a12018b04f4cb820781ec0dffb5f7c7c1d2a5cd22bff7fb055a2cb19ebce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e800776a79a5aabdb17dcc2346a7d66d0777e942e4cd251defeb084762ecd17d"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:4160d9283bd382fa6c0c2b5e017acc95bc183570cd70968b9202ad6d8fc48dce"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:30b43e74f1359353341a7adb783c8f1b1c676367b011709f466f42fda2045e95"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:58791550b27d5488b1bb52bc96328456095d96206a250d28d874fafe11b3dfaf"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:0f022d381747f0dfe27e99d928e31bc51a18b65bb9e481ae0af1380a6725dd1f"}, + {file = "propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:297878dc9d0a334358f9b608b56d02e72899f3b8499fc6044133f0d319e2ec30"}, + {file = "propcache-0.2.1-cp313-cp313-win32.whl", hash = "sha256:ddfab44e4489bd79bda09d84c430677fc7f0a4939a73d2bba3073036f487a0a6"}, + {file = "propcache-0.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:556fc6c10989f19a179e4321e5d678db8eb2924131e64652a51fe83e4c3db0e1"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6a9a8c34fb7bb609419a211e59da8887eeca40d300b5ea8e56af98f6fbbb1541"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ae1aa1cd222c6d205853b3013c69cd04515f9d6ab6de4b0603e2e1c33221303e"}, + {file = "propcache-0.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:accb6150ce61c9c4b7738d45550806aa2b71c7668c6942f17b0ac182b6142fd4"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eee736daafa7af6d0a2dc15cc75e05c64f37fc37bafef2e00d77c14171c2097"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7a31fc1e1bd362874863fdeed71aed92d348f5336fd84f2197ba40c59f061bd"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba4cfa1052819d16699e1d55d18c92b6e094d4517c41dd231a8b9f87b6fa681"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f089118d584e859c62b3da0892b88a83d611c2033ac410e929cb6754eec0ed16"}, + {file = "propcache-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:781e65134efaf88feb447e8c97a51772aa75e48b794352f94cb7ea717dedda0d"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31f5af773530fd3c658b32b6bdc2d0838543de70eb9a2156c03e410f7b0d3aae"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:a7a078f5d37bee6690959c813977da5291b24286e7b962e62a94cec31aa5188b"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:cea7daf9fc7ae6687cf1e2c049752f19f146fdc37c2cc376e7d0032cf4f25347"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:8b3489ff1ed1e8315674d0775dc7d2195fb13ca17b3808721b54dbe9fd020faf"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9403db39be1393618dd80c746cb22ccda168efce239c73af13c3763ef56ffc04"}, + {file = "propcache-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5d97151bc92d2b2578ff7ce779cdb9174337390a535953cbb9452fb65164c587"}, + {file = "propcache-0.2.1-cp39-cp39-win32.whl", hash = "sha256:9caac6b54914bdf41bcc91e7eb9147d331d29235a7c967c150ef5df6464fd1bb"}, + {file = "propcache-0.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:92fc4500fcb33899b05ba73276dfb684a20d31caa567b7cb5252d48f896a91b1"}, + {file = "propcache-0.2.1-py3-none-any.whl", hash = "sha256:52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54"}, + {file = "propcache-0.2.1.tar.gz", hash = "sha256:3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64"}, ] [[package]] name = "proto-plus" -version = "1.26.1" -description = "Beautiful, Pythonic protocol buffers" +version = "1.25.0" +description = "Beautiful, Pythonic protocol buffers." optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "proto_plus-1.26.1-py3-none-any.whl", hash = "sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66"}, - {file = "proto_plus-1.26.1.tar.gz", hash = "sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012"}, + {file = "proto_plus-1.25.0-py3-none-any.whl", hash = "sha256:c91fc4a65074ade8e458e95ef8bac34d4008daa7cce4a12d6707066fca648961"}, + {file = "proto_plus-1.25.0.tar.gz", hash = "sha256:fbb17f57f7bd05a68b7707e745e26528b0b3c34e378db91eef93912c54982d91"}, ] [package.dependencies] -protobuf = ">=3.19.0,<7.0.0" +protobuf = ">=3.19.0,<6.0.0dev" [package.extras] testing = ["google-api-core (>=1.31.5)"] [[package]] name = "protobuf" -version = "6.30.2" +version = "5.29.0" description = "" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "protobuf-6.30.2-cp310-abi3-win32.whl", hash = "sha256:b12ef7df7b9329886e66404bef5e9ce6a26b54069d7f7436a0853ccdeb91c103"}, - {file = "protobuf-6.30.2-cp310-abi3-win_amd64.whl", hash = "sha256:7653c99774f73fe6b9301b87da52af0e69783a2e371e8b599b3e9cb4da4b12b9"}, - {file = "protobuf-6.30.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:0eb523c550a66a09a0c20f86dd554afbf4d32b02af34ae53d93268c1f73bc65b"}, - {file = "protobuf-6.30.2-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:50f32cc9fd9cb09c783ebc275611b4f19dfdfb68d1ee55d2f0c7fa040df96815"}, - {file = "protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:4f6c687ae8efae6cf6093389a596548214467778146b7245e886f35e1485315d"}, - {file = "protobuf-6.30.2-cp39-cp39-win32.whl", hash = "sha256:524afedc03b31b15586ca7f64d877a98b184f007180ce25183d1a5cb230ee72b"}, - {file = "protobuf-6.30.2-cp39-cp39-win_amd64.whl", hash = "sha256:acec579c39c88bd8fbbacab1b8052c793efe83a0a5bd99db4a31423a25c0a0e2"}, - {file = "protobuf-6.30.2-py3-none-any.whl", hash = "sha256:ae86b030e69a98e08c77beab574cbcb9fff6d031d57209f574a5aea1445f4b51"}, - {file = "protobuf-6.30.2.tar.gz", hash = "sha256:35c859ae076d8c56054c25b59e5e59638d86545ed6e2b6efac6be0b6ea3ba048"}, + {file = "protobuf-5.29.0-cp310-abi3-win32.whl", hash = "sha256:ea7fb379b257911c8c020688d455e8f74efd2f734b72dc1ea4b4d7e9fd1326f2"}, + {file = "protobuf-5.29.0-cp310-abi3-win_amd64.whl", hash = "sha256:34a90cf30c908f47f40ebea7811f743d360e202b6f10d40c02529ebd84afc069"}, + {file = "protobuf-5.29.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:c931c61d0cc143a2e756b1e7f8197a508de5365efd40f83c907a9febf36e6b43"}, + {file = "protobuf-5.29.0-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:85286a47caf63b34fa92fdc1fd98b649a8895db595cfa746c5286eeae890a0b1"}, + {file = "protobuf-5.29.0-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:0d10091d6d03537c3f902279fcf11e95372bdd36a79556311da0487455791b20"}, + {file = "protobuf-5.29.0-cp38-cp38-win32.whl", hash = "sha256:0cd67a1e5c2d88930aa767f702773b2d054e29957432d7c6a18f8be02a07719a"}, + {file = "protobuf-5.29.0-cp38-cp38-win_amd64.whl", hash = "sha256:e467f81fdd12ded9655cea3e9b83dc319d93b394ce810b556fb0f421d8613e86"}, + {file = "protobuf-5.29.0-cp39-cp39-win32.whl", hash = "sha256:17d128eebbd5d8aee80300aed7a43a48a25170af3337f6f1333d1fac2c6839ac"}, + {file = "protobuf-5.29.0-cp39-cp39-win_amd64.whl", hash = "sha256:6c3009e22717c6cc9e6594bb11ef9f15f669b19957ad4087214d69e08a213368"}, + {file = "protobuf-5.29.0-py3-none-any.whl", hash = "sha256:88c4af76a73183e21061881360240c0cdd3c39d263b4e8fb570aaf83348d608f"}, + {file = "protobuf-5.29.0.tar.gz", hash = "sha256:445a0c02483869ed8513a585d80020d012c6dc60075f96fa0563a724987b1001"}, ] [[package]] @@ -3740,6 +3884,7 @@ version = "0.14.8.post2" description = "Protopunica is pomegranate frozen at version 0.14.8." optional = false python-versions = "*" +groups = ["main"] files = [ {file = "protopunica-0.14.8.post2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:616313486a9c55e77c9ba0a3e05a7589216ed05b52908ffb95d4d74271f80f57"}, {file = "protopunica-0.14.8.post2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07a0d5ce0037e0c89e021ec302ad8e9ee007fba93dde0f98a7d6fbd7d8849446"}, @@ -3773,25 +3918,33 @@ plotting = ["matplotlib", "pygraphviz"] [[package]] name = "psutil" -version = "7.0.0" -description = "Cross-platform lib for process and system monitoring in Python. NOTE: the syntax of this script MUST be kept compatible with Python 2.7." +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." optional = false -python-versions = ">=3.6" -files = [ - {file = "psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25"}, - {file = "psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da"}, - {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91"}, - {file = "psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34"}, - {file = "psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993"}, - {file = "psutil-7.0.0-cp36-cp36m-win32.whl", hash = "sha256:84df4eb63e16849689f76b1ffcb36db7b8de703d1bc1fe41773db487621b6c17"}, - {file = "psutil-7.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1e744154a6580bc968a0195fd25e80432d3afec619daf145b9e5ba16cc1d688e"}, - {file = "psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99"}, - {file = "psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553"}, - {file = "psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456"}, +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +groups = ["main"] +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, ] [package.extras] -dev = ["abi3audit", "black (==24.10.0)", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest", "pytest-cov", "pytest-xdist", "requests", "rstcheck", "ruff", "setuptools", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "vulture", "wheel"] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] test = ["pytest", "pytest-xdist", "setuptools"] [[package]] @@ -3800,6 +3953,8 @@ version = "0.7.0" description = "Run a subprocess in a pseudo terminal" optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\" and os_name != \"nt\" or sys_platform != \"win32\" and sys_platform != \"emscripten\"" files = [ {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, @@ -3811,6 +3966,7 @@ version = "0.2.3" description = "Safely evaluate AST nodes without side effects" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, @@ -3825,6 +3981,7 @@ version = "0.6.1" description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629"}, {file = "pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034"}, @@ -3832,17 +3989,18 @@ files = [ [[package]] name = "pyasn1-modules" -version = "0.4.2" +version = "0.4.1" description = "A collection of ASN.1-based protocols modules" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a"}, - {file = "pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6"}, + {file = "pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd"}, + {file = "pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c"}, ] [package.dependencies] -pyasn1 = ">=0.6.1,<0.7.0" +pyasn1 = ">=0.4.6,<0.7.0" [[package]] name = "pycparser" @@ -3850,6 +4008,8 @@ version = "2.22" description = "C parser in Python" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "implementation_name == \"pypy\" or extra == \"dev\"" files = [ {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, @@ -3857,13 +4017,15 @@ files = [ [[package]] name = "pydata-sphinx-theme" -version = "0.16.1" +version = "0.16.0" description = "Bootstrap-based Sphinx theme from the PyData community" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "pydata_sphinx_theme-0.16.1-py3-none-any.whl", hash = "sha256:225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde"}, - {file = "pydata_sphinx_theme-0.16.1.tar.gz", hash = "sha256:a08b7f0b7f70387219dc659bff0893a7554d5eb39b59d3b8ef37b8401b7642d7"}, + {file = "pydata_sphinx_theme-0.16.0-py3-none-any.whl", hash = "sha256:18c810ee4e67e05281e371e156c1fb5bb0fa1f2747240461b225272f7d8d57d8"}, + {file = "pydata_sphinx_theme-0.16.0.tar.gz", hash = "sha256:721dd26e05fa8b992d66ef545536e6cbe0110afb9865820a08894af1ad6f7707"}, ] [package.dependencies] @@ -3884,13 +4046,14 @@ test = ["pytest", "pytest-cov", "pytest-regressions", "sphinx[test]"] [[package]] name = "pygments" -version = "2.19.1" +version = "2.18.0" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"}, - {file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"}, + {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, + {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, ] [package.extras] @@ -3898,13 +4061,15 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pytest" -version = "8.3.5" +version = "8.3.4" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820"}, - {file = "pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845"}, + {file = "pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6"}, + {file = "pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761"}, ] [package.dependencies] @@ -3924,6 +4089,8 @@ version = "3.8.6" description = "Separate test code from test cases in pytest." optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "pytest_cases-3.8.6-py2.py3-none-any.whl", hash = "sha256:564c722492ea7e7ec3ac433fd14070180e65866f49fa35bfe938c0d5d9afba67"}, {file = "pytest_cases-3.8.6.tar.gz", hash = "sha256:5c24e0ab0cb6f8e802a469b7965906a333d3babb874586ebc56f7e2cbe1a7c44"}, @@ -3936,13 +4103,15 @@ packaging = "*" [[package]] name = "pytest-cov" -version = "6.1.1" +version = "6.0.0" description = "Pytest plugin for measuring coverage." optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "pytest_cov-6.1.1-py3-none-any.whl", hash = "sha256:bddf29ed2d0ab6f4df17b4c55b0a657287db8684af9c42ea546b21b1041b3dde"}, - {file = "pytest_cov-6.1.1.tar.gz", hash = "sha256:46935f7aaefba760e716c2ebfbe1c216240b9592966e7da99ea8292d4d3e2a0a"}, + {file = "pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0"}, + {file = "pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35"}, ] [package.dependencies] @@ -3958,6 +4127,8 @@ version = "3.6.1" description = "pytest xdist plugin for distributed testing, most importantly across multiple CPUs" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "pytest_xdist-3.6.1-py3-none-any.whl", hash = "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7"}, {file = "pytest_xdist-3.6.1.tar.gz", hash = "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d"}, @@ -3978,6 +4149,7 @@ version = "2.9.0.post0" description = "Extensions to the standard Python datetime module" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +groups = ["main"] files = [ {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, @@ -3988,68 +4160,73 @@ six = ">=1.5" [[package]] name = "python-json-logger" -version = "3.3.0" -description = "JSON Log Formatter for the Python Logging Package" +version = "2.0.7" +description = "A python library adding a json log formatter" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "python_json_logger-3.3.0-py3-none-any.whl", hash = "sha256:dd980fae8cffb24c13caf6e158d3d61c0d6d22342f932cb6e9deedab3d35eec7"}, - {file = "python_json_logger-3.3.0.tar.gz", hash = "sha256:12b7e74b17775e7d565129296105bbe3910842d9d0eb083fc83a6a617aa8df84"}, + {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, + {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, ] -[package.extras] -dev = ["backports.zoneinfo", "black", "build", "freezegun", "mdx_truly_sane_lists", "mike", "mkdocs", "mkdocs-awesome-pages-plugin", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-material (>=8.5)", "mkdocstrings[python]", "msgspec", "mypy", "orjson", "pylint", "pytest", "tzdata", "validate-pyproject[all]"] - [[package]] name = "pytz" -version = "2025.2" +version = "2024.2" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" +groups = ["main"] files = [ - {file = "pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00"}, - {file = "pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3"}, + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, ] [[package]] name = "pywin32" -version = "310" +version = "308" description = "Python for Window Extensions" optional = false python-versions = "*" -files = [ - {file = "pywin32-310-cp310-cp310-win32.whl", hash = "sha256:6dd97011efc8bf51d6793a82292419eba2c71cf8e7250cfac03bba284454abc1"}, - {file = "pywin32-310-cp310-cp310-win_amd64.whl", hash = "sha256:c3e78706e4229b915a0821941a84e7ef420bf2b77e08c9dae3c76fd03fd2ae3d"}, - {file = "pywin32-310-cp310-cp310-win_arm64.whl", hash = "sha256:33babed0cf0c92a6f94cc6cc13546ab24ee13e3e800e61ed87609ab91e4c8213"}, - {file = "pywin32-310-cp311-cp311-win32.whl", hash = "sha256:1e765f9564e83011a63321bb9d27ec456a0ed90d3732c4b2e312b855365ed8bd"}, - {file = "pywin32-310-cp311-cp311-win_amd64.whl", hash = "sha256:126298077a9d7c95c53823934f000599f66ec9296b09167810eb24875f32689c"}, - {file = "pywin32-310-cp311-cp311-win_arm64.whl", hash = "sha256:19ec5fc9b1d51c4350be7bb00760ffce46e6c95eaf2f0b2f1150657b1a43c582"}, - {file = "pywin32-310-cp312-cp312-win32.whl", hash = "sha256:8a75a5cc3893e83a108c05d82198880704c44bbaee4d06e442e471d3c9ea4f3d"}, - {file = "pywin32-310-cp312-cp312-win_amd64.whl", hash = "sha256:bf5c397c9a9a19a6f62f3fb821fbf36cac08f03770056711f765ec1503972060"}, - {file = "pywin32-310-cp312-cp312-win_arm64.whl", hash = "sha256:2349cc906eae872d0663d4d6290d13b90621eaf78964bb1578632ff20e152966"}, - {file = "pywin32-310-cp313-cp313-win32.whl", hash = "sha256:5d241a659c496ada3253cd01cfaa779b048e90ce4b2b38cd44168ad555ce74ab"}, - {file = "pywin32-310-cp313-cp313-win_amd64.whl", hash = "sha256:667827eb3a90208ddbdcc9e860c81bde63a135710e21e4cb3348968e4bd5249e"}, - {file = "pywin32-310-cp313-cp313-win_arm64.whl", hash = "sha256:e308f831de771482b7cf692a1f308f8fca701b2d8f9dde6cc440c7da17e47b33"}, - {file = "pywin32-310-cp38-cp38-win32.whl", hash = "sha256:0867beb8addefa2e3979d4084352e4ac6e991ca45373390775f7084cc0209b9c"}, - {file = "pywin32-310-cp38-cp38-win_amd64.whl", hash = "sha256:30f0a9b3138fb5e07eb4973b7077e1883f558e40c578c6925acc7a94c34eaa36"}, - {file = "pywin32-310-cp39-cp39-win32.whl", hash = "sha256:851c8d927af0d879221e616ae1f66145253537bbdd321a77e8ef701b443a9a1a"}, - {file = "pywin32-310-cp39-cp39-win_amd64.whl", hash = "sha256:96867217335559ac619f00ad70e513c0fcf84b8a3af9fc2bba3b59b97da70475"}, +groups = ["main"] +markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\"" +files = [ + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] name = "pywinpty" -version = "2.0.15" +version = "2.0.14" description = "Pseudo terminal support for Windows from Python." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\" and os_name == \"nt\"" files = [ - {file = "pywinpty-2.0.15-cp310-cp310-win_amd64.whl", hash = "sha256:8e7f5de756a615a38b96cd86fa3cd65f901ce54ce147a3179c45907fa11b4c4e"}, - {file = "pywinpty-2.0.15-cp311-cp311-win_amd64.whl", hash = "sha256:9a6bcec2df2707aaa9d08b86071970ee32c5026e10bcc3cc5f6f391d85baf7ca"}, - {file = "pywinpty-2.0.15-cp312-cp312-win_amd64.whl", hash = "sha256:83a8f20b430bbc5d8957249f875341a60219a4e971580f2ba694fbfb54a45ebc"}, - {file = "pywinpty-2.0.15-cp313-cp313-win_amd64.whl", hash = "sha256:ab5920877dd632c124b4ed17bc6dd6ef3b9f86cd492b963ffdb1a67b85b0f408"}, - {file = "pywinpty-2.0.15-cp313-cp313t-win_amd64.whl", hash = "sha256:a4560ad8c01e537708d2790dbe7da7d986791de805d89dd0d3697ca59e9e4901"}, - {file = "pywinpty-2.0.15-cp39-cp39-win_amd64.whl", hash = "sha256:d261cd88fcd358cfb48a7ca0700db3e1c088c9c10403c9ebc0d8a8b57aa6a117"}, - {file = "pywinpty-2.0.15.tar.gz", hash = "sha256:312cf39153a8736c617d45ce8b6ad6cd2107de121df91c455b10ce6bba7a39b2"}, + {file = "pywinpty-2.0.14-cp310-none-win_amd64.whl", hash = "sha256:0b149c2918c7974f575ba79f5a4aad58bd859a52fa9eb1296cc22aa412aa411f"}, + {file = "pywinpty-2.0.14-cp311-none-win_amd64.whl", hash = "sha256:cf2a43ac7065b3e0dc8510f8c1f13a75fb8fde805efa3b8cff7599a1ef497bc7"}, + {file = "pywinpty-2.0.14-cp312-none-win_amd64.whl", hash = "sha256:55dad362ef3e9408ade68fd173e4f9032b3ce08f68cfe7eacb2c263ea1179737"}, + {file = "pywinpty-2.0.14-cp313-none-win_amd64.whl", hash = "sha256:074fb988a56ec79ca90ed03a896d40707131897cefb8f76f926e3834227f2819"}, + {file = "pywinpty-2.0.14-cp39-none-win_amd64.whl", hash = "sha256:5725fd56f73c0531ec218663bd8c8ff5acc43c78962fab28564871b5fce053fd"}, + {file = "pywinpty-2.0.14.tar.gz", hash = "sha256:18bd9529e4a5daf2d9719aa17788ba6013e594ae94c5a0c27e83df3278b0660e"}, ] [[package]] @@ -4058,6 +4235,7 @@ version = "6.0.2" description = "YAML parser and emitter for Python" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, @@ -4116,104 +4294,121 @@ files = [ [[package]] name = "pyzmq" -version = "26.4.0" +version = "26.2.0" description = "Python bindings for 0MQ" optional = false -python-versions = ">=3.8" -files = [ - {file = "pyzmq-26.4.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:0329bdf83e170ac133f44a233fc651f6ed66ef8e66693b5af7d54f45d1ef5918"}, - {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:398a825d2dea96227cf6460ce0a174cf7657d6f6827807d4d1ae9d0f9ae64315"}, - {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d52d62edc96787f5c1dfa6c6ccff9b581cfae5a70d94ec4c8da157656c73b5b"}, - {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1410c3a3705db68d11eb2424d75894d41cff2f64d948ffe245dd97a9debfebf4"}, - {file = "pyzmq-26.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:7dacb06a9c83b007cc01e8e5277f94c95c453c5851aac5e83efe93e72226353f"}, - {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6bab961c8c9b3a4dc94d26e9b2cdf84de9918931d01d6ff38c721a83ab3c0ef5"}, - {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7a5c09413b924d96af2aa8b57e76b9b0058284d60e2fc3730ce0f979031d162a"}, - {file = "pyzmq-26.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7d489ac234d38e57f458fdbd12a996bfe990ac028feaf6f3c1e81ff766513d3b"}, - {file = "pyzmq-26.4.0-cp310-cp310-win32.whl", hash = "sha256:dea1c8db78fb1b4b7dc9f8e213d0af3fc8ecd2c51a1d5a3ca1cde1bda034a980"}, - {file = "pyzmq-26.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:fa59e1f5a224b5e04dc6c101d7186058efa68288c2d714aa12d27603ae93318b"}, - {file = "pyzmq-26.4.0-cp310-cp310-win_arm64.whl", hash = "sha256:a651fe2f447672f4a815e22e74630b6b1ec3a1ab670c95e5e5e28dcd4e69bbb5"}, - {file = "pyzmq-26.4.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:bfcf82644c9b45ddd7cd2a041f3ff8dce4a0904429b74d73a439e8cab1bd9e54"}, - {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e9bcae3979b2654d5289d3490742378b2f3ce804b0b5fd42036074e2bf35b030"}, - {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccdff8ac4246b6fb60dcf3982dfaeeff5dd04f36051fe0632748fc0aa0679c01"}, - {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4550af385b442dc2d55ab7717837812799d3674cb12f9a3aa897611839c18e9e"}, - {file = "pyzmq-26.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f9f7ffe9db1187a253fca95191854b3fda24696f086e8789d1d449308a34b88"}, - {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3709c9ff7ba61589b7372923fd82b99a81932b592a5c7f1a24147c91da9a68d6"}, - {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f8f3c30fb2d26ae5ce36b59768ba60fb72507ea9efc72f8f69fa088450cff1df"}, - {file = "pyzmq-26.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:382a4a48c8080e273427fc692037e3f7d2851959ffe40864f2db32646eeb3cef"}, - {file = "pyzmq-26.4.0-cp311-cp311-win32.whl", hash = "sha256:d56aad0517d4c09e3b4f15adebba8f6372c5102c27742a5bdbfc74a7dceb8fca"}, - {file = "pyzmq-26.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:963977ac8baed7058c1e126014f3fe58b3773f45c78cce7af5c26c09b6823896"}, - {file = "pyzmq-26.4.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0c8e8cadc81e44cc5088fcd53b9b3b4ce9344815f6c4a03aec653509296fae3"}, - {file = "pyzmq-26.4.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:5227cb8da4b6f68acfd48d20c588197fd67745c278827d5238c707daf579227b"}, - {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1c07a7fa7f7ba86554a2b1bef198c9fed570c08ee062fd2fd6a4dcacd45f905"}, - {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae775fa83f52f52de73183f7ef5395186f7105d5ed65b1ae65ba27cb1260de2b"}, - {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66c760d0226ebd52f1e6b644a9e839b5db1e107a23f2fcd46ec0569a4fdd4e63"}, - {file = "pyzmq-26.4.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ef8c6ecc1d520debc147173eaa3765d53f06cd8dbe7bd377064cdbc53ab456f5"}, - {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3150ef4084e163dec29ae667b10d96aad309b668fac6810c9e8c27cf543d6e0b"}, - {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4448c9e55bf8329fa1dcedd32f661bf611214fa70c8e02fee4347bc589d39a84"}, - {file = "pyzmq-26.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e07dde3647afb084d985310d067a3efa6efad0621ee10826f2cb2f9a31b89d2f"}, - {file = "pyzmq-26.4.0-cp312-cp312-win32.whl", hash = "sha256:ba034a32ecf9af72adfa5ee383ad0fd4f4e38cdb62b13624278ef768fe5b5b44"}, - {file = "pyzmq-26.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:056a97aab4064f526ecb32f4343917a4022a5d9efb6b9df990ff72e1879e40be"}, - {file = "pyzmq-26.4.0-cp312-cp312-win_arm64.whl", hash = "sha256:2f23c750e485ce1eb639dbd576d27d168595908aa2d60b149e2d9e34c9df40e0"}, - {file = "pyzmq-26.4.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:c43fac689880f5174d6fc864857d1247fe5cfa22b09ed058a344ca92bf5301e3"}, - {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:902aca7eba477657c5fb81c808318460328758e8367ecdd1964b6330c73cae43"}, - {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5e48a830bfd152fe17fbdeaf99ac5271aa4122521bf0d275b6b24e52ef35eb6"}, - {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31be2b6de98c824c06f5574331f805707c667dc8f60cb18580b7de078479891e"}, - {file = "pyzmq-26.4.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6332452034be001bbf3206ac59c0d2a7713de5f25bb38b06519fc6967b7cf771"}, - {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:da8c0f5dd352136853e6a09b1b986ee5278dfddfebd30515e16eae425c872b30"}, - {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f4ccc1a0a2c9806dda2a2dd118a3b7b681e448f3bb354056cad44a65169f6d86"}, - {file = "pyzmq-26.4.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1c0b5fceadbab461578daf8d1dcc918ebe7ddd2952f748cf30c7cf2de5d51101"}, - {file = "pyzmq-26.4.0-cp313-cp313-win32.whl", hash = "sha256:28e2b0ff5ba4b3dd11062d905682bad33385cfa3cc03e81abd7f0822263e6637"}, - {file = "pyzmq-26.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:23ecc9d241004c10e8b4f49d12ac064cd7000e1643343944a10df98e57bc544b"}, - {file = "pyzmq-26.4.0-cp313-cp313-win_arm64.whl", hash = "sha256:1edb0385c7f025045d6e0f759d4d3afe43c17a3d898914ec6582e6f464203c08"}, - {file = "pyzmq-26.4.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:93a29e882b2ba1db86ba5dd5e88e18e0ac6b627026c5cfbec9983422011b82d4"}, - {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45684f276f57110bb89e4300c00f1233ca631f08f5f42528a5c408a79efc4a"}, - {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f72073e75260cb301aad4258ad6150fa7f57c719b3f498cb91e31df16784d89b"}, - {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be37e24b13026cfedd233bcbbccd8c0bcd2fdd186216094d095f60076201538d"}, - {file = "pyzmq-26.4.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:237b283044934d26f1eeff4075f751b05d2f3ed42a257fc44386d00df6a270cf"}, - {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:b30f862f6768b17040929a68432c8a8be77780317f45a353cb17e423127d250c"}, - {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:c80fcd3504232f13617c6ab501124d373e4895424e65de8b72042333316f64a8"}, - {file = "pyzmq-26.4.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:26a2a7451606b87f67cdeca2c2789d86f605da08b4bd616b1a9981605ca3a364"}, - {file = "pyzmq-26.4.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:831cc53bf6068d46d942af52fa8b0b9d128fb39bcf1f80d468dc9a3ae1da5bfb"}, - {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:51d18be6193c25bd229524cfac21e39887c8d5e0217b1857998dfbef57c070a4"}, - {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:445c97854204119ae2232503585ebb4fa7517142f71092cb129e5ee547957a1f"}, - {file = "pyzmq-26.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:807b8f4ad3e6084412c0f3df0613269f552110fa6fb91743e3e306223dbf11a6"}, - {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c01d109dd675ac47fa15c0a79d256878d898f90bc10589f808b62d021d2e653c"}, - {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0a294026e28679a8dd64c922e59411cb586dad307661b4d8a5c49e7bbca37621"}, - {file = "pyzmq-26.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:22c8dd677274af8dfb1efd05006d6f68fb2f054b17066e308ae20cb3f61028cf"}, - {file = "pyzmq-26.4.0-cp38-cp38-win32.whl", hash = "sha256:14fc678b696bc42c14e2d7f86ac4e97889d5e6b94d366ebcb637a768d2ad01af"}, - {file = "pyzmq-26.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:d1ef0a536662bbbdc8525f7e2ef19e74123ec9c4578e0582ecd41aedc414a169"}, - {file = "pyzmq-26.4.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:a88643de8abd000ce99ca72056a1a2ae15881ee365ecb24dd1d9111e43d57842"}, - {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:0a744ce209ecb557406fb928f3c8c55ce79b16c3eeb682da38ef5059a9af0848"}, - {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9434540f333332224ecb02ee6278b6c6f11ea1266b48526e73c903119b2f420f"}, - {file = "pyzmq-26.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6c6f0a23e55cd38d27d4c89add963294ea091ebcb104d7fdab0f093bc5abb1c"}, - {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6145df55dc2309f6ef72d70576dcd5aabb0fd373311613fe85a5e547c722b780"}, - {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2ea81823840ef8c56e5d2f9918e4d571236294fea4d1842b302aebffb9e40997"}, - {file = "pyzmq-26.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cc2abc385dc37835445abe206524fbc0c9e3fce87631dfaa90918a1ba8f425eb"}, - {file = "pyzmq-26.4.0-cp39-cp39-win32.whl", hash = "sha256:41a2508fe7bed4c76b4cf55aacfb8733926f59d440d9ae2b81ee8220633b4d12"}, - {file = "pyzmq-26.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:d4000e8255d6cbce38982e5622ebb90823f3409b7ffe8aeae4337ef7d6d2612a"}, - {file = "pyzmq-26.4.0-cp39-cp39-win_arm64.whl", hash = "sha256:b4f6919d9c120488246bdc2a2f96662fa80d67b35bd6d66218f457e722b3ff64"}, - {file = "pyzmq-26.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:98d948288ce893a2edc5ec3c438fe8de2daa5bbbd6e2e865ec5f966e237084ba"}, - {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9f34f5c9e0203ece706a1003f1492a56c06c0632d86cb77bcfe77b56aacf27b"}, - {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80c9b48aef586ff8b698359ce22f9508937c799cc1d2c9c2f7c95996f2300c94"}, - {file = "pyzmq-26.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f2a5b74009fd50b53b26f65daff23e9853e79aa86e0aa08a53a7628d92d44a"}, - {file = "pyzmq-26.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:61c5f93d7622d84cb3092d7f6398ffc77654c346545313a3737e266fc11a3beb"}, - {file = "pyzmq-26.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4478b14cb54a805088299c25a79f27eaf530564a7a4f72bf432a040042b554eb"}, - {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a28ac29c60e4ba84b5f58605ace8ad495414a724fe7aceb7cf06cd0598d04e1"}, - {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43b03c1ceea27c6520124f4fb2ba9c647409b9abdf9a62388117148a90419494"}, - {file = "pyzmq-26.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7731abd23a782851426d4e37deb2057bf9410848a4459b5ede4fe89342e687a9"}, - {file = "pyzmq-26.4.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a222ad02fbe80166b0526c038776e8042cd4e5f0dec1489a006a1df47e9040e0"}, - {file = "pyzmq-26.4.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl", hash = "sha256:91c3ffaea475ec8bb1a32d77ebc441dcdd13cd3c4c284a6672b92a0f5ade1917"}, - {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d9a78a52668bf5c9e7b0da36aa5760a9fc3680144e1445d68e98df78a25082ed"}, - {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b70cab356ff8c860118b89dc86cd910c73ce2127eb986dada4fbac399ef644cf"}, - {file = "pyzmq-26.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acae207d4387780838192326b32d373bb286da0b299e733860e96f80728eb0af"}, - {file = "pyzmq-26.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f928eafd15794aa4be75463d537348b35503c1e014c5b663f206504ec1a90fe4"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:552b0d2e39987733e1e9e948a0ced6ff75e0ea39ab1a1db2fc36eb60fd8760db"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd670a8aa843f2ee637039bbd412e0d7294a5e588e1ecc9ad98b0cdc050259a4"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d367b7b775a0e1e54a59a2ba3ed4d5e0a31566af97cc9154e34262777dab95ed"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112af16c406e4a93df2caef49f884f4c2bb2b558b0b5577ef0b2465d15c1abc"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c76c298683f82669cab0b6da59071f55238c039738297c69f187a542c6d40099"}, - {file = "pyzmq-26.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:49b6ca2e625b46f499fb081aaf7819a177f41eeb555acb05758aa97f4f95d147"}, - {file = "pyzmq-26.4.0.tar.gz", hash = "sha256:4bd13f85f80962f91a651a7356fe0472791a5f7a92f227822b5acf44795c626d"}, +python-versions = ">=3.7" +groups = ["main"] +files = [ + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea"}, + {file = "pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6"}, + {file = "pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b"}, + {file = "pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e"}, + {file = "pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0"}, + {file = "pyzmq-26.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b55a4229ce5da9497dd0452b914556ae58e96a4381bb6f59f1305dfd7e53fc8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9cb3a6460cdea8fe8194a76de8895707e61ded10ad0be97188cc8463ffa7e3a8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ab5cad923cc95c87bffee098a27856c859bd5d0af31bd346035aa816b081fe1"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ed69074a610fad1c2fda66180e7b2edd4d31c53f2d1872bc2d1211563904cd9"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cccba051221b916a4f5e538997c45d7d136a5646442b1231b916d0164067ea27"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0eaa83fc4c1e271c24eaf8fb083cbccef8fde77ec8cd45f3c35a9a123e6da097"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9edda2df81daa129b25a39b86cb57dfdfe16f7ec15b42b19bfac503360d27a93"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win32.whl", hash = "sha256:ea0eb6af8a17fa272f7b98d7bebfab7836a0d62738e16ba380f440fceca2d951"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4ff9dc6bc1664bb9eec25cd17506ef6672d506115095411e237d571e92a58231"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2eb7735ee73ca1b0d71e0e67c3739c689067f055c764f73aac4cc8ecf958ee3f"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a534f43bc738181aa7cbbaf48e3eca62c76453a40a746ab95d4b27b1111a7d2"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aedd5dd8692635813368e558a05266b995d3d020b23e49581ddd5bbe197a8ab6"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8be4700cd8bb02cc454f630dcdf7cfa99de96788b80c51b60fe2fe1dac480289"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fcc03fa4997c447dce58264e93b5aa2d57714fbe0f06c07b7785ae131512732"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:402b190912935d3db15b03e8f7485812db350d271b284ded2b80d2e5704be780"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8685fa9c25ff00f550c1fec650430c4b71e4e48e8d852f7ddcf2e48308038640"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:76589c020680778f06b7e0b193f4b6dd66d470234a16e1df90329f5e14a171cd"}, + {file = "pyzmq-26.2.0-cp38-cp38-win32.whl", hash = "sha256:8423c1877d72c041f2c263b1ec6e34360448decfb323fa8b94e85883043ef988"}, + {file = "pyzmq-26.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:76589f2cd6b77b5bdea4fca5992dc1c23389d68b18ccc26a53680ba2dc80ff2f"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:b1d464cb8d72bfc1a3adc53305a63a8e0cac6bc8c5a07e8ca190ab8d3faa43c2"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4da04c48873a6abdd71811c5e163bd656ee1b957971db7f35140a2d573f6949c"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d049df610ac811dcffdc147153b414147428567fbbc8be43bb8885f04db39d98"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05590cdbc6b902101d0e65d6a4780af14dc22914cc6ab995d99b85af45362cc9"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c811cfcd6a9bf680236c40c6f617187515269ab2912f3d7e8c0174898e2519db"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6835dd60355593de10350394242b5757fbbd88b25287314316f266e24c61d073"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc6bee759a6bddea5db78d7dcd609397449cb2d2d6587f48f3ca613b19410cfc"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c530e1eecd036ecc83c3407f77bb86feb79916d4a33d11394b8234f3bd35b940"}, + {file = "pyzmq-26.2.0-cp39-cp39-win32.whl", hash = "sha256:367b4f689786fca726ef7a6c5ba606958b145b9340a5e4808132cc65759abd44"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e6fa2e3e683f34aea77de8112f6483803c96a44fd726d7358b9888ae5bb394ec"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:7445be39143a8aa4faec43b076e06944b8f9d0701b669df4af200531b21e40bb"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ea4ad4e6a12e454de05f2949d4beddb52460f3de7c8b9d5c46fbb7d7222e02c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fc4f7a173a5609631bb0c42c23d12c49df3966f89f496a51d3eb0ec81f4519d6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:878206a45202247781472a2d99df12a176fef806ca175799e1c6ad263510d57c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17c412bad2eb9468e876f556eb4ee910e62d721d2c7a53c7fa31e643d35352e6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:0d987a3ae5a71c6226b203cfd298720e0086c7fe7c74f35fa8edddfbd6597eed"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:39887ac397ff35b7b775db7201095fc6310a35fdbae85bac4523f7eb3b840e20"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fdb5b3e311d4d4b0eb8b3e8b4d1b0a512713ad7e6a68791d0923d1aec433d919"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:226af7dcb51fdb0109f0016449b357e182ea0ceb6b47dfb5999d569e5db161d5"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bed0e799e6120b9c32756203fb9dfe8ca2fb8467fed830c34c877e25638c3fc"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:29c7947c594e105cb9e6c466bace8532dc1ca02d498684128b339799f5248277"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cdeabcff45d1c219636ee2e54d852262e5c2e085d6cb476d938aee8d921356b3"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35cffef589bcdc587d06f9149f8d5e9e8859920a071df5a2671de2213bef592a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18c8dc3b7468d8b4bdf60ce9d7141897da103c7a4690157b32b60acb45e333e6"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7133d0a1677aec369d67dd78520d3fa96dd7f3dcec99d66c1762870e5ea1a50a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a96179a24b14fa6428cbfc08641c779a53f8fcec43644030328f44034c7f1f4"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4f78c88905461a9203eac9faac157a2a0dbba84a0fd09fd29315db27be40af9f"}, + {file = "pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f"}, ] [package.dependencies] @@ -4221,19 +4416,20 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "referencing" -version = "0.36.2" +version = "0.35.1" description = "JSON Referencing + Python" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0"}, - {file = "referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa"}, + {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, + {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, ] [package.dependencies] attrs = ">=22.2.0" rpds-py = ">=0.7.0" -typing-extensions = {version = ">=4.4.0", markers = "python_version < \"3.13\""} [[package]] name = "requests" @@ -4241,6 +4437,7 @@ version = "2.32.3" description = "Python HTTP for Humans." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, @@ -4262,6 +4459,7 @@ version = "2.0.0" description = "OAuthlib authentication support for Requests." optional = false python-versions = ">=3.4" +groups = ["main"] files = [ {file = "requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9"}, {file = "requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36"}, @@ -4280,6 +4478,7 @@ version = "1.3.4" description = "Retrying" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "retrying-1.3.4-py3-none-any.whl", hash = "sha256:8cc4d43cb8e1125e0ff3344e9de678fefd85db3b750b81b2240dc0183af37b35"}, {file = "retrying-1.3.4.tar.gz", hash = "sha256:345da8c5765bd982b1d1915deb9102fd3d1f7ad16bd84a9700b85f64d24e8f3e"}, @@ -4294,6 +4493,8 @@ version = "0.1.4" description = "A pure python RFC3339 validator" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, @@ -4308,6 +4509,8 @@ version = "0.1.1" description = "Pure python rfc3986 validator" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, @@ -4315,125 +4518,116 @@ files = [ [[package]] name = "rpds-py" -version = "0.24.0" +version = "0.22.3" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.9" -files = [ - {file = "rpds_py-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:006f4342fe729a368c6df36578d7a348c7c716be1da0a1a0f86e3021f8e98724"}, - {file = "rpds_py-0.24.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d53747da70a4e4b17f559569d5f9506420966083a31c5fbd84e764461c4444b"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8acd55bd5b071156bae57b555f5d33697998752673b9de554dd82f5b5352727"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7e80d375134ddb04231a53800503752093dbb65dad8dabacce2c84cccc78e964"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60748789e028d2a46fc1c70750454f83c6bdd0d05db50f5ae83e2db500b34da5"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e1daf5bf6c2be39654beae83ee6b9a12347cb5aced9a29eecf12a2d25fff664"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b221c2457d92a1fb3c97bee9095c874144d196f47c038462ae6e4a14436f7bc"}, - {file = "rpds_py-0.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:66420986c9afff67ef0c5d1e4cdc2d0e5262f53ad11e4f90e5e22448df485bf0"}, - {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:43dba99f00f1d37b2a0265a259592d05fcc8e7c19d140fe51c6e6f16faabeb1f"}, - {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a88c0d17d039333a41d9bf4616bd062f0bd7aa0edeb6cafe00a2fc2a804e944f"}, - {file = "rpds_py-0.24.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc31e13ce212e14a539d430428cd365e74f8b2d534f8bc22dd4c9c55b277b875"}, - {file = "rpds_py-0.24.0-cp310-cp310-win32.whl", hash = "sha256:fc2c1e1b00f88317d9de6b2c2b39b012ebbfe35fe5e7bef980fd2a91f6100a07"}, - {file = "rpds_py-0.24.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0145295ca415668420ad142ee42189f78d27af806fcf1f32a18e51d47dd2052"}, - {file = "rpds_py-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:2d3ee4615df36ab8eb16c2507b11e764dcc11fd350bbf4da16d09cda11fcedef"}, - {file = "rpds_py-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e13ae74a8a3a0c2f22f450f773e35f893484fcfacb00bb4344a7e0f4f48e1f97"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf86f72d705fc2ef776bb7dd9e5fbba79d7e1f3e258bf9377f8204ad0fc1c51e"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c43583ea8517ed2e780a345dd9960896afc1327e8cf3ac8239c167530397440d"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4cd031e63bc5f05bdcda120646a0d32f6d729486d0067f09d79c8db5368f4586"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34d90ad8c045df9a4259c47d2e16a3f21fdb396665c94520dbfe8766e62187a4"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e838bf2bb0b91ee67bf2b889a1a841e5ecac06dd7a2b1ef4e6151e2ce155c7ae"}, - {file = "rpds_py-0.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04ecf5c1ff4d589987b4d9882872f80ba13da7d42427234fce8f22efb43133bc"}, - {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:630d3d8ea77eabd6cbcd2ea712e1c5cecb5b558d39547ac988351195db433f6c"}, - {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ebcb786b9ff30b994d5969213a8430cbb984cdd7ea9fd6df06663194bd3c450c"}, - {file = "rpds_py-0.24.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:174e46569968ddbbeb8a806d9922f17cd2b524aa753b468f35b97ff9c19cb718"}, - {file = "rpds_py-0.24.0-cp311-cp311-win32.whl", hash = "sha256:5ef877fa3bbfb40b388a5ae1cb00636a624690dcb9a29a65267054c9ea86d88a"}, - {file = "rpds_py-0.24.0-cp311-cp311-win_amd64.whl", hash = "sha256:e274f62cbd274359eff63e5c7e7274c913e8e09620f6a57aae66744b3df046d6"}, - {file = "rpds_py-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d8551e733626afec514b5d15befabea0dd70a343a9f23322860c4f16a9430205"}, - {file = "rpds_py-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0e374c0ce0ca82e5b67cd61fb964077d40ec177dd2c4eda67dba130de09085c7"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d69d003296df4840bd445a5d15fa5b6ff6ac40496f956a221c4d1f6f7b4bc4d9"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8212ff58ac6dfde49946bea57474a386cca3f7706fc72c25b772b9ca4af6b79e"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:528927e63a70b4d5f3f5ccc1fa988a35456eb5d15f804d276709c33fc2f19bda"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a824d2c7a703ba6daaca848f9c3d5cb93af0505be505de70e7e66829affd676e"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d51febb7a114293ffd56c6cf4736cb31cd68c0fddd6aa303ed09ea5a48e029"}, - {file = "rpds_py-0.24.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3fab5f4a2c64a8fb64fc13b3d139848817a64d467dd6ed60dcdd6b479e7febc9"}, - {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9be4f99bee42ac107870c61dfdb294d912bf81c3c6d45538aad7aecab468b6b7"}, - {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:564c96b6076a98215af52f55efa90d8419cc2ef45d99e314fddefe816bc24f91"}, - {file = "rpds_py-0.24.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:75a810b7664c17f24bf2ffd7f92416c00ec84b49bb68e6a0d93e542406336b56"}, - {file = "rpds_py-0.24.0-cp312-cp312-win32.whl", hash = "sha256:f6016bd950be4dcd047b7475fdf55fb1e1f59fc7403f387be0e8123e4a576d30"}, - {file = "rpds_py-0.24.0-cp312-cp312-win_amd64.whl", hash = "sha256:998c01b8e71cf051c28f5d6f1187abbdf5cf45fc0efce5da6c06447cba997034"}, - {file = "rpds_py-0.24.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:3d2d8e4508e15fc05b31285c4b00ddf2e0eb94259c2dc896771966a163122a0c"}, - {file = "rpds_py-0.24.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0f00c16e089282ad68a3820fd0c831c35d3194b7cdc31d6e469511d9bffc535c"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:951cc481c0c395c4a08639a469d53b7d4afa252529a085418b82a6b43c45c240"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c9ca89938dff18828a328af41ffdf3902405a19f4131c88e22e776a8e228c5a8"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed0ef550042a8dbcd657dfb284a8ee00f0ba269d3f2286b0493b15a5694f9fe8"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b2356688e5d958c4d5cb964af865bea84db29971d3e563fb78e46e20fe1848b"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78884d155fd15d9f64f5d6124b486f3d3f7fd7cd71a78e9670a0f6f6ca06fb2d"}, - {file = "rpds_py-0.24.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6a4a535013aeeef13c5532f802708cecae8d66c282babb5cd916379b72110cf7"}, - {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:84e0566f15cf4d769dade9b366b7b87c959be472c92dffb70462dd0844d7cbad"}, - {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:823e74ab6fbaa028ec89615ff6acb409e90ff45580c45920d4dfdddb069f2120"}, - {file = "rpds_py-0.24.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c61a2cb0085c8783906b2f8b1f16a7e65777823c7f4d0a6aaffe26dc0d358dd9"}, - {file = "rpds_py-0.24.0-cp313-cp313-win32.whl", hash = "sha256:60d9b630c8025b9458a9d114e3af579a2c54bd32df601c4581bd054e85258143"}, - {file = "rpds_py-0.24.0-cp313-cp313-win_amd64.whl", hash = "sha256:6eea559077d29486c68218178ea946263b87f1c41ae7f996b1f30a983c476a5a"}, - {file = "rpds_py-0.24.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:d09dc82af2d3c17e7dd17120b202a79b578d79f2b5424bda209d9966efeed114"}, - {file = "rpds_py-0.24.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5fc13b44de6419d1e7a7e592a4885b323fbc2f46e1f22151e3a8ed3b8b920405"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c347a20d79cedc0a7bd51c4d4b7dbc613ca4e65a756b5c3e57ec84bd43505b47"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20f2712bd1cc26a3cc16c5a1bfee9ed1abc33d4cdf1aabd297fe0eb724df4272"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad911555286884be1e427ef0dc0ba3929e6821cbeca2194b13dc415a462c7fd"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0aeb3329c1721c43c58cae274d7d2ca85c1690d89485d9c63a006cb79a85771a"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a0f156e9509cee987283abd2296ec816225145a13ed0391df8f71bf1d789e2d"}, - {file = "rpds_py-0.24.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aa6800adc8204ce898c8a424303969b7aa6a5e4ad2789c13f8648739830323b7"}, - {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a18fc371e900a21d7392517c6f60fe859e802547309e94313cd8181ad9db004d"}, - {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:9168764133fd919f8dcca2ead66de0105f4ef5659cbb4fa044f7014bed9a1797"}, - {file = "rpds_py-0.24.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5f6e3cec44ba05ee5cbdebe92d052f69b63ae792e7d05f1020ac5e964394080c"}, - {file = "rpds_py-0.24.0-cp313-cp313t-win32.whl", hash = "sha256:8ebc7e65ca4b111d928b669713865f021b7773350eeac4a31d3e70144297baba"}, - {file = "rpds_py-0.24.0-cp313-cp313t-win_amd64.whl", hash = "sha256:675269d407a257b8c00a6b58205b72eec8231656506c56fd429d924ca00bb350"}, - {file = "rpds_py-0.24.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a36b452abbf29f68527cf52e181fced56685731c86b52e852053e38d8b60bc8d"}, - {file = "rpds_py-0.24.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b3b397eefecec8e8e39fa65c630ef70a24b09141a6f9fc17b3c3a50bed6b50e"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cdabcd3beb2a6dca7027007473d8ef1c3b053347c76f685f5f060a00327b8b65"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5db385bacd0c43f24be92b60c857cf760b7f10d8234f4bd4be67b5b20a7c0b6b"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8097b3422d020ff1c44effc40ae58e67d93e60d540a65649d2cdaf9466030791"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493fe54318bed7d124ce272fc36adbf59d46729659b2c792e87c3b95649cdee9"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8aa362811ccdc1f8dadcc916c6d47e554169ab79559319ae9fae7d7752d0d60c"}, - {file = "rpds_py-0.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d8f9a6e7fd5434817526815f09ea27f2746c4a51ee11bb3439065f5fc754db58"}, - {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8205ee14463248d3349131bb8099efe15cd3ce83b8ef3ace63c7e976998e7124"}, - {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:921ae54f9ecba3b6325df425cf72c074cd469dea843fb5743a26ca7fb2ccb149"}, - {file = "rpds_py-0.24.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32bab0a56eac685828e00cc2f5d1200c548f8bc11f2e44abf311d6b548ce2e45"}, - {file = "rpds_py-0.24.0-cp39-cp39-win32.whl", hash = "sha256:f5c0ed12926dec1dfe7d645333ea59cf93f4d07750986a586f511c0bc61fe103"}, - {file = "rpds_py-0.24.0-cp39-cp39-win_amd64.whl", hash = "sha256:afc6e35f344490faa8276b5f2f7cbf71f88bc2cda4328e00553bd451728c571f"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:619ca56a5468f933d940e1bf431c6f4e13bef8e688698b067ae68eb4f9b30e3a"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b28e5122829181de1898c2c97f81c0b3246d49f585f22743a1246420bb8d399"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e5ab32cf9eb3647450bc74eb201b27c185d3857276162c101c0f8c6374e098"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:208b3a70a98cf3710e97cabdc308a51cd4f28aa6e7bb11de3d56cd8b74bab98d"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbc4362e06f950c62cad3d4abf1191021b2ffaf0b31ac230fbf0526453eee75e"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ebea2821cdb5f9fef44933617be76185b80150632736f3d76e54829ab4a3b4d1"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9a4df06c35465ef4d81799999bba810c68d29972bf1c31db61bfdb81dd9d5bb"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d3aa13bdf38630da298f2e0d77aca967b200b8cc1473ea05248f6c5e9c9bdb44"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:041f00419e1da7a03c46042453598479f45be3d787eb837af382bfc169c0db33"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:d8754d872a5dfc3c5bf9c0e059e8107451364a30d9fd50f1f1a85c4fb9481164"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:896c41007931217a343eff197c34513c154267636c8056fb409eafd494c3dcdc"}, - {file = "rpds_py-0.24.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:92558d37d872e808944c3c96d0423b8604879a3d1c86fdad508d7ed91ea547d5"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f9e0057a509e096e47c87f753136c9b10d7a91842d8042c2ee6866899a717c0d"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6e109a454412ab82979c5b1b3aee0604eca4bbf9a02693bb9df027af2bfa91a"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc1c892b1ec1f8cbd5da8de287577b455e388d9c328ad592eabbdcb6fc93bee5"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c39438c55983d48f4bb3487734d040e22dad200dab22c41e331cee145e7a50d"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d7e8ce990ae17dda686f7e82fd41a055c668e13ddcf058e7fb5e9da20b57793"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ea7f4174d2e4194289cb0c4e172d83e79a6404297ff95f2875cf9ac9bced8ba"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb2954155bb8f63bb19d56d80e5e5320b61d71084617ed89efedb861a684baea"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04f2b712a2206e13800a8136b07aaedc23af3facab84918e7aa89e4be0260032"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:eda5c1e2a715a4cbbca2d6d304988460942551e4e5e3b7457b50943cd741626d"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:9abc80fe8c1f87218db116016de575a7998ab1629078c90840e8d11ab423ee25"}, - {file = "rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6a727fd083009bc83eb83d6950f0c32b3c94c8b80a9b667c87f4bd1274ca30ba"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e0f3ef95795efcd3b2ec3fe0a5bcfb5dadf5e3996ea2117427e524d4fbf309c6"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:2c13777ecdbbba2077670285dd1fe50828c8742f6a4119dbef6f83ea13ad10fb"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79e8d804c2ccd618417e96720ad5cd076a86fa3f8cb310ea386a3e6229bae7d1"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd822f019ccccd75c832deb7aa040bb02d70a92eb15a2f16c7987b7ad4ee8d83"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0047638c3aa0dbcd0ab99ed1e549bbf0e142c9ecc173b6492868432d8989a046"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a5b66d1b201cc71bc3081bc2f1fc36b0c1f268b773e03bbc39066651b9e18391"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbcbb6db5582ea33ce46a5d20a5793134b5365110d84df4e30b9d37c6fd40ad3"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:63981feca3f110ed132fd217bf7768ee8ed738a55549883628ee3da75bb9cb78"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:3a55fc10fdcbf1a4bd3c018eea422c52cf08700cf99c28b5cb10fe97ab77a0d3"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c30ff468163a48535ee7e9bf21bd14c7a81147c0e58a36c1078289a8ca7af0bd"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:369d9c6d4c714e36d4a03957b4783217a3ccd1e222cdd67d464a3a479fc17796"}, - {file = "rpds_py-0.24.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:24795c099453e3721fda5d8ddd45f5dfcc8e5a547ce7b8e9da06fecc3832e26f"}, - {file = "rpds_py-0.24.0.tar.gz", hash = "sha256:772cc1b2cd963e7e17e6cc55fe0371fb9c704d63e44cacec7b9b7f523b78919e"}, +groups = ["main"] +markers = "extra == \"dev\"" +files = [ + {file = "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"}, + {file = "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec"}, + {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00"}, + {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf"}, + {file = "rpds_py-0.22.3-cp310-cp310-win32.whl", hash = "sha256:9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652"}, + {file = "rpds_py-0.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f"}, + {file = "rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1"}, + {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74"}, + {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a"}, + {file = "rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64"}, + {file = "rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e"}, + {file = "rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15"}, + {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61"}, + {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7"}, + {file = "rpds_py-0.22.3-cp312-cp312-win32.whl", hash = "sha256:593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627"}, + {file = "rpds_py-0.22.3-cp312-cp312-win_amd64.whl", hash = "sha256:d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84"}, + {file = "rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518"}, + {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16"}, + {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f"}, + {file = "rpds_py-0.22.3-cp313-cp313-win32.whl", hash = "sha256:fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de"}, + {file = "rpds_py-0.22.3-cp313-cp313-win_amd64.whl", hash = "sha256:c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3"}, + {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b"}, + {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win32.whl", hash = "sha256:69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730"}, + {file = "rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:378753b4a4de2a7b34063d6f95ae81bfa7b15f2c1a04a9518e8644e81807ebea"}, + {file = "rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3445e07bf2e8ecfeef6ef67ac83de670358abf2996916039b16a218e3d95e97e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b2513ba235829860b13faa931f3b6846548021846ac808455301c23a101689d"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eaf16ae9ae519a0e237a0f528fd9f0197b9bb70f40263ee57ae53c2b8d48aeb3"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:583f6a1993ca3369e0f80ba99d796d8e6b1a3a2a442dd4e1a79e652116413091"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4617e1915a539a0d9a9567795023de41a87106522ff83fbfaf1f6baf8e85437e"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c150c7a61ed4a4f4955a96626574e9baf1adf772c2fb61ef6a5027e52803543"}, + {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fa4331c200c2521512595253f5bb70858b90f750d39b8cbfd67465f8d1b596d"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:214b7a953d73b5e87f0ebece4a32a5bd83c60a3ecc9d4ec8f1dca968a2d91e99"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f47ad3d5f3258bd7058d2d506852217865afefe6153a36eb4b6928758041d831"}, + {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f276b245347e6e36526cbd4a266a417796fc531ddf391e43574cf6466c492520"}, + {file = "rpds_py-0.22.3-cp39-cp39-win32.whl", hash = "sha256:bbb232860e3d03d544bc03ac57855cd82ddf19c7a07651a7c0fdb95e9efea8b9"}, + {file = "rpds_py-0.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfbc454a2880389dbb9b5b398e50d439e2e58669160f27b60e5eca11f68ae17c"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe"}, + {file = "rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb47271f60660803ad11f4c61b42242b8c1312a31c98c578f79ef9387bbde21c"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:70fb28128acbfd264eda9bf47015537ba3fe86e40d046eb2963d75024be4d055"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44d61b4b7d0c2c9ac019c314e52d7cbda0ae31078aabd0f22e583af3e0d79723"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f0e260eaf54380380ac3808aa4ebe2d8ca28b9087cf411649f96bad6900c728"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b25bc607423935079e05619d7de556c91fb6adeae9d5f80868dde3468657994b"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb6116dfb8d1925cbdb52595560584db42a7f664617a1f7d7f6e32f138cdf37d"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a63cbdd98acef6570c62b92a1e43266f9e8b21e699c363c0fef13bd530799c11"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b8f60e1b739a74bab7e01fcbe3dddd4657ec685caa04681df9d562ef15b625f"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2e8b55d8517a2fda8d95cb45d62a5a8bbf9dd0ad39c5b25c8833efea07b880ca"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2de29005e11637e7a2361fa151f780ff8eb2543a0da1413bb951e9f14b699ef3"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:666ecce376999bf619756a24ce15bb14c5bfaf04bf00abc7e663ce17c3f34fe7"}, + {file = "rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5246b14ca64a8675e0a7161f7af68fe3e910e6b90542b4bfb5439ba752191df6"}, + {file = "rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d"}, ] [[package]] @@ -4442,6 +4636,7 @@ version = "4.9" description = "Pure-Python RSA implementation" optional = false python-versions = ">=3.6,<4" +groups = ["main"] files = [ {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, @@ -4452,46 +4647,49 @@ pyasn1 = ">=0.1.3" [[package]] name = "ruff" -version = "0.11.5" +version = "0.8.1" description = "An extremely fast Python linter and code formatter, written in Rust." optional = false python-versions = ">=3.7" -files = [ - {file = "ruff-0.11.5-py3-none-linux_armv6l.whl", hash = "sha256:2561294e108eb648e50f210671cc56aee590fb6167b594144401532138c66c7b"}, - {file = "ruff-0.11.5-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ac12884b9e005c12d0bd121f56ccf8033e1614f736f766c118ad60780882a077"}, - {file = "ruff-0.11.5-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4bfd80a6ec559a5eeb96c33f832418bf0fb96752de0539905cf7b0cc1d31d779"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0947c0a1afa75dcb5db4b34b070ec2bccee869d40e6cc8ab25aca11a7d527794"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ad871ff74b5ec9caa66cb725b85d4ef89b53f8170f47c3406e32ef040400b038"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e6cf918390cfe46d240732d4d72fa6e18e528ca1f60e318a10835cf2fa3dc19f"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:56145ee1478582f61c08f21076dc59153310d606ad663acc00ea3ab5b2125f82"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e5f66f8f1e8c9fc594cbd66fbc5f246a8d91f916cb9667e80208663ec3728304"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80b4df4d335a80315ab9afc81ed1cff62be112bd165e162b5eed8ac55bfc8470"}, - {file = "ruff-0.11.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3068befab73620b8a0cc2431bd46b3cd619bc17d6f7695a3e1bb166b652c382a"}, - {file = "ruff-0.11.5-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:f5da2e710a9641828e09aa98b92c9ebbc60518fdf3921241326ca3e8f8e55b8b"}, - {file = "ruff-0.11.5-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:ef39f19cb8ec98cbc762344921e216f3857a06c47412030374fffd413fb8fd3a"}, - {file = "ruff-0.11.5-py3-none-musllinux_1_2_i686.whl", hash = "sha256:b2a7cedf47244f431fd11aa5a7e2806dda2e0c365873bda7834e8f7d785ae159"}, - {file = "ruff-0.11.5-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:81be52e7519f3d1a0beadcf8e974715b2dfc808ae8ec729ecfc79bddf8dbb783"}, - {file = "ruff-0.11.5-py3-none-win32.whl", hash = "sha256:e268da7b40f56e3eca571508a7e567e794f9bfcc0f412c4b607931d3af9c4afe"}, - {file = "ruff-0.11.5-py3-none-win_amd64.whl", hash = "sha256:6c6dc38af3cfe2863213ea25b6dc616d679205732dc0fb673356c2d69608f800"}, - {file = "ruff-0.11.5-py3-none-win_arm64.whl", hash = "sha256:67e241b4314f4eacf14a601d586026a962f4002a475aa702c69980a38087aa4e"}, - {file = "ruff-0.11.5.tar.gz", hash = "sha256:cae2e2439cb88853e421901ec040a758960b576126dab520fa08e9de431d1bef"}, +groups = ["main"] +markers = "extra == \"dev\"" +files = [ + {file = "ruff-0.8.1-py3-none-linux_armv6l.whl", hash = "sha256:fae0805bd514066f20309f6742f6ee7904a773eb9e6c17c45d6b1600ca65c9b5"}, + {file = "ruff-0.8.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b8a4f7385c2285c30f34b200ca5511fcc865f17578383db154e098150ce0a087"}, + {file = "ruff-0.8.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:cd054486da0c53e41e0086e1730eb77d1f698154f910e0cd9e0d64274979a209"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2029b8c22da147c50ae577e621a5bfbc5d1fed75d86af53643d7a7aee1d23871"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2666520828dee7dfc7e47ee4ea0d928f40de72056d929a7c5292d95071d881d1"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:333c57013ef8c97a53892aa56042831c372e0bb1785ab7026187b7abd0135ad5"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:288326162804f34088ac007139488dcb43de590a5ccfec3166396530b58fb89d"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b12c39b9448632284561cbf4191aa1b005882acbc81900ffa9f9f471c8ff7e26"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:364e6674450cbac8e998f7b30639040c99d81dfb5bbc6dfad69bc7a8f916b3d1"}, + {file = "ruff-0.8.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b22346f845fec132aa39cd29acb94451d030c10874408dbf776af3aaeb53284c"}, + {file = "ruff-0.8.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b2f2f7a7e7648a2bfe6ead4e0a16745db956da0e3a231ad443d2a66a105c04fa"}, + {file = "ruff-0.8.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:adf314fc458374c25c5c4a4a9270c3e8a6a807b1bec018cfa2813d6546215540"}, + {file = "ruff-0.8.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:a885d68342a231b5ba4d30b8c6e1b1ee3a65cf37e3d29b3c74069cdf1ee1e3c9"}, + {file = "ruff-0.8.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:d2c16e3508c8cc73e96aa5127d0df8913d2290098f776416a4b157657bee44c5"}, + {file = "ruff-0.8.1-py3-none-win32.whl", hash = "sha256:93335cd7c0eaedb44882d75a7acb7df4b77cd7cd0d2255c93b28791716e81790"}, + {file = "ruff-0.8.1-py3-none-win_amd64.whl", hash = "sha256:2954cdbe8dfd8ab359d4a30cd971b589d335a44d444b6ca2cb3d1da21b75e4b6"}, + {file = "ruff-0.8.1-py3-none-win_arm64.whl", hash = "sha256:55873cc1a473e5ac129d15eccb3c008c096b94809d693fc7053f588b67822737"}, + {file = "ruff-0.8.1.tar.gz", hash = "sha256:3583db9a6450364ed5ca3f3b4225958b24f78178908d5c4bc0f46251ccca898f"}, ] [[package]] name = "s3fs" -version = "2025.3.2" +version = "2024.10.0" description = "Convenient Filesystem interface over S3" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "s3fs-2025.3.2-py3-none-any.whl", hash = "sha256:81eae3f37b4b04bcc08845d7bcc607c6ca45878813ef7e6a28d77b2688417130"}, - {file = "s3fs-2025.3.2.tar.gz", hash = "sha256:6798f896ec76dd3bfd8beb89f0bb7c5263cb2760e038bae0978505cd172a307c"}, + {file = "s3fs-2024.10.0-py3-none-any.whl", hash = "sha256:7a2025d60d5b1a6025726b3a5e292a8e5aa713abc3b16fd1f81735181f7bb282"}, + {file = "s3fs-2024.10.0.tar.gz", hash = "sha256:58b8c3650f8b99dbedf361543da3533aac8707035a104db5d80b094617ad4a3f"}, ] [package.dependencies] aiobotocore = ">=2.5.4,<3.0.0" aiohttp = "<4.0.0a0 || >4.0.0a0,<4.0.0a1 || >4.0.0a1" -fsspec = "==2025.3.2.*" +fsspec = "==2024.10.0.*" [package.extras] awscli = ["aiobotocore[awscli] (>=2.5.4,<3.0.0)"] @@ -4503,6 +4701,7 @@ version = "1.3.13" description = "A Python package for exploring and analysing genetic variation data." optional = false python-versions = ">=3.10" +groups = ["main"] files = [ {file = "scikit_allel-1.3.13-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eb786c909c34b682205c3cacba9b4f0866e658917f30e2f97e1051d9fb2e7ccc"}, {file = "scikit_allel-1.3.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1853068621208fc2d5537e9a5b292aef2d5e8c975fa35f8f810b3174e0226160"}, @@ -4532,66 +4731,54 @@ full = ["h5py", "hmmlearn", "matplotlib", "nose", "numexpr", "pandas", "protopun [[package]] name = "scipy" -version = "1.15.2" +version = "1.14.1" description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.10" -files = [ - {file = "scipy-1.15.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a2ec871edaa863e8213ea5df811cd600734f6400b4af272e1c011e69401218e9"}, - {file = "scipy-1.15.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6f223753c6ea76983af380787611ae1291e3ceb23917393079dcc746ba60cfb5"}, - {file = "scipy-1.15.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:ecf797d2d798cf7c838c6d98321061eb3e72a74710e6c40540f0e8087e3b499e"}, - {file = "scipy-1.15.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:9b18aa747da280664642997e65aab1dd19d0c3d17068a04b3fe34e2559196cb9"}, - {file = "scipy-1.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87994da02e73549dfecaed9e09a4f9d58a045a053865679aeb8d6d43747d4df3"}, - {file = "scipy-1.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69ea6e56d00977f355c0f84eba69877b6df084516c602d93a33812aa04d90a3d"}, - {file = "scipy-1.15.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:888307125ea0c4466287191e5606a2c910963405ce9671448ff9c81c53f85f58"}, - {file = "scipy-1.15.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9412f5e408b397ff5641080ed1e798623dbe1ec0d78e72c9eca8992976fa65aa"}, - {file = "scipy-1.15.2-cp310-cp310-win_amd64.whl", hash = "sha256:b5e025e903b4f166ea03b109bb241355b9c42c279ea694d8864d033727205e65"}, - {file = "scipy-1.15.2-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:92233b2df6938147be6fa8824b8136f29a18f016ecde986666be5f4d686a91a4"}, - {file = "scipy-1.15.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:62ca1ff3eb513e09ed17a5736929429189adf16d2d740f44e53270cc800ecff1"}, - {file = "scipy-1.15.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4c6676490ad76d1c2894d77f976144b41bd1a4052107902238047fb6a473e971"}, - {file = "scipy-1.15.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a8bf5cb4a25046ac61d38f8d3c3426ec11ebc350246a4642f2f315fe95bda655"}, - {file = "scipy-1.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a8e34cf4c188b6dd004654f88586d78f95639e48a25dfae9c5e34a6dc34547e"}, - {file = "scipy-1.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28a0d2c2075946346e4408b211240764759e0fabaeb08d871639b5f3b1aca8a0"}, - {file = "scipy-1.15.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:42dabaaa798e987c425ed76062794e93a243be8f0f20fff6e7a89f4d61cb3d40"}, - {file = "scipy-1.15.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6f5e296ec63c5da6ba6fa0343ea73fd51b8b3e1a300b0a8cae3ed4b1122c7462"}, - {file = "scipy-1.15.2-cp311-cp311-win_amd64.whl", hash = "sha256:597a0c7008b21c035831c39927406c6181bcf8f60a73f36219b69d010aa04737"}, - {file = "scipy-1.15.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c4697a10da8f8765bb7c83e24a470da5797e37041edfd77fd95ba3811a47c4fd"}, - {file = "scipy-1.15.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:869269b767d5ee7ea6991ed7e22b3ca1f22de73ab9a49c44bad338b725603301"}, - {file = "scipy-1.15.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bad78d580270a4d32470563ea86c6590b465cb98f83d760ff5b0990cb5518a93"}, - {file = "scipy-1.15.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:b09ae80010f52efddb15551025f9016c910296cf70adbf03ce2a8704f3a5ad20"}, - {file = "scipy-1.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a6fd6eac1ce74a9f77a7fc724080d507c5812d61e72bd5e4c489b042455865e"}, - {file = "scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b871df1fe1a3ba85d90e22742b93584f8d2b8e6124f8372ab15c71b73e428b8"}, - {file = "scipy-1.15.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:03205d57a28e18dfd39f0377d5002725bf1f19a46f444108c29bdb246b6c8a11"}, - {file = "scipy-1.15.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:601881dfb761311045b03114c5fe718a12634e5608c3b403737ae463c9885d53"}, - {file = "scipy-1.15.2-cp312-cp312-win_amd64.whl", hash = "sha256:e7c68b6a43259ba0aab737237876e5c2c549a031ddb7abc28c7b47f22e202ded"}, - {file = "scipy-1.15.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01edfac9f0798ad6b46d9c4c9ca0e0ad23dbf0b1eb70e96adb9fa7f525eff0bf"}, - {file = "scipy-1.15.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:08b57a9336b8e79b305a143c3655cc5bdbe6d5ece3378578888d2afbb51c4e37"}, - {file = "scipy-1.15.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:54c462098484e7466362a9f1672d20888f724911a74c22ae35b61f9c5919183d"}, - {file = "scipy-1.15.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:cf72ff559a53a6a6d77bd8eefd12a17995ffa44ad86c77a5df96f533d4e6c6bb"}, - {file = "scipy-1.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de9d1416b3d9e7df9923ab23cd2fe714244af10b763975bea9e4f2e81cebd27"}, - {file = "scipy-1.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb530e4794fc8ea76a4a21ccb67dea33e5e0e60f07fc38a49e821e1eae3b71a0"}, - {file = "scipy-1.15.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5ea7ed46d437fc52350b028b1d44e002646e28f3e8ddc714011aaf87330f2f32"}, - {file = "scipy-1.15.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11e7ad32cf184b74380f43d3c0a706f49358b904fa7d5345f16ddf993609184d"}, - {file = "scipy-1.15.2-cp313-cp313-win_amd64.whl", hash = "sha256:a5080a79dfb9b78b768cebf3c9dcbc7b665c5875793569f48bf0e2b1d7f68f6f"}, - {file = "scipy-1.15.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:447ce30cee6a9d5d1379087c9e474628dab3db4a67484be1b7dc3196bfb2fac9"}, - {file = "scipy-1.15.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:c90ebe8aaa4397eaefa8455a8182b164a6cc1d59ad53f79943f266d99f68687f"}, - {file = "scipy-1.15.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:def751dd08243934c884a3221156d63e15234a3155cf25978b0a668409d45eb6"}, - {file = "scipy-1.15.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:302093e7dfb120e55515936cb55618ee0b895f8bcaf18ff81eca086c17bd80af"}, - {file = "scipy-1.15.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd5b77413e1855351cdde594eca99c1f4a588c2d63711388b6a1f1c01f62274"}, - {file = "scipy-1.15.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d0194c37037707b2afa7a2f2a924cf7bac3dc292d51b6a925e5fcb89bc5c776"}, - {file = "scipy-1.15.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:bae43364d600fdc3ac327db99659dcb79e6e7ecd279a75fe1266669d9a652828"}, - {file = "scipy-1.15.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f031846580d9acccd0044efd1a90e6f4df3a6e12b4b6bd694a7bc03a89892b28"}, - {file = "scipy-1.15.2-cp313-cp313t-win_amd64.whl", hash = "sha256:fe8a9eb875d430d81755472c5ba75e84acc980e4a8f6204d402849234d3017db"}, - {file = "scipy-1.15.2.tar.gz", hash = "sha256:cd58a314d92838f7e6f755c8a2167ead4f27e1fd5c1251fd54289569ef3495ec"}, +groups = ["main"] +files = [ + {file = "scipy-1.14.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:b28d2ca4add7ac16ae8bb6632a3c86e4b9e4d52d3e34267f6e1b0c1f8d87e389"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0d2821003174de06b69e58cef2316a6622b60ee613121199cb2852a873f8cf3"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8bddf15838ba768bb5f5083c1ea012d64c9a444e16192762bd858f1e126196d0"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:97c5dddd5932bd2a1a31c927ba5e1463a53b87ca96b5c9bdf5dfd6096e27efc3"}, + {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ff0a7e01e422c15739ecd64432743cf7aae2b03f3084288f399affcefe5222d"}, + {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e32dced201274bf96899e6491d9ba3e9a5f6b336708656466ad0522d8528f69"}, + {file = "scipy-1.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8426251ad1e4ad903a4514712d2fa8fdd5382c978010d1c6f5f37ef286a713ad"}, + {file = "scipy-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:a49f6ed96f83966f576b33a44257d869756df6cf1ef4934f59dd58b25e0327e5"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:2da0469a4ef0ecd3693761acbdc20f2fdeafb69e6819cc081308cc978153c675"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c0ee987efa6737242745f347835da2cc5bb9f1b42996a4d97d5c7ff7928cb6f2"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3a1b111fac6baec1c1d92f27e76511c9e7218f1695d61b59e05e0fe04dc59617"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8475230e55549ab3f207bff11ebfc91c805dc3463ef62eda3ccf593254524ce8"}, + {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:278266012eb69f4a720827bdd2dc54b2271c97d84255b2faaa8f161a158c3b37"}, + {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2"}, + {file = "scipy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b05d43735bb2f07d689f56f7b474788a13ed8adc484a85aa65c0fd931cf9ccd2"}, + {file = "scipy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:716e389b694c4bb564b4fc0c51bc84d381735e0d39d3f26ec1af2556ec6aad94"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:631f07b3734d34aced009aaf6fedfd0eb3498a97e581c3b1e5f14a04164a456d"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:af29a935803cc707ab2ed7791c44288a682f9c8107bc00f0eccc4f92c08d6e07"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2843f2d527d9eebec9a43e6b406fb7266f3af25a751aa91d62ff416f54170bc5"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:eb58ca0abd96911932f688528977858681a59d61a7ce908ffd355957f7025cfc"}, + {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac8812c1d2aab7131a79ba62933a2a76f582d5dbbc695192453dae67ad6310"}, + {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9ea80f2e65bdaa0b7627fb00cbeb2daf163caa015e59b7516395fe3bd1e066"}, + {file = "scipy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:edaf02b82cd7639db00dbff629995ef185c8df4c3ffa71a5562a595765a06ce1"}, + {file = "scipy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2ff38e22128e6c03ff73b6bb0f85f897d2362f8c052e3b8ad00532198fbdae3f"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1729560c906963fc8389f6aac023739ff3983e727b1a4d87696b7bf108316a79"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:4079b90df244709e675cdc8b93bfd8a395d59af40b72e339c2287c91860deb8e"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0cf28db0f24a38b2a0ca33a85a54852586e43cf6fd876365c86e0657cfe7d73"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0c2f95de3b04e26f5f3ad5bb05e74ba7f68b837133a4492414b3afd79dfe540e"}, + {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b99722ea48b7ea25e8e015e8341ae74624f72e5f21fc2abd45f3a93266de4c5d"}, + {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5149e3fd2d686e42144a093b206aef01932a0059c2a33ddfa67f5f035bdfe13e"}, + {file = "scipy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4f5a7c49323533f9103d4dacf4e4f07078f360743dec7f7596949149efeec06"}, + {file = "scipy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:baff393942b550823bfce952bb62270ee17504d02a1801d7fd0719534dfb9c84"}, + {file = "scipy-1.14.1.tar.gz", hash = "sha256:5a275584e726026a5699459aa72f828a610821006228e841b94275c4a7c08417"}, ] [package.dependencies] -numpy = ">=1.23.5,<2.5" +numpy = ">=1.23.5,<2.3" [package.extras] dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"] -doc = ["intersphinx_registry", "jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.16.5)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<8.0.0)", "sphinx-copybutton", "sphinx-design (>=0.4.0)"] -test = ["Cython", "array-api-strict (>=2.0,<2.1.1)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] +doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<=7.3.7)", "sphinx-design (>=0.4.0)"] +test = ["Cython", "array-api-strict (>=2.0)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja ; sys_platform != \"emscripten\"", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] [[package]] name = "send2trash" @@ -4599,45 +4786,49 @@ version = "1.8.3" description = "Send file to trash natively under Mac OS X, Windows and Linux" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"}, {file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"}, ] [package.extras] -nativelib = ["pyobjc-framework-Cocoa", "pywin32"] -objc = ["pyobjc-framework-Cocoa"] -win32 = ["pywin32"] +nativelib = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\"", "pywin32 ; sys_platform == \"win32\""] +objc = ["pyobjc-framework-Cocoa ; sys_platform == \"darwin\""] +win32 = ["pywin32 ; sys_platform == \"win32\""] [[package]] name = "setuptools" -version = "78.1.0" +version = "75.6.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ - {file = "setuptools-78.1.0-py3-none-any.whl", hash = "sha256:3e386e96793c8702ae83d17b853fb93d3e09ef82ec62722e61da5cd22376dcd8"}, - {file = "setuptools-78.1.0.tar.gz", hash = "sha256:18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54"}, + {file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"}, + {file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.8.0)"] -core = ["importlib_metadata (>=6)", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.7.0) ; sys_platform != \"cygwin\""] +core = ["importlib_metadata (>=6) ; python_version < \"3.10\"", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1) ; python_version < \"3.11\"", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.7.2)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.14.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21) ; python_version >= \"3.9\" and sys_platform != \"cygwin\"", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf ; sys_platform != \"cygwin\"", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib_metadata (>=7.0.2) ; python_version < \"3.10\"", "jaraco.develop (>=7.21) ; sys_platform != \"cygwin\"", "mypy (>=1.12,<1.14)", "pytest-mypy"] [[package]] name = "six" -version = "1.17.0" +version = "1.16.0" description = "Python 2 and 3 compatibility utilities" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +groups = ["main"] files = [ - {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"}, - {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"}, + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, ] [[package]] @@ -4646,6 +4837,8 @@ version = "2.2.2" description = "A web-based viewer for Python profiler output" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "snakeviz-2.2.2-py3-none-any.whl", hash = "sha256:77e7b9c82f6152edc330040319b97612351cd9b48c706434c535c2df31d10ac5"}, {file = "snakeviz-2.2.2.tar.gz", hash = "sha256:08028c6f8e34a032ff14757a38424770abb8662fb2818985aeea0d9bc13a7d83"}, @@ -4660,6 +4853,8 @@ version = "1.3.1" description = "Sniff out which async library your code is running under" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, @@ -4671,6 +4866,8 @@ version = "2.2.0" description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, @@ -4682,6 +4879,7 @@ version = "2.4.0" description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -4693,6 +4891,8 @@ version = "2.6" description = "A modern CSS selector implementation for Beautiful Soup." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, @@ -4704,6 +4904,8 @@ version = "8.1.3" description = "Python documentation generator" optional = false python-versions = ">=3.10" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2"}, {file = "sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927"}, @@ -4739,6 +4941,8 @@ version = "0.6.1" description = "A sphinx extension for designing beautiful, view size responsive web components." optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinx_design-0.6.1-py3-none-any.whl", hash = "sha256:b11f37db1a802a183d61b159d9a202314d4d2fe29c163437001324fe2f19549c"}, {file = "sphinx_design-0.6.1.tar.gz", hash = "sha256:b44eea3719386d04d765c1a8257caca2b3e6f8421d7b3a5e742c0fd45f84e632"}, @@ -4764,6 +4968,8 @@ version = "2.0.0" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, @@ -4780,6 +4986,8 @@ version = "2.0.0" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, @@ -4796,6 +5004,8 @@ version = "2.1.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, @@ -4812,6 +5022,8 @@ version = "1.0.1" description = "A sphinx extension which renders display math in HTML via JavaScript" optional = false python-versions = ">=3.5" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, @@ -4826,6 +5038,8 @@ version = "2.0.0" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, @@ -4842,6 +5056,8 @@ version = "2.0.0" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, @@ -4858,6 +5074,7 @@ version = "0.6.3" description = "Extract data from python stack frames and tracebacks for informative displays" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, @@ -4877,6 +5094,7 @@ version = "0.14.4" description = "Statistical computations and models for Python" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "statsmodels-0.14.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7a62f1fc9086e4b7ee789a6f66b3c0fc82dd8de1edda1522d30901a0aa45e42b"}, {file = "statsmodels-0.14.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46ac7ddefac0c9b7b607eed1d47d11e26fe92a1bc1f4d9af48aeed4e21e87981"}, @@ -4919,26 +5137,44 @@ scipy = ">=1.8,<1.9.2 || >1.9.2" [package.extras] build = ["cython (>=3.0.10)"] -develop = ["colorama", "cython (>=3.0.10)", "cython (>=3.0.10,<4)", "flake8", "isort", "joblib", "matplotlib (>=3)", "pytest (>=7.3.0,<8)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty", "setuptools-scm[toml] (>=8.0,<9.0)"] +develop = ["colorama", "cython (>=3.0.10)", "cython (>=3.0.10,<4)", "flake8", "isort", "joblib", "matplotlib (>=3)", "pytest (>=7.3.0,<8)", "pytest-cov", "pytest-randomly", "pytest-xdist", "pywinpty ; os_name == \"nt\"", "setuptools-scm[toml] (>=8.0,<9.0)"] docs = ["ipykernel", "jupyter-client", "matplotlib", "nbconvert", "nbformat", "numpydoc", "pandas-datareader", "sphinx"] [[package]] name = "tblib" -version = "3.1.0" +version = "3.0.0" description = "Traceback serialization library." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "tblib-3.1.0-py3-none-any.whl", hash = "sha256:670bb4582578134b3d81a84afa1b016128b429f3d48e6cbbaecc9d15675e984e"}, - {file = "tblib-3.1.0.tar.gz", hash = "sha256:06404c2c9f07f66fee2d7d6ad43accc46f9c3361714d9b8426e7f47e595cd652"}, + {file = "tblib-3.0.0-py3-none-any.whl", hash = "sha256:80a6c77e59b55e83911e1e607c649836a69c103963c5f28a46cbeef44acf8129"}, + {file = "tblib-3.0.0.tar.gz", hash = "sha256:93622790a0a29e04f0346458face1e144dc4d32f493714c6c3dff82a4adb77e6"}, ] +[[package]] +name = "tenacity" +version = "9.0.0" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.8" +groups = ["main"] +files = [ + {file = "tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539"}, + {file = "tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b"}, +] + +[package.extras] +doc = ["reno", "sphinx"] +test = ["pytest", "tornado (>=4.5)", "typeguard"] + [[package]] name = "termcolor" version = "2.3.0" description = "ANSI color formatting for output in terminal" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ {file = "termcolor-2.3.0-py3-none-any.whl", hash = "sha256:3afb05607b89aed0ffe25202399ee0867ad4d3cb4180d98aaf8eefa6a5f7d475"}, {file = "termcolor-2.3.0.tar.gz", hash = "sha256:b5b08f68937f138fe92f6c089b99f1e2da0ae56c52b78bf7075fd95420fd9a5a"}, @@ -4953,6 +5189,8 @@ version = "0.18.1" description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"}, {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"}, @@ -4974,6 +5212,8 @@ version = "1.4.0" description = "A tiny CSS parser" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, @@ -4992,6 +5232,8 @@ version = "2.2.1" description = "A lil' TOML parser" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\" and python_version == \"3.10\"" files = [ {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, @@ -5033,6 +5275,7 @@ version = "1.0.0" description = "List processing tools and functional utilities" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "toolz-1.0.0-py3-none-any.whl", hash = "sha256:292c8f1c4e7516bf9086f8850935c799a874039c8bcf959d47b600e4c44a6236"}, {file = "toolz-1.0.0.tar.gz", hash = "sha256:2c86e3d9a04798ac556793bced838816296a2f085017664e4995cb40a1047a02"}, @@ -5044,6 +5287,7 @@ version = "6.4.2" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"}, {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"}, @@ -5064,6 +5308,7 @@ version = "4.67.1" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ {file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"}, {file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"}, @@ -5085,6 +5330,7 @@ version = "5.14.3" description = "Traitlets Python configuration system" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"}, {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"}, @@ -5100,6 +5346,7 @@ version = "0.2.1" description = "Scipy trait types" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "traittypes-0.2.1-py2.py3-none-any.whl", hash = "sha256:1340af133810b6eee1a2eb2e988f862b0d12b6c2d16f282aaf3207b782134c2e"}, {file = "traittypes-0.2.1.tar.gz", hash = "sha256:be6fa26294733e7489822ded4ae25da5b4824a8a7a0e0c2dccfde596e3489bd6"}, @@ -5113,64 +5360,71 @@ test = ["numpy", "pandas", "pytest", "xarray"] [[package]] name = "typeguard" -version = "4.4.2" +version = "4.4.1" description = "Run-time type checker for Python" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ - {file = "typeguard-4.4.2-py3-none-any.whl", hash = "sha256:77a78f11f09777aeae7fa08585f33b5f4ef0e7335af40005b0c422ed398ff48c"}, - {file = "typeguard-4.4.2.tar.gz", hash = "sha256:a6f1065813e32ef365bc3b3f503af8a96f9dd4e0033a02c28c4a4983de8c6c49"}, + {file = "typeguard-4.4.1-py3-none-any.whl", hash = "sha256:9324ec07a27ec67fc54a9c063020ca4c0ae6abad5e9f0f9804ca59aee68c6e21"}, + {file = "typeguard-4.4.1.tar.gz", hash = "sha256:0d22a89d00b453b47c49875f42b6601b961757541a2e1e0ef517b6e24213c21b"}, ] [package.dependencies] -typing_extensions = ">=4.10.0" +typing-extensions = ">=4.10.0" [package.extras] doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.3.0)"] -test = ["coverage[toml] (>=7)", "mypy (>=1.2.0)", "pytest (>=7)"] +test = ["coverage[toml] (>=7)", "mypy (>=1.2.0) ; platform_python_implementation != \"PyPy\"", "pytest (>=7)"] [[package]] name = "types-python-dateutil" -version = "2.9.0.20241206" +version = "2.9.0.20241003" description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53"}, - {file = "types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb"}, + {file = "types-python-dateutil-2.9.0.20241003.tar.gz", hash = "sha256:58cb85449b2a56d6684e41aeefb4c4280631246a0da1a719bdbe6f3fb0317446"}, + {file = "types_python_dateutil-2.9.0.20241003-py3-none-any.whl", hash = "sha256:250e1d8e80e7bbc3a6c99b907762711d1a1cdd00e978ad39cb5940f6f0a87f3d"}, ] [[package]] name = "types-pytz" -version = "2025.2.0.20250326" +version = "2024.2.0.20241003" description = "Typing stubs for pytz" optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "types_pytz-2025.2.0.20250326-py3-none-any.whl", hash = "sha256:3c397fd1b845cd2b3adc9398607764ced9e578a98a5d1fbb4a9bc9253edfb162"}, - {file = "types_pytz-2025.2.0.20250326.tar.gz", hash = "sha256:deda02de24f527066fc8d6a19e284ab3f3ae716a42b4adb6b40e75e408c08d36"}, + {file = "types-pytz-2024.2.0.20241003.tar.gz", hash = "sha256:575dc38f385a922a212bac00a7d6d2e16e141132a3c955078f4a4fd13ed6cb44"}, + {file = "types_pytz-2024.2.0.20241003-py3-none-any.whl", hash = "sha256:3e22df1336c0c6ad1d29163c8fda82736909eb977281cb823c57f8bae07118b7"}, ] [[package]] name = "typing-extensions" -version = "4.13.2" +version = "4.12.2" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "typing_extensions-4.13.2-py3-none-any.whl", hash = "sha256:a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c"}, - {file = "typing_extensions-4.13.2.tar.gz", hash = "sha256:e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef"}, + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] [[package]] name = "tzdata" -version = "2025.2" +version = "2024.2" description = "Provider of IANA time zone data" optional = false python-versions = ">=2" +groups = ["main"] files = [ - {file = "tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8"}, - {file = "tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9"}, + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, ] [[package]] @@ -5179,6 +5433,8 @@ version = "1.3.0" description = "RFC 6570 URI Template Processor" optional = false python-versions = ">=3.7" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, @@ -5189,30 +5445,33 @@ dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake [[package]] name = "urllib3" -version = "2.4.0" +version = "2.2.3" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=3.9" +python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813"}, - {file = "urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466"}, + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, ] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +brotli = ["brotli (>=1.0.9) ; platform_python_implementation == \"CPython\"", "brotlicffi (>=0.8.0) ; platform_python_implementation != \"CPython\""] h2 = ["h2 (>=4,<5)"] socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] zstd = ["zstandard (>=0.18.0)"] [[package]] name = "virtualenv" -version = "20.30.0" +version = "20.28.0" description = "Virtual Python Environment builder" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ - {file = "virtualenv-20.30.0-py3-none-any.whl", hash = "sha256:e34302959180fca3af42d1800df014b35019490b119eba981af27f2fa486e5d6"}, - {file = "virtualenv-20.30.0.tar.gz", hash = "sha256:800863162bcaa5450a6e4d721049730e7f2dae07720e0902b0e4040bd6f9ada8"}, + {file = "virtualenv-20.28.0-py3-none-any.whl", hash = "sha256:23eae1b4516ecd610481eda647f3a7c09aea295055337331bb4e6892ecce47b0"}, + {file = "virtualenv-20.28.0.tar.gz", hash = "sha256:2c9c3262bb8e7b87ea801d715fae4495e6032450c71d2309be9550e7364049aa"}, ] [package.dependencies] @@ -5222,7 +5481,7 @@ platformdirs = ">=3.9.1,<5" [package.extras] docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] -test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8) ; platform_python_implementation == \"PyPy\" or platform_python_implementation == \"CPython\" and sys_platform == \"win32\" and python_version >= \"3.13\"", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10) ; platform_python_implementation == \"CPython\""] [[package]] name = "wcwidth" @@ -5230,6 +5489,7 @@ version = "0.2.13" description = "Measures the displayed width of unicode strings in a terminal" optional = false python-versions = "*" +groups = ["main"] files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -5241,6 +5501,8 @@ version = "24.11.1" description = "A library for working with the color formats defined by HTML and CSS." optional = false python-versions = ">=3.9" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, @@ -5252,6 +5514,8 @@ version = "0.5.1" description = "Character encoding aliases for legacy web content" optional = false python-versions = "*" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, @@ -5263,6 +5527,8 @@ version = "1.8.0" description = "WebSocket client for Python with low level API options" optional = false python-versions = ">=3.8" +groups = ["main"] +markers = "extra == \"dev\"" files = [ {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, @@ -5279,6 +5545,7 @@ version = "3.0.6" description = "The comprehensive WSGI web application library." optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "werkzeug-3.0.6-py3-none-any.whl", hash = "sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17"}, {file = "werkzeug-3.0.6.tar.gz", hash = "sha256:a8dd59d4de28ca70471a34cba79bed5f7ef2e036a76b3ab0835474246eb41f8d"}, @@ -5292,112 +5559,101 @@ watchdog = ["watchdog (>=2.3)"] [[package]] name = "widgetsnbextension" -version = "4.0.14" +version = "4.0.13" description = "Jupyter interactive widgets for Jupyter Notebook" optional = false python-versions = ">=3.7" +groups = ["main"] files = [ - {file = "widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575"}, - {file = "widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af"}, + {file = "widgetsnbextension-4.0.13-py3-none-any.whl", hash = "sha256:74b2692e8500525cc38c2b877236ba51d34541e6385eeed5aec15a70f88a6c71"}, + {file = "widgetsnbextension-4.0.13.tar.gz", hash = "sha256:ffcb67bc9febd10234a362795f643927f4e0c05d9342c727b65d2384f8feacb6"}, ] [[package]] name = "wrapt" -version = "1.17.2" +version = "1.17.0" description = "Module for decorators, wrappers and monkey patching." optional = false python-versions = ">=3.8" -files = [ - {file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3d57c572081fed831ad2d26fd430d565b76aa277ed1d30ff4d40670b1c0dd984"}, - {file = "wrapt-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5e251054542ae57ac7f3fba5d10bfff615b6c2fb09abeb37d2f1463f841ae22"}, - {file = "wrapt-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80dd7db6a7cb57ffbc279c4394246414ec99537ae81ffd702443335a61dbf3a7"}, - {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a6e821770cf99cc586d33833b2ff32faebdbe886bd6322395606cf55153246c"}, - {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b60fb58b90c6d63779cb0c0c54eeb38941bae3ecf7a73c764c52c88c2dcb9d72"}, - {file = "wrapt-1.17.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b870b5df5b71d8c3359d21be8f0d6c485fa0ebdb6477dda51a1ea54a9b558061"}, - {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4011d137b9955791f9084749cba9a367c68d50ab8d11d64c50ba1688c9b457f2"}, - {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1473400e5b2733e58b396a04eb7f35f541e1fb976d0c0724d0223dd607e0f74c"}, - {file = "wrapt-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3cedbfa9c940fdad3e6e941db7138e26ce8aad38ab5fe9dcfadfed9db7a54e62"}, - {file = "wrapt-1.17.2-cp310-cp310-win32.whl", hash = "sha256:582530701bff1dec6779efa00c516496968edd851fba224fbd86e46cc6b73563"}, - {file = "wrapt-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:58705da316756681ad3c9c73fd15499aa4d8c69f9fd38dc8a35e06c12468582f"}, - {file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58"}, - {file = "wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda"}, - {file = "wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438"}, - {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a"}, - {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000"}, - {file = "wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6"}, - {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b"}, - {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662"}, - {file = "wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72"}, - {file = "wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317"}, - {file = "wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3"}, - {file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925"}, - {file = "wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392"}, - {file = "wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40"}, - {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d"}, - {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b"}, - {file = "wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98"}, - {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82"}, - {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae"}, - {file = "wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9"}, - {file = "wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9"}, - {file = "wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991"}, - {file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6ed6ffac43aecfe6d86ec5b74b06a5be33d5bb9243d055141e8cabb12aa08125"}, - {file = "wrapt-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35621ae4c00e056adb0009f8e86e28eb4a41a4bfa8f9bfa9fca7d343fe94f998"}, - {file = "wrapt-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a604bf7a053f8362d27eb9fefd2097f82600b856d5abe996d623babd067b1ab5"}, - {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cbabee4f083b6b4cd282f5b817a867cf0b1028c54d445b7ec7cfe6505057cf8"}, - {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49703ce2ddc220df165bd2962f8e03b84c89fee2d65e1c24a7defff6f988f4d6"}, - {file = "wrapt-1.17.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8112e52c5822fc4253f3901b676c55ddf288614dc7011634e2719718eaa187dc"}, - {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:9fee687dce376205d9a494e9c121e27183b2a3df18037f89d69bd7b35bcf59e2"}, - {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:18983c537e04d11cf027fbb60a1e8dfd5190e2b60cc27bc0808e653e7b218d1b"}, - {file = "wrapt-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:703919b1633412ab54bcf920ab388735832fdcb9f9a00ae49387f0fe67dad504"}, - {file = "wrapt-1.17.2-cp313-cp313-win32.whl", hash = "sha256:abbb9e76177c35d4e8568e58650aa6926040d6a9f6f03435b7a522bf1c487f9a"}, - {file = "wrapt-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:69606d7bb691b50a4240ce6b22ebb319c1cfb164e5f6569835058196e0f3a845"}, - {file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:4a721d3c943dae44f8e243b380cb645a709ba5bd35d3ad27bc2ed947e9c68192"}, - {file = "wrapt-1.17.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:766d8bbefcb9e00c3ac3b000d9acc51f1b399513f44d77dfe0eb026ad7c9a19b"}, - {file = "wrapt-1.17.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e496a8ce2c256da1eb98bd15803a79bee00fc351f5dfb9ea82594a3f058309e0"}, - {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d615e4fe22f4ad3528448c193b218e077656ca9ccb22ce2cb20db730f8d306"}, - {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a5aaeff38654462bc4b09023918b7f21790efb807f54c000a39d41d69cf552cb"}, - {file = "wrapt-1.17.2-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a7d15bbd2bc99e92e39f49a04653062ee6085c0e18b3b7512a4f2fe91f2d681"}, - {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:e3890b508a23299083e065f435a492b5435eba6e304a7114d2f919d400888cc6"}, - {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8c8b293cd65ad716d13d8dd3624e42e5a19cc2a2f1acc74b30c2c13f15cb61a6"}, - {file = "wrapt-1.17.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4c82b8785d98cdd9fed4cac84d765d234ed3251bd6afe34cb7ac523cb93e8b4f"}, - {file = "wrapt-1.17.2-cp313-cp313t-win32.whl", hash = "sha256:13e6afb7fe71fe7485a4550a8844cc9ffbe263c0f1a1eea569bc7091d4898555"}, - {file = "wrapt-1.17.2-cp313-cp313t-win_amd64.whl", hash = "sha256:eaf675418ed6b3b31c7a989fd007fa7c3be66ce14e5c3b27336383604c9da85c"}, - {file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5c803c401ea1c1c18de70a06a6f79fcc9c5acfc79133e9869e730ad7f8ad8ef9"}, - {file = "wrapt-1.17.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f917c1180fdb8623c2b75a99192f4025e412597c50b2ac870f156de8fb101119"}, - {file = "wrapt-1.17.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ecc840861360ba9d176d413a5489b9a0aff6d6303d7e733e2c4623cfa26904a6"}, - {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb87745b2e6dc56361bfde481d5a378dc314b252a98d7dd19a651a3fa58f24a9"}, - {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58455b79ec2661c3600e65c0a716955adc2410f7383755d537584b0de41b1d8a"}, - {file = "wrapt-1.17.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4e42a40a5e164cbfdb7b386c966a588b1047558a990981ace551ed7e12ca9c2"}, - {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:91bd7d1773e64019f9288b7a5101f3ae50d3d8e6b1de7edee9c2ccc1d32f0c0a"}, - {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:bb90fb8bda722a1b9d48ac1e6c38f923ea757b3baf8ebd0c82e09c5c1a0e7a04"}, - {file = "wrapt-1.17.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:08e7ce672e35efa54c5024936e559469436f8b8096253404faeb54d2a878416f"}, - {file = "wrapt-1.17.2-cp38-cp38-win32.whl", hash = "sha256:410a92fefd2e0e10d26210e1dfb4a876ddaf8439ef60d6434f21ef8d87efc5b7"}, - {file = "wrapt-1.17.2-cp38-cp38-win_amd64.whl", hash = "sha256:95c658736ec15602da0ed73f312d410117723914a5c91a14ee4cdd72f1d790b3"}, - {file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:99039fa9e6306880572915728d7f6c24a86ec57b0a83f6b2491e1d8ab0235b9a"}, - {file = "wrapt-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2696993ee1eebd20b8e4ee4356483c4cb696066ddc24bd70bcbb80fa56ff9061"}, - {file = "wrapt-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:612dff5db80beef9e649c6d803a8d50c409082f1fedc9dbcdfde2983b2025b82"}, - {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62c2caa1585c82b3f7a7ab56afef7b3602021d6da34fbc1cf234ff139fed3cd9"}, - {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c958bcfd59bacc2d0249dcfe575e71da54f9dcf4a8bdf89c4cb9a68a1170d73f"}, - {file = "wrapt-1.17.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc78a84e2dfbc27afe4b2bd7c80c8db9bca75cc5b85df52bfe634596a1da846b"}, - {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ba0f0eb61ef00ea10e00eb53a9129501f52385c44853dbd6c4ad3f403603083f"}, - {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1e1fe0e6ab7775fd842bc39e86f6dcfc4507ab0ffe206093e76d61cde37225c8"}, - {file = "wrapt-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c86563182421896d73858e08e1db93afdd2b947a70064b813d515d66549e15f9"}, - {file = "wrapt-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f393cda562f79828f38a819f4788641ac7c4085f30f1ce1a68672baa686482bb"}, - {file = "wrapt-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:36ccae62f64235cf8ddb682073a60519426fdd4725524ae38874adf72b5f2aeb"}, - {file = "wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8"}, - {file = "wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3"}, +groups = ["main"] +files = [ + {file = "wrapt-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a0c23b8319848426f305f9cb0c98a6e32ee68a36264f45948ccf8e7d2b941f8"}, + {file = "wrapt-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ca5f060e205f72bec57faae5bd817a1560fcfc4af03f414b08fa29106b7e2d"}, + {file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e185ec6060e301a7e5f8461c86fb3640a7beb1a0f0208ffde7a65ec4074931df"}, + {file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb90765dd91aed05b53cd7a87bd7f5c188fcd95960914bae0d32c5e7f899719d"}, + {file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:879591c2b5ab0a7184258274c42a126b74a2c3d5a329df16d69f9cee07bba6ea"}, + {file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fce6fee67c318fdfb7f285c29a82d84782ae2579c0e1b385b7f36c6e8074fffb"}, + {file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0698d3a86f68abc894d537887b9bbf84d29bcfbc759e23f4644be27acf6da301"}, + {file = "wrapt-1.17.0-cp310-cp310-win32.whl", hash = "sha256:69d093792dc34a9c4c8a70e4973a3361c7a7578e9cd86961b2bbf38ca71e4e22"}, + {file = "wrapt-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f28b29dc158ca5d6ac396c8e0a2ef45c4e97bb7e65522bfc04c989e6fe814575"}, + {file = "wrapt-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74bf625b1b4caaa7bad51d9003f8b07a468a704e0644a700e936c357c17dd45a"}, + {file = "wrapt-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f2a28eb35cf99d5f5bd12f5dd44a0f41d206db226535b37b0c60e9da162c3ed"}, + {file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81b1289e99cf4bad07c23393ab447e5e96db0ab50974a280f7954b071d41b489"}, + {file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2939cd4a2a52ca32bc0b359015718472d7f6de870760342e7ba295be9ebaf9"}, + {file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a9653131bda68a1f029c52157fd81e11f07d485df55410401f745007bd6d339"}, + {file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4e4b4385363de9052dac1a67bfb535c376f3d19c238b5f36bddc95efae15e12d"}, + {file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bdf62d25234290db1837875d4dceb2151e4ea7f9fff2ed41c0fde23ed542eb5b"}, + {file = "wrapt-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5d8fd17635b262448ab8f99230fe4dac991af1dabdbb92f7a70a6afac8a7e346"}, + {file = "wrapt-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:92a3d214d5e53cb1db8b015f30d544bc9d3f7179a05feb8f16df713cecc2620a"}, + {file = "wrapt-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:89fc28495896097622c3fc238915c79365dd0ede02f9a82ce436b13bd0ab7569"}, + {file = "wrapt-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:875d240fdbdbe9e11f9831901fb8719da0bd4e6131f83aa9f69b96d18fae7504"}, + {file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ed16d95fd142e9c72b6c10b06514ad30e846a0d0917ab406186541fe68b451"}, + {file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b956061b8db634120b58f668592a772e87e2e78bc1f6a906cfcaa0cc7991c1"}, + {file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:daba396199399ccabafbfc509037ac635a6bc18510ad1add8fd16d4739cdd106"}, + {file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d63f4d446e10ad19ed01188d6c1e1bb134cde8c18b0aa2acfd973d41fcc5ada"}, + {file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8a5e7cc39a45fc430af1aefc4d77ee6bad72c5bcdb1322cfde852c15192b8bd4"}, + {file = "wrapt-1.17.0-cp312-cp312-win32.whl", hash = "sha256:0a0a1a1ec28b641f2a3a2c35cbe86c00051c04fffcfcc577ffcdd707df3f8635"}, + {file = "wrapt-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:3c34f6896a01b84bab196f7119770fd8466c8ae3dfa73c59c0bb281e7b588ce7"}, + {file = "wrapt-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:714c12485aa52efbc0fc0ade1e9ab3a70343db82627f90f2ecbc898fdf0bb181"}, + {file = "wrapt-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da427d311782324a376cacb47c1a4adc43f99fd9d996ffc1b3e8529c4074d393"}, + {file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba1739fb38441a27a676f4de4123d3e858e494fac05868b7a281c0a383c098f4"}, + {file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e711fc1acc7468463bc084d1b68561e40d1eaa135d8c509a65dd534403d83d7b"}, + {file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:140ea00c87fafc42739bd74a94a5a9003f8e72c27c47cd4f61d8e05e6dec8721"}, + {file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:73a96fd11d2b2e77d623a7f26e004cc31f131a365add1ce1ce9a19e55a1eef90"}, + {file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0b48554952f0f387984da81ccfa73b62e52817a4386d070c75e4db7d43a28c4a"}, + {file = "wrapt-1.17.0-cp313-cp313-win32.whl", hash = "sha256:498fec8da10e3e62edd1e7368f4b24aa362ac0ad931e678332d1b209aec93045"}, + {file = "wrapt-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd136bb85f4568fffca995bd3c8d52080b1e5b225dbf1c2b17b66b4c5fa02838"}, + {file = "wrapt-1.17.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17fcf043d0b4724858f25b8826c36e08f9fb2e475410bece0ec44a22d533da9b"}, + {file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a557d97f12813dc5e18dad9fa765ae44ddd56a672bb5de4825527c847d6379"}, + {file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0229b247b0fc7dee0d36176cbb79dbaf2a9eb7ecc50ec3121f40ef443155fb1d"}, + {file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8425cfce27b8b20c9b89d77fb50e368d8306a90bf2b6eef2cdf5cd5083adf83f"}, + {file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9c900108df470060174108012de06d45f514aa4ec21a191e7ab42988ff42a86c"}, + {file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:4e547b447073fc0dbfcbff15154c1be8823d10dab4ad401bdb1575e3fdedff1b"}, + {file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:914f66f3b6fc7b915d46c1cc424bc2441841083de01b90f9e81109c9759e43ab"}, + {file = "wrapt-1.17.0-cp313-cp313t-win32.whl", hash = "sha256:a4192b45dff127c7d69b3bdfb4d3e47b64179a0b9900b6351859f3001397dabf"}, + {file = "wrapt-1.17.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4f643df3d4419ea3f856c5c3f40fec1d65ea2e89ec812c83f7767c8730f9827a"}, + {file = "wrapt-1.17.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:69c40d4655e078ede067a7095544bcec5a963566e17503e75a3a3e0fe2803b13"}, + {file = "wrapt-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f495b6754358979379f84534f8dd7a43ff8cff2558dcdea4a148a6e713a758f"}, + {file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:baa7ef4e0886a6f482e00d1d5bcd37c201b383f1d314643dfb0367169f94f04c"}, + {file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fc931382e56627ec4acb01e09ce66e5c03c384ca52606111cee50d931a342d"}, + {file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8f8909cdb9f1b237786c09a810e24ee5e15ef17019f7cecb207ce205b9b5fcce"}, + {file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ad47b095f0bdc5585bced35bd088cbfe4177236c7df9984b3cc46b391cc60627"}, + {file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:948a9bd0fb2c5120457b07e59c8d7210cbc8703243225dbd78f4dfc13c8d2d1f"}, + {file = "wrapt-1.17.0-cp38-cp38-win32.whl", hash = "sha256:5ae271862b2142f4bc687bdbfcc942e2473a89999a54231aa1c2c676e28f29ea"}, + {file = "wrapt-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:f335579a1b485c834849e9075191c9898e0731af45705c2ebf70e0cd5d58beed"}, + {file = "wrapt-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d751300b94e35b6016d4b1e7d0e7bbc3b5e1751e2405ef908316c2a9024008a1"}, + {file = "wrapt-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7264cbb4a18dc4acfd73b63e4bcfec9c9802614572025bdd44d0721983fc1d9c"}, + {file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33539c6f5b96cf0b1105a0ff4cf5db9332e773bb521cc804a90e58dc49b10578"}, + {file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c30970bdee1cad6a8da2044febd824ef6dc4cc0b19e39af3085c763fdec7de33"}, + {file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bc7f729a72b16ee21795a943f85c6244971724819819a41ddbaeb691b2dd85ad"}, + {file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:6ff02a91c4fc9b6a94e1c9c20f62ea06a7e375f42fe57587f004d1078ac86ca9"}, + {file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dfb7cff84e72e7bf975b06b4989477873dcf160b2fd89959c629535df53d4e0"}, + {file = "wrapt-1.17.0-cp39-cp39-win32.whl", hash = "sha256:2399408ac33ffd5b200480ee858baa58d77dd30e0dd0cab6a8a9547135f30a88"}, + {file = "wrapt-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:4f763a29ee6a20c529496a20a7bcb16a73de27f5da6a843249c7047daf135977"}, + {file = "wrapt-1.17.0-py3-none-any.whl", hash = "sha256:d2c63b93548eda58abf5188e505ffed0229bf675f7c3090f8e36ad55b8cbc371"}, + {file = "wrapt-1.17.0.tar.gz", hash = "sha256:16187aa2317c731170a88ef35e8937ae0f533c402872c1ee5e6d079fcf320801"}, ] [[package]] name = "xarray" -version = "2025.3.1" +version = "2024.11.0" description = "N-D labeled arrays and datasets in Python" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ - {file = "xarray-2025.3.1-py3-none-any.whl", hash = "sha256:3404e313930c226db70a945377441ea3c957225d8ba2d429e764c099bb91a546"}, - {file = "xarray-2025.3.1.tar.gz", hash = "sha256:0252c96a73528b29d1ed7f0ab28d928d2ec00ad809e47369803b184dece1e447"}, + {file = "xarray-2024.11.0-py3-none-any.whl", hash = "sha256:6ee94f63ddcbdd0cf3909d1177f78cdac756640279c0e32ae36819a89cdaba37"}, + {file = "xarray-2024.11.0.tar.gz", hash = "sha256:1ccace44573ddb862e210ad3ec204210654d2c750bec11bbe7d842dfc298591f"}, ] [package.dependencies] @@ -5408,123 +5664,120 @@ pandas = ">=2.1" [package.extras] accel = ["bottleneck", "flox", "numba (>=0.54)", "numbagg", "opt_einsum", "scipy"] complete = ["xarray[accel,etc,io,parallel,viz]"] +dev = ["hypothesis", "jinja2", "mypy", "pre-commit", "pytest", "pytest-cov", "pytest-env", "pytest-timeout", "pytest-xdist", "ruff", "sphinx", "sphinx_autosummary_accessors", "xarray[complete]"] etc = ["sparse"] -io = ["cftime", "fsspec", "h5netcdf", "netCDF4", "pooch", "pydap", "scipy", "zarr"] +io = ["cftime", "fsspec", "h5netcdf", "netCDF4", "pooch", "pydap ; python_version < \"3.10\"", "scipy", "zarr"] parallel = ["dask[complete]"] -types = ["pandas-stubs", "types-PyYAML", "types-Pygments", "types-colorama", "types-decorator", "types-defusedxml", "types-docutils", "types-networkx", "types-openpyxl", "types-pexpect", "types-psutil", "types-pycurl", "types-python-dateutil", "types-pytz", "types-setuptools"] viz = ["cartopy", "matplotlib", "nc-time-axis", "seaborn"] [[package]] name = "xyzservices" -version = "2025.1.0" +version = "2024.9.0" description = "Source of XYZ tiles providers" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ - {file = "xyzservices-2025.1.0-py3-none-any.whl", hash = "sha256:fa599956c5ab32dad1689960b3bb08fdcdbe0252cc82d84fc60ae415dc648907"}, - {file = "xyzservices-2025.1.0.tar.gz", hash = "sha256:5cdbb0907c20be1be066c6e2dc69c645842d1113a4e83e642065604a21f254ba"}, + {file = "xyzservices-2024.9.0-py3-none-any.whl", hash = "sha256:776ae82b78d6e5ca63dd6a94abb054df8130887a4a308473b54a6bd364de8644"}, + {file = "xyzservices-2024.9.0.tar.gz", hash = "sha256:68fb8353c9dbba4f1ff6c0f2e5e4e596bb9e1db7f94f4f7dfbcb26e25aa66fde"}, ] [[package]] name = "yarl" -version = "1.19.0" +version = "1.18.3" description = "Yet another URL library" optional = false python-versions = ">=3.9" -files = [ - {file = "yarl-1.19.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0bae32f8ebd35c04d6528cedb4a26b8bf25339d3616b04613b97347f919b76d3"}, - {file = "yarl-1.19.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8015a076daf77823e7ebdcba474156587391dab4e70c732822960368c01251e6"}, - {file = "yarl-1.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9973ac95327f5d699eb620286c39365990b240031672b5c436a4cd00539596c5"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd4b5fbd7b9dde785cfeb486b8cca211a0b138d4f3a7da27db89a25b3c482e5c"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:75460740005de5a912b19f657848aef419387426a40f581b1dc9fac0eb9addb5"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:57abd66ca913f2cfbb51eb3dbbbac3648f1f6983f614a4446e0802e241441d2a"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46ade37911b7c99ce28a959147cb28bffbd14cea9e7dd91021e06a8d2359a5aa"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8346ec72ada749a6b5d82bff7be72578eab056ad7ec38c04f668a685abde6af0"}, - {file = "yarl-1.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e4cb14a6ee5b6649ccf1c6d648b4da9220e8277d4d4380593c03cc08d8fe937"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:66fc1c2926a73a2fb46e4b92e3a6c03904d9bc3a0b65e01cb7d2b84146a8bd3b"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:5a70201dd1e0a4304849b6445a9891d7210604c27e67da59091d5412bc19e51c"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e4807aab1bdeab6ae6f296be46337a260ae4b1f3a8c2fcd373e236b4b2b46efd"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ae584afe81a1de4c1bb06672481050f0d001cad13163e3c019477409f638f9b7"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:30eaf4459df6e91f21b2999d1ee18f891bcd51e3cbe1de301b4858c84385895b"}, - {file = "yarl-1.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0e617d45d03c8dec0dfce6f51f3e1b8a31aa81aaf4a4d1442fdb232bcf0c6d8c"}, - {file = "yarl-1.19.0-cp310-cp310-win32.whl", hash = "sha256:32ba32d0fa23893fd8ea8d05bdb05de6eb19d7f2106787024fd969f4ba5466cb"}, - {file = "yarl-1.19.0-cp310-cp310-win_amd64.whl", hash = "sha256:545575ecfcd465891b51546c2bcafdde0acd2c62c2097d8d71902050b20e4922"}, - {file = "yarl-1.19.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:163ff326680de5f6d4966954cf9e3fe1bf980f5fee2255e46e89b8cf0f3418b5"}, - {file = "yarl-1.19.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a626c4d9cca298d1be8625cff4b17004a9066330ac82d132bbda64a4c17c18d3"}, - {file = "yarl-1.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:961c3e401ea7f13d02b8bb7cb0c709152a632a6e14cdc8119e9c6ee5596cd45d"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a39d7b807ab58e633ed760f80195cbd145b58ba265436af35f9080f1810dfe64"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c4228978fb59c6b10f60124ba8e311c26151e176df364e996f3f8ff8b93971b5"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ba536b17ecf3c74a94239ec1137a3ad3caea8c0e4deb8c8d2ffe847d870a8c5"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a251e00e445d2e9df7b827c9843c0b87f58a3254aaa3f162fb610747491fe00f"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9b92431d8b4d4ca5ccbfdbac95b05a3a6cd70cd73aa62f32f9627acfde7549c"}, - {file = "yarl-1.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec2f56edaf476f70b5831bbd59700b53d9dd011b1f77cd4846b5ab5c5eafdb3f"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:acf9b92c4245ac8b59bc7ec66a38d3dcb8d1f97fac934672529562bb824ecadb"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:57711f1465c06fee8825b95c0b83e82991e6d9425f9a042c3c19070a70ac92bf"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:528e86f5b1de0ad8dd758ddef4e0ed24f5d946d4a1cef80ffb2d4fca4e10f122"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:3b77173663e075d9e5a57e09d711e9da2f3266be729ecca0b8ae78190990d260"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d8717924cf0a825b62b1a96fc7d28aab7f55a81bf5338b8ef41d7a76ab9223e9"}, - {file = "yarl-1.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0df9f0221a78d858793f40cbea3915c29f969c11366646a92ca47e080a14f881"}, - {file = "yarl-1.19.0-cp311-cp311-win32.whl", hash = "sha256:8b3ade62678ee2c7c10dcd6be19045135e9badad53108f7d2ed14896ee396045"}, - {file = "yarl-1.19.0-cp311-cp311-win_amd64.whl", hash = "sha256:0626ee31edb23ac36bdffe607231de2cca055ad3a5e2dc5da587ef8bc6a321bc"}, - {file = "yarl-1.19.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:7b687c334da3ff8eab848c9620c47a253d005e78335e9ce0d6868ed7e8fd170b"}, - {file = "yarl-1.19.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b0fe766febcf523a2930b819c87bb92407ae1368662c1bc267234e79b20ff894"}, - {file = "yarl-1.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:742ceffd3c7beeb2b20d47cdb92c513eef83c9ef88c46829f88d5b06be6734ee"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2af682a1e97437382ee0791eacbf540318bd487a942e068e7e0a6c571fadbbd3"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:63702f1a098d0eaaea755e9c9d63172be1acb9e2d4aeb28b187092bcc9ca2d17"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3560dcba3c71ae7382975dc1e912ee76e50b4cd7c34b454ed620d55464f11876"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:68972df6a0cc47c8abaf77525a76ee5c5f6ea9bbdb79b9565b3234ded3c5e675"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5684e7ff93ea74e47542232bd132f608df4d449f8968fde6b05aaf9e08a140f9"}, - {file = "yarl-1.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8182ad422bfacdebd4759ce3adc6055c0c79d4740aea1104e05652a81cd868c6"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:aee5b90a5a9b71ac57400a7bdd0feaa27c51e8f961decc8d412e720a004a1791"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:8c0b2371858d5a814b08542d5d548adb03ff2d7ab32f23160e54e92250961a72"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:cd430c2b7df4ae92498da09e9b12cad5bdbb140d22d138f9e507de1aa3edfea3"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a93208282c0ccdf73065fd76c6c129bd428dba5ff65d338ae7d2ab27169861a0"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:b8179280cdeb4c36eb18d6534a328f9d40da60d2b96ac4a295c5f93e2799e9d9"}, - {file = "yarl-1.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eda3c2b42dc0c389b7cfda2c4df81c12eeb552019e0de28bde8f913fc3d1fcf3"}, - {file = "yarl-1.19.0-cp312-cp312-win32.whl", hash = "sha256:57f3fed859af367b9ca316ecc05ce79ce327d6466342734305aa5cc380e4d8be"}, - {file = "yarl-1.19.0-cp312-cp312-win_amd64.whl", hash = "sha256:5507c1f7dd3d41251b67eecba331c8b2157cfd324849879bebf74676ce76aff7"}, - {file = "yarl-1.19.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:59281b9ed27bc410e0793833bcbe7fc149739d56ffa071d1e0fe70536a4f7b61"}, - {file = "yarl-1.19.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d27a6482ad5e05e8bafd47bf42866f8a1c0c3345abcb48d4511b3c29ecc197dc"}, - {file = "yarl-1.19.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7a8e19fd5a6fdf19a91f2409665c7a089ffe7b9b5394ab33c0eec04cbecdd01f"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cda34ab19099c3a1685ad48fe45172536610c312b993310b5f1ca3eb83453b36"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7908a25d33f94852b479910f9cae6cdb9e2a509894e8d5f416c8342c0253c397"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e66c14d162bac94973e767b24de5d7e6c5153f7305a64ff4fcba701210bcd638"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c03607bf932aa4cfae371e2dc9ca8b76faf031f106dac6a6ff1458418140c165"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9931343d1c1f4e77421687b6b94bbebd8a15a64ab8279adf6fbb047eff47e536"}, - {file = "yarl-1.19.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:262087a8a0d73e1d169d45c2baf968126f93c97cf403e1af23a7d5455d52721f"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:70f384921c24e703d249a6ccdabeb57dd6312b568b504c69e428a8dd3e8e68ca"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:756b9ea5292a2c180d1fe782a377bc4159b3cfefaca7e41b5b0a00328ef62fa9"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cbeb9c145d534c240a63b6ecc8a8dd451faeb67b3dc61d729ec197bb93e29497"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:087ae8f8319848c18e0d114d0f56131a9c017f29200ab1413b0137ad7c83e2ae"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362f5480ba527b6c26ff58cff1f229afe8b7fdd54ee5ffac2ab827c1a75fc71c"}, - {file = "yarl-1.19.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f408d4b4315e814e5c3668094e33d885f13c7809cbe831cbdc5b1bb8c7a448f4"}, - {file = "yarl-1.19.0-cp313-cp313-win32.whl", hash = "sha256:24e4c367ad69988a2283dd45ea88172561ca24b2326b9781e164eb46eea68345"}, - {file = "yarl-1.19.0-cp313-cp313-win_amd64.whl", hash = "sha256:0110f91c57ab43d1538dfa92d61c45e33b84df9257bd08fcfcda90cce931cbc9"}, - {file = "yarl-1.19.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:85ac908cd5a97bbd3048cca9f1bf37b932ea26c3885099444f34b0bf5d5e9fa6"}, - {file = "yarl-1.19.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6ba0931b559f1345df48a78521c31cfe356585670e8be22af84a33a39f7b9221"}, - {file = "yarl-1.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5bc503e1c1fee1b86bcb58db67c032957a52cae39fe8ddd95441f414ffbab83e"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d995122dcaf180fd4830a9aa425abddab7c0246107c21ecca2fa085611fa7ce9"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:217f69e60a14da4eed454a030ea8283f8fbd01a7d6d81e57efb865856822489b"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad67c8f13a4b79990082f72ef09c078a77de2b39899aabf3960a48069704973"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dff065a1a8ed051d7e641369ba1ad030d5a707afac54cf4ede7069b959898835"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ada882e26b16ee651ab6544ce956f2f4beaed38261238f67c2a96db748e17741"}, - {file = "yarl-1.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:67a56b1acc7093451ea2de0687aa3bd4e58d6b4ef6cbeeaad137b45203deaade"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e97d2f0a06b39e231e59ebab0e6eec45c7683b339e8262299ac952707bdf7688"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:a5288adb7c59d0f54e4ad58d86fb06d4b26e08a59ed06d00a1aac978c0e32884"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1efbf4d03e6eddf5da27752e0b67a8e70599053436e9344d0969532baa99df53"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:f228f42f29cc87db67020f7d71624102b2c837686e55317b16e1d3ef2747a993"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:c515f7dd60ca724e4c62b34aeaa603188964abed2eb66bb8e220f7f104d5a187"}, - {file = "yarl-1.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4815ec6d3d68a96557fa71bd36661b45ac773fb50e5cfa31a7e843edb098f060"}, - {file = "yarl-1.19.0-cp39-cp39-win32.whl", hash = "sha256:9fac2dd1c5ecb921359d9546bc23a6dcc18c6acd50c6d96f118188d68010f497"}, - {file = "yarl-1.19.0-cp39-cp39-win_amd64.whl", hash = "sha256:5864f539ce86b935053bfa18205fa08ce38e9a40ea4d51b19ce923345f0ed5db"}, - {file = "yarl-1.19.0-py3-none-any.whl", hash = "sha256:a727101eb27f66727576630d02985d8a065d09cd0b5fcbe38a5793f71b2a97ef"}, - {file = "yarl-1.19.0.tar.gz", hash = "sha256:01e02bb80ae0dbed44273c304095295106e1d9470460e773268a27d11e594892"}, +groups = ["main"] +files = [ + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7df647e8edd71f000a5208fe6ff8c382a1de8edfbccdbbfe649d263de07d8c34"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c69697d3adff5aa4f874b19c0e4ed65180ceed6318ec856ebc423aa5850d84f7"}, + {file = "yarl-1.18.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:602d98f2c2d929f8e697ed274fbadc09902c4025c5a9963bf4e9edfc3ab6f7ed"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c654d5207c78e0bd6d749f6dae1dcbbfde3403ad3a4b11f3c5544d9906969dde"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5094d9206c64181d0f6e76ebd8fb2f8fe274950a63890ee9e0ebfd58bf9d787b"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35098b24e0327fc4ebdc8ffe336cee0a87a700c24ffed13161af80124b7dc8e5"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3236da9272872443f81fedc389bace88408f64f89f75d1bdb2256069a8730ccc"}, + {file = "yarl-1.18.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c08cc9b16f4f4bc522771d96734c7901e7ebef70c6c5c35dd0f10845270bcd"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80316a8bd5109320d38eef8833ccf5f89608c9107d02d2a7f985f98ed6876990"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c1e1cc06da1491e6734f0ea1e6294ce00792193c463350626571c287c9a704db"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fea09ca13323376a2fdfb353a5fa2e59f90cd18d7ca4eaa1fd31f0a8b4f91e62"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e3b9fd71836999aad54084906f8663dffcd2a7fb5cdafd6c37713b2e72be1760"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:757e81cae69244257d125ff31663249b3013b5dc0a8520d73694aed497fb195b"}, + {file = "yarl-1.18.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b1771de9944d875f1b98a745bc547e684b863abf8f8287da8466cf470ef52690"}, + {file = "yarl-1.18.3-cp310-cp310-win32.whl", hash = "sha256:8874027a53e3aea659a6d62751800cf6e63314c160fd607489ba5c2edd753cf6"}, + {file = "yarl-1.18.3-cp310-cp310-win_amd64.whl", hash = "sha256:93b2e109287f93db79210f86deb6b9bbb81ac32fc97236b16f7433db7fc437d8"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8503ad47387b8ebd39cbbbdf0bf113e17330ffd339ba1144074da24c545f0069"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02ddb6756f8f4517a2d5e99d8b2f272488e18dd0bfbc802f31c16c6c20f22193"}, + {file = "yarl-1.18.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a283dd2882ac98cc6318384f565bffc751ab564605959df4752d42483ad889"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d980e0325b6eddc81331d3f4551e2a333999fb176fd153e075c6d1c2530aa8a8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b643562c12680b01e17239be267bc306bbc6aac1f34f6444d1bded0c5ce438ca"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c017a3b6df3a1bd45b9fa49a0f54005e53fbcad16633870104b66fa1a30a29d8"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75674776d96d7b851b6498f17824ba17849d790a44d282929c42dbb77d4f17ae"}, + {file = "yarl-1.18.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccaa3a4b521b780a7e771cc336a2dba389a0861592bbce09a476190bb0c8b4b3"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2d06d3005e668744e11ed80812e61efd77d70bb7f03e33c1598c301eea20efbb"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:9d41beda9dc97ca9ab0b9888cb71f7539124bc05df02c0cff6e5acc5a19dcc6e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ba23302c0c61a9999784e73809427c9dbedd79f66a13d84ad1b1943802eaaf59"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6748dbf9bfa5ba1afcc7556b71cda0d7ce5f24768043a02a58846e4a443d808d"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0b0cad37311123211dc91eadcb322ef4d4a66008d3e1bdc404808992260e1a0e"}, + {file = "yarl-1.18.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fb2171a4486bb075316ee754c6d8382ea6eb8b399d4ec62fde2b591f879778a"}, + {file = "yarl-1.18.3-cp311-cp311-win32.whl", hash = "sha256:61b1a825a13bef4a5f10b1885245377d3cd0bf87cba068e1d9a88c2ae36880e1"}, + {file = "yarl-1.18.3-cp311-cp311-win_amd64.whl", hash = "sha256:b9d60031cf568c627d028239693fd718025719c02c9f55df0a53e587aab951b5"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1dd4bdd05407ced96fed3d7f25dbbf88d2ffb045a0db60dbc247f5b3c5c25d50"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7c33dd1931a95e5d9a772d0ac5e44cac8957eaf58e3c8da8c1414de7dd27c576"}, + {file = "yarl-1.18.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25b411eddcfd56a2f0cd6a384e9f4f7aa3efee14b188de13048c25b5e91f1640"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:436c4fc0a4d66b2badc6c5fc5ef4e47bb10e4fd9bf0c79524ac719a01f3607c2"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e35ef8683211db69ffe129a25d5634319a677570ab6b2eba4afa860f54eeaf75"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84b2deecba4a3f1a398df819151eb72d29bfeb3b69abb145a00ddc8d30094512"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e5a1fea0fd4f5bfa7440a47eff01d9822a65b4488f7cff83155a0f31a2ecba"}, + {file = "yarl-1.18.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0e883008013c0e4aef84dcfe2a0b172c4d23c2669412cf5b3371003941f72bb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5a3f356548e34a70b0172d8890006c37be92995f62d95a07b4a42e90fba54272"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ccd17349166b1bee6e529b4add61727d3f55edb7babbe4069b5764c9587a8cc6"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b958ddd075ddba5b09bb0be8a6d9906d2ce933aee81100db289badbeb966f54e"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d79f7d9aabd6011004e33b22bc13056a3e3fb54794d138af57f5ee9d9032cb"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4891ed92157e5430874dad17b15eb1fda57627710756c27422200c52d8a4e393"}, + {file = "yarl-1.18.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ce1af883b94304f493698b00d0f006d56aea98aeb49d75ec7d98cd4a777e9285"}, + {file = "yarl-1.18.3-cp312-cp312-win32.whl", hash = "sha256:f91c4803173928a25e1a55b943c81f55b8872f0018be83e3ad4938adffb77dd2"}, + {file = "yarl-1.18.3-cp312-cp312-win_amd64.whl", hash = "sha256:7e2ee16578af3b52ac2f334c3b1f92262f47e02cc6193c598502bd46f5cd1477"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90adb47ad432332d4f0bc28f83a5963f426ce9a1a8809f5e584e704b82685dcb"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:913829534200eb0f789d45349e55203a091f45c37a2674678744ae52fae23efa"}, + {file = "yarl-1.18.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef9f7768395923c3039055c14334ba4d926f3baf7b776c923c93d80195624782"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a19f62ff30117e706ebc9090b8ecc79aeb77d0b1f5ec10d2d27a12bc9f66d0"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e17c9361d46a4d5addf777c6dd5eab0715a7684c2f11b88c67ac37edfba6c482"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a74a13a4c857a84a845505fd2d68e54826a2cd01935a96efb1e9d86c728e186"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41f7ce59d6ee7741af71d82020346af364949314ed3d87553763a2df1829cc58"}, + {file = "yarl-1.18.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f52a265001d830bc425f82ca9eabda94a64a4d753b07d623a9f2863fde532b53"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:82123d0c954dc58db301f5021a01854a85bf1f3bb7d12ae0c01afc414a882ca2"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:2ec9bbba33b2d00999af4631a3397d1fd78290c48e2a3e52d8dd72db3a067ac8"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fbd6748e8ab9b41171bb95c6142faf068f5ef1511935a0aa07025438dd9a9bc1"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:877d209b6aebeb5b16c42cbb377f5f94d9e556626b1bfff66d7b0d115be88d0a"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b464c4ab4bfcb41e3bfd3f1c26600d038376c2de3297760dfe064d2cb7ea8e10"}, + {file = "yarl-1.18.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8d39d351e7faf01483cc7ff7c0213c412e38e5a340238826be7e0e4da450fdc8"}, + {file = "yarl-1.18.3-cp313-cp313-win32.whl", hash = "sha256:61ee62ead9b68b9123ec24bc866cbef297dd266175d53296e2db5e7f797f902d"}, + {file = "yarl-1.18.3-cp313-cp313-win_amd64.whl", hash = "sha256:578e281c393af575879990861823ef19d66e2b1d0098414855dd367e234f5b3c"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:61e5e68cb65ac8f547f6b5ef933f510134a6bf31bb178be428994b0cb46c2a04"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fe57328fbc1bfd0bd0514470ac692630f3901c0ee39052ae47acd1d90a436719"}, + {file = "yarl-1.18.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a440a2a624683108a1b454705ecd7afc1c3438a08e890a1513d468671d90a04e"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09c7907c8548bcd6ab860e5f513e727c53b4a714f459b084f6580b49fa1b9cee"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4f6450109834af88cb4cc5ecddfc5380ebb9c228695afc11915a0bf82116789"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9ca04806f3be0ac6d558fffc2fdf8fcef767e0489d2684a21912cc4ed0cd1b8"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77a6e85b90a7641d2e07184df5557132a337f136250caafc9ccaa4a2a998ca2c"}, + {file = "yarl-1.18.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6333c5a377c8e2f5fae35e7b8f145c617b02c939d04110c76f29ee3676b5f9a5"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0b3c92fa08759dbf12b3a59579a4096ba9af8dd344d9a813fc7f5070d86bbab1"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:4ac515b860c36becb81bb84b667466885096b5fc85596948548b667da3bf9f24"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:045b8482ce9483ada4f3f23b3774f4e1bf4f23a2d5c912ed5170f68efb053318"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:a4bb030cf46a434ec0225bddbebd4b89e6471814ca851abb8696170adb163985"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:54d6921f07555713b9300bee9c50fb46e57e2e639027089b1d795ecd9f7fa910"}, + {file = "yarl-1.18.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1d407181cfa6e70077df3377938c08012d18893f9f20e92f7d2f314a437c30b1"}, + {file = "yarl-1.18.3-cp39-cp39-win32.whl", hash = "sha256:ac36703a585e0929b032fbaab0707b75dc12703766d0b53486eabd5139ebadd5"}, + {file = "yarl-1.18.3-cp39-cp39-win_amd64.whl", hash = "sha256:ba87babd629f8af77f557b61e49e7c7cac36f22f871156b91e10a6e9d4f829e9"}, + {file = "yarl-1.18.3-py3-none-any.whl", hash = "sha256:b57f4f58099328dfb26c6a771d09fb20dbbae81d20cfb66141251ea063bd101b"}, + {file = "yarl-1.18.3.tar.gz", hash = "sha256:ac1801c45cbf77b6c99242eeff4fffb5e4e73a800b5c4ad4fc0be5def634d2e1"}, ] [package.dependencies] idna = ">=2.0" multidict = ">=4.0" -propcache = ">=0.2.1" +propcache = ">=0.2.0" [[package]] name = "yaspin" @@ -5532,6 +5785,7 @@ version = "3.1.0" description = "Yet Another Terminal Spinner" optional = false python-versions = "<4.0,>=3.9" +groups = ["main"] files = [ {file = "yaspin-3.1.0-py3-none-any.whl", hash = "sha256:5e3d4dfb547d942cae6565718123f1ecfa93e745b7e51871ad2bbae839e71b73"}, {file = "yaspin-3.1.0.tar.gz", hash = "sha256:7b97c7e257ec598f98cef9878e038bfa619ceb54ac31d61d8ead2b3128f8d7c7"}, @@ -5546,6 +5800,7 @@ version = "2.18.3" description = "An implementation of chunked, compressed, N-dimensional arrays for Python" optional = false python-versions = ">=3.10" +groups = ["main"] files = [ {file = "zarr-2.18.3-py3-none-any.whl", hash = "sha256:b1f7dfd2496f436745cdd4c7bcf8d3b4bc1dceef5fdd0d589c87130d842496dd"}, {file = "zarr-2.18.3.tar.gz", hash = "sha256:2580d8cb6dd84621771a10d31c4d777dca8a27706a1a89b29f42d2d37e2df5ce"}, @@ -5567,6 +5822,7 @@ version = "3.0.0" description = "Mutable mapping tools" optional = false python-versions = ">=3.8" +groups = ["main"] files = [ {file = "zict-3.0.0-py2.py3-none-any.whl", hash = "sha256:5796e36bd0e0cc8cf0fbc1ace6a68912611c1dbd74750a3f3026b9b9d6a327ae"}, {file = "zict-3.0.0.tar.gz", hash = "sha256:e321e263b6a97aafc0790c3cfb3c04656b7066e6738c37fffcca95d803c9fba5"}, @@ -5578,23 +5834,24 @@ version = "3.21.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.9" +groups = ["main"] files = [ {file = "zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931"}, {file = "zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\""] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] enabler = ["pytest-enabler (>=2.2)"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +test = ["big-O", "importlib-resources ; python_version < \"3.9\"", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] type = ["pytest-mypy"] [extras] dev = ["jupyterlab", "memory-profiler", "mypy", "notebook", "pandas-stubs", "pre-commit", "pydata-sphinx-theme", "pytest", "pytest-cases", "pytest-cov", "pytest-xdist", "ruff", "snakeviz", "sphinx", "sphinx_design"] [metadata] -lock-version = "2.0" +lock-version = "2.1" python-versions = ">=3.10,<3.13" -content-hash = "b1fb6dbca8e75ab7da9028a4d6ff87d1cabe31f69690245cb915554844deb6a9" +content-hash = "e2dc0c54942b1e2261de9c28a0c3750350ff2bb6aa20700a71ec8fba81e1382a" diff --git a/pyproject.toml b/pyproject.toml index 8e908a1d8..b79742199 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,6 +92,7 @@ sphinx = "*" pydata-sphinx-theme = "*" sphinx_design = "*" pandas-stubs = "*" +ipykernel = "^6.29.5" [tool.poetry.extras] dev = ["pytest", "pytest-xdist", "pytest-cases", "pytest-cov", "notebook", "jupyterlab", "pre-commit", "ruff", "snakeviz", "mypy", "memory-profiler", "sphinx", "pydata-sphinx-theme", "sphinx_design", "pandas-stubs"] From 6320047f044d1adda73ddecea35cfe9ccbbf0ce3 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 17 Jun 2025 22:52:24 -0500 Subject: [PATCH 13/41] reintroduce cohorts, aims, qc to metadata --- malariagen_data/adir1.py | 2 ++ malariagen_data/anoph/sample_metadata.py | 32 ++++++++++++------------ malariagen_data/anopheles.py | 13 +++++++++- poetry.lock | 2 +- 4 files changed, 31 insertions(+), 18 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index c24562426..92709eeb4 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -79,6 +79,7 @@ class Adir1(AnophelesDataResource): def __init__( self, url=None, + public_url=GCS_DEFAULT_PUBLIC_URL, bokeh_output_notebook=True, results_cache=None, log=sys.stdout, @@ -94,6 +95,7 @@ def __init__( ): super().__init__( url=url, + public_url=public_url, config_path=CONFIG_PATH, cohorts_analysis=cohorts_analysis, aim_analysis=None, diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index 399998524..fd98270c4 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -621,28 +621,28 @@ def sample_metadata( # Commented this out as it breaks some things - will fix # Merge with the sequence QC metadata. - # df_sequence_qc = self.sequence_qc_metadata( - # sample_sets=prepped_sample_sets - # ) + df_sequence_qc = self.sequence_qc_metadata( + sample_sets=prepped_sample_sets + ) # Note: merging can change column dtypes - # df_samples = df_samples.merge( - # df_sequence_qc, on="sample_id", sort=False, how="left" - # ) + df_samples = df_samples.merge( + df_sequence_qc, on="sample_id", sort=False, how="left" + ) # If available, merge with the AIM metadata. - # if self._aim_analysis: - # df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) - # df_samples = df_samples.merge( - # df_aim, on="sample_id", sort=False, how="left" - # ) + if self._aim_analysis: + df_aim = self.aim_metadata(sample_sets=prepped_sample_sets) + df_samples = df_samples.merge( + df_aim, on="sample_id", sort=False, how="left" + ) # If available, merge with the cohorts metadata. - # if self._cohorts_analysis: - # df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) - # df_samples = df_samples.merge( - # df_cohorts, on="sample_id", sort=False, how="left" - # ) + if self._cohorts_analysis: + df_cohorts = self.cohorts_metadata(sample_sets=prepped_sample_sets) + df_samples = df_samples.merge( + df_cohorts, on="sample_id", sort=False, how="left" + ) # Store sample metadata in the cache. self._cache_sample_metadata[cache_key] = df_samples diff --git a/malariagen_data/anopheles.py b/malariagen_data/anopheles.py index 7fc78451e..94ebc488b 100644 --- a/malariagen_data/anopheles.py +++ b/malariagen_data/anopheles.py @@ -595,7 +595,17 @@ def roh_hmm( try: # Load cached numeric data, adding str / obj data again. results = self.results_cache_get(name=name, params=params) - df_roh = pd.DataFrame(results) + + # Reconstruct dataframe + df_roh = pd.DataFrame( + { + "roh_start": results["roh_start"], + "roh_stop": results["roh_stop"], + "roh_length": results["roh_length"], + "roh_is_marginal": results["roh_is_marginal"], + } + ) + df_roh["sample_id"] = sample df_roh["contig"] = resolved_region.contig @@ -630,6 +640,7 @@ def roh_hmm( "roh_length", "roh_is_marginal", ] + self.results_cache_set( name=name, params=params, diff --git a/poetry.lock b/poetry.lock index d02d5c5bc..e9450b337 100644 --- a/poetry.lock +++ b/poetry.lock @@ -5854,4 +5854,4 @@ dev = ["jupyterlab", "memory-profiler", "mypy", "notebook", "pandas-stubs", "pre [metadata] lock-version = "2.1" python-versions = ">=3.10,<3.13" -content-hash = "e2dc0c54942b1e2261de9c28a0c3750350ff2bb6aa20700a71ec8fba81e1382a" +content-hash = "72db9c739659d268f984ad2d5b8f3593a41be1469e6b7599afed28c95293bb46" From 5cd669f271e893ec207995cfc25967c76e39b78d Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Thu, 10 Jul 2025 01:33:15 -0500 Subject: [PATCH 14/41] add cohorts analysis --- malariagen_data/adir1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 92709eeb4..63e383d50 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -135,7 +135,7 @@ def __repr__(self): f"Storage URL : {self._url}\n" f"Data releases available : {', '.join(self.releases)}\n" f"Results cache : {self._results_cache}\n" - # f"Cohorts analysis : {self._cohorts_analysis}\n" + f"Cohorts analysis : {self._cohorts_analysis}\n" f"Site filters analysis : {self._site_filters_analysis}\n" f"Software version : malariagen_data {malariagen_data.__version__}\n" f"Client location : {self.client_location}\n" From 0a9c07ce5c46fc0bec370e33f6043aa16adfeacc Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Sun, 28 Sep 2025 01:48:39 -0500 Subject: [PATCH 15/41] QC data now being built with metadata Had commented this out, back now! --- malariagen_data/anoph/sample_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index fd98270c4..bba958fa4 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -349,7 +349,7 @@ def sequence_qc_metadata( self, sample_sets: Optional[base_params.sample_sets] = None ) -> pd.DataFrame: return self._parse_metadata_paths( - path_template="{release_path}/metadata/curation/{sample_set}/sequence_qc_stats.csv", + path_template="{release_path}/metadata/general/{sample_set}/sequence_qc_stats.csv", parse_metadata_func=self._parse_sequence_qc_metadata, sample_sets=sample_sets, ) From 9a3ec96f1e91f8e4cb72804c171bca014f0a267b Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Sun, 28 Sep 2025 01:50:45 -0500 Subject: [PATCH 16/41] QC metadata back in now --- malariagen_data/anoph/sample_metadata.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index bba958fa4..67145b337 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -618,8 +618,6 @@ def sample_metadata( # Note: this includes study and terms-of-use info. df_samples = self.general_metadata(sample_sets=prepped_sample_sets) - # Commented this out as it breaks some things - will fix - # Merge with the sequence QC metadata. df_sequence_qc = self.sequence_qc_metadata( sample_sets=prepped_sample_sets From fb8a42efd33c2cef08db5b3e92c481ac0c01bbd3 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 7 Oct 2025 19:52:53 -0500 Subject: [PATCH 17/41] Update adir1.py --- malariagen_data/adir1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 63e383d50..00dd3a6e1 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -23,7 +23,7 @@ class Adir1(AnophelesDataResource): - """Provides access to data from Adir1.x releases. + """Provides access to data from Adir1.0 releases. Parameters ---------- From 6fa3c638198a1a77db890109d3a7c0bfdf6fffc6 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Fri, 10 Oct 2025 10:12:17 +1000 Subject: [PATCH 18/41] Add Adir1 docs page, add index entry (docs contain all functions minus hap/cnv/aim data) --- docs/source/Adir1.rst | 150 ++++++++++++++++++++++++++++++++++++++++++ docs/source/index.rst | 8 +++ 2 files changed, 158 insertions(+) create mode 100644 docs/source/Adir1.rst diff --git a/docs/source/Adir1.rst b/docs/source/Adir1.rst new file mode 100644 index 000000000..ada72d451 --- /dev/null +++ b/docs/source/Adir1.rst @@ -0,0 +1,150 @@ +Adir1 +===== + +This page provides a curated list of functions and properties available in the ``malariagen_data`` API +for data on mosquitoes from the *Anopheles dirus* complex. + +To set up the API, use the following code:: + + import malariagen_data + adir1 = malariagen_data.Adir1() + +All the functions below can then be accessed as methods on the ``adir1`` object. E.g., to call the +``sample_metadata()`` function, do:: + + df_samples = adir1.sample_metadata() + +For more information about the data and terms of use, please see the +`MalariaGEN website `_ or contact support@malariagen.net. + +.. currentmodule:: malariagen_data.adir1.Adir1 + +Basic data access +----------------- +.. autosummary:: + :toctree: generated/ + + releases + sample_sets + lookup_release + lookup_study + +Reference genome data access +---------------------------- +.. autosummary:: + :toctree: generated/ + + contigs + genome_sequence + genome_features + plot_transcript + plot_genes + +Sample metadata access +---------------------- +.. autosummary:: + :toctree: generated/ + + sample_metadata + add_extra_metadata + clear_extra_metadata + lookup_sample + count_samples + plot_samples_bar + plot_samples_interactive_map + plot_sample_location_mapbox + plot_sample_location_geo + wgs_data_catalog + cohorts + +SNP data access +--------------- +.. autosummary:: + :toctree: generated/ + + site_mask_ids + snp_calls + snp_allele_counts + plot_snps + site_annotations + is_accessible + biallelic_snp_calls + biallelic_diplotypes + biallelic_snps_to_plink + +Integrative genomics viewer (IGV) +--------------------------------- +.. autosummary:: + :toctree: generated/ + + igv + view_alignments + +SNP frequency analysis +---------------------- +.. autosummary:: + :toctree: generated/ + + snp_allele_frequencies + snp_allele_frequencies_advanced + aa_allele_frequencies + aa_allele_frequencies_advanced + plot_frequencies_heatmap + plot_frequencies_time_series + plot_frequencies_interactive_map + +Principal components analysis (PCA) +----------------------------------- +.. autosummary:: + :toctree: generated/ + + pca + plot_pca_variance + plot_pca_coords + plot_pca_coords_3d + +Genetic distance and neighbour-joining trees (NJT) +-------------------------------------------------- +.. autosummary:: + :toctree: generated/ + + plot_njt + njt + biallelic_diplotype_pairwise_distances + +Heterozygosity analysis +----------------------- +.. autosummary:: + :toctree: generated/ + + plot_heterozygosity + roh_hmm + plot_roh + +Diversity analysis +------------------ +.. autosummary:: + :toctree: generated/ + + cohort_diversity_stats + diversity_stats + plot_diversity_stats + +Diplotype clustering +-------------------- +.. autosummary:: + :toctree: generated/ + + plot_diplotype_clustering + plot_diplotype_clustering_advanced + +Fst analysis +------------ +.. autosummary:: + :toctree: generated/ + + average_fst + pairwise_average_fst + plot_pairwise_average_fst + fst_gwss + plot_fst_gwss diff --git a/docs/source/index.rst b/docs/source/index.rst index 98afebed0..773fe9fa9 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -35,6 +35,14 @@ API documentation .. image:: https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Anopheles_minimus_1.jpg/640px-Anopheles_minimus_1.jpg + .. grid-item-card:: ``Adir1`` + :link: Adir1 + :link-type: doc + + *Anopheles dirus* complex. + + .. image:: https://phil.cdc.gov//PHIL_Images/8777/8777_lores.jpg + Documentation for the `Pf7 `_ (*Plasmodium falciparum*) and `Pv4 `_ (*Plasmodium vivax*) APIs is also available, currently hosted on a separate site. From 53a85e420f14ff3aa17afb5caa58fd9dedeb2eea Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 09:48:54 +1000 Subject: [PATCH 19/41] add updated release path, change from 1.x to 1.0 --- malariagen_data/adir1.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 00dd3a6e1..b892613c5 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -6,15 +6,13 @@ from .anopheles import AnophelesDataResource MAJOR_VERSION_NUMBER = 1 -MAJOR_VERSION_PATH = "v1.x" -CONFIG_PATH = "v1.x-config.json" +MAJOR_VERSION_PATH = "v1.0" +CONFIG_PATH = "v1.0-config.json" GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/" -GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/v1.x/staging" +GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/release/" GCS_REGION_URLS = { "us-central1": "gs://vo_adir_production_us_central1", } -# XPEHH_GWSS_CACHE_NAME = "adir1_xpehh_gwss_v1" -# IHS_GWSS_CACHE_NAME = "adir1_ihs_gwss_v1" TAXON_PALETTE = px.colors.qualitative.Plotly TAXON_COLORS = { From 0f585919d00d4568c073271f42fdba60450c5550 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 10:08:08 +1000 Subject: [PATCH 20/41] update paths to release directory --- malariagen_data/adir1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index b892613c5..d1d4fc748 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -8,7 +8,7 @@ MAJOR_VERSION_NUMBER = 1 MAJOR_VERSION_PATH = "v1.0" CONFIG_PATH = "v1.0-config.json" -GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/" +GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/release/" GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/release/" GCS_REGION_URLS = { "us-central1": "gs://vo_adir_production_us_central1", From edee49536488cce2ad57db670952b5d557084935 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 11:02:16 +1000 Subject: [PATCH 21/41] tou added back into sample_metadata --- malariagen_data/anoph/sample_metadata.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index 67145b337..e9a25f252 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -180,16 +180,15 @@ def _parse_general_metadata( axis="columns", ) - # Have commented these out for now as a) this is not a public release and b) for some reason it breaks everything and I haven't had the time to work out why # Add study columns. - # study_info = self.lookup_study_info(sample_set=sample_set) - # for column in study_info: - # df[column] = study_info[column] + study_info = self.lookup_study_info(sample_set=sample_set) + for column in study_info: + df[column] = study_info[column] # Add terms-of-use columns. - # terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) - # for column in terms_of_use_info: - # df[column] = terms_of_use_info[column] + terms_of_use_info = self.lookup_terms_of_use_info(sample_set=sample_set) + for column in terms_of_use_info: + df[column] = terms_of_use_info[column] return df From bf5c188c06edd885290b0654ad6788c01f5b96cb Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 11:09:17 +1000 Subject: [PATCH 22/41] corrected path to qc data from sample_metadatax --- malariagen_data/anoph/sample_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/anoph/sample_metadata.py b/malariagen_data/anoph/sample_metadata.py index e9a25f252..62baa6870 100644 --- a/malariagen_data/anoph/sample_metadata.py +++ b/malariagen_data/anoph/sample_metadata.py @@ -348,7 +348,7 @@ def sequence_qc_metadata( self, sample_sets: Optional[base_params.sample_sets] = None ) -> pd.DataFrame: return self._parse_metadata_paths( - path_template="{release_path}/metadata/general/{sample_set}/sequence_qc_stats.csv", + path_template="{release_path}/metadata/curation/{sample_set}/sequence_qc_stats.csv", parse_metadata_func=self._parse_sequence_qc_metadata, sample_sets=sample_sets, ) From 10e0548c166a9f004f65cdadfd411da25ccfdc28 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 11:10:58 +1000 Subject: [PATCH 23/41] remove pinned ipykernel --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 28d5bdc9b..ca85554c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,7 +93,6 @@ sphinx = "*" pydata-sphinx-theme = "*" sphinx_design = "*" pandas-stubs = "*" -ipykernel = "^6.29.5" [tool.poetry.extras] dev = ["pytest", "pytest-xdist", "pytest-cases", "pytest-cov", "notebook", "jupyterlab", "pre-commit", "ruff", "snakeviz", "mypy", "memory-profiler", "sphinx", "pydata-sphinx-theme", "sphinx_design", "pandas-stubs"] From ad4f661ae2b71347b8df63504d9f5bf0249524a3 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 11:29:14 +1000 Subject: [PATCH 24/41] add initial tests for adir1 --- tests/integration/test_adir1.py | 79 +++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 tests/integration/test_adir1.py diff --git a/tests/integration/test_adir1.py b/tests/integration/test_adir1.py new file mode 100644 index 000000000..5dbd990b3 --- /dev/null +++ b/tests/integration/test_adir1.py @@ -0,0 +1,79 @@ +import numpy as np +import pytest + +from malariagen_data import Adir1, Region +from malariagen_data.util import locate_region, resolve_region + + +def setup_adir1( + url="simplecache::gs://vo_adir_production_us_central1/release/", **kwargs +): + kwargs.setdefault("check_location", False) + kwargs.setdefault("show_progress", False) + if url is None: + # test default URL + # This only tests the setup_af1 default url, not the Af1 default. + # The test_anopheles setup_subclass tests true defaults. + return Adir1(**kwargs) + if url.startswith("simplecache::"): + # configure the directory on the local file system to cache data + kwargs["simplecache"] = dict(cache_storage="gcs_cache") + return Adir1(url, **kwargs) + + +def test_repr(): + adir1 = setup_adir1(check_location=True) + assert isinstance(adir1, Adir1) + r = repr(adir1) + assert isinstance(r, str) + + +@pytest.mark.parametrize( + "region_raw", + [ + "ADIR015707", + "KB672490", + "KB672490:4871446-4871535", + "KB672490:2,630,355-2,633,221", + Region("KB672490", 4871446, 4871535), + ], +) +def test_locate_region(region_raw): + # TODO Migrate this test. + adir1 = setup_adir1() + gene_annotation = adir1.geneset(attributes=["ID"]) + region = resolve_region(adir1, region_raw) + pos = adir1.snp_sites(region=region.contig, field="POS") + ref = adir1.snp_sites(region=region.contig, field="REF") + loc_region = locate_region(region, pos) + + # check types + assert isinstance(loc_region, slice) + assert isinstance(region, Region) + + # check Region with contig + if region_raw == "KB672490": + assert region.contig == "KB672490" + assert region.start is None + assert region.end is None + + # check that Region goes through unchanged + if isinstance(region_raw, Region): + assert region == region_raw + + # check that gene name matches coordinates from the geneset and matches gene sequence + if region_raw == "ADIR015707": + gene = gene_annotation.query("ID == 'ADIR015707'").squeeze() + assert region == Region(gene.contig, gene.start, gene.end) + assert pos[loc_region][0] == gene.start + assert pos[loc_region][-1] == gene.end + assert ( + ref[loc_region][:5].compute() + == np.array(["T", "T", "T", "C", "T"], dtype="S1") + ).all() + + # check string parsing + if region_raw == "KB672490:4871446-4871535": + assert region == Region("KB672490", 4871446, 4871535) + if region_raw == "KB672490:2,630,355-2,633,221": + assert region == Region("KB672490", 2630355, 2633221) From 6f8376caa55a490db258bdb80900da88cf7f9696 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 11:29:14 +1000 Subject: [PATCH 25/41] add initial tests for adir1 --- poetry.lock | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/poetry.lock b/poetry.lock index dd48815c7..1cd2c2516 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.1.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.1.3 and should not be changed by hand. [[package]] name = "accessible-pygments" @@ -397,7 +397,7 @@ description = "Timeout context manager for asyncio programs" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c"}, {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"}, @@ -921,7 +921,7 @@ description = "Python library for calculating contours of 2D quadrilateral grids optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "contourpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ba38e3f9f330af820c4b27ceb4b9c7feee5fe0493ea53a8720f4792667465934"}, {file = "contourpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dc41ba0714aa2968d1f8674ec97504a8f7e334f48eeacebcaa6256213acb0989"}, @@ -1466,7 +1466,7 @@ description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10"}, {file = "exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88"}, @@ -2205,7 +2205,7 @@ description = "IPython: Productive Interactive Computing" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "ipython-8.37.0-py3-none-any.whl", hash = "sha256:ed87326596b878932dbcb171e3e698845434d8c61b8d8cd474bf663041a9dcf2"}, {file = "ipython-8.37.0.tar.gz", hash = "sha256:ca815841e1a41a1e6b73a0b08f3038af9b2252564d01fc405356d34033012216"}, @@ -3313,7 +3313,7 @@ description = "Python package for creating and manipulating graphs and networks" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f"}, {file = "networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1"}, @@ -3448,7 +3448,7 @@ description = "A Python package providing buffer compression and transformation optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "numcodecs-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:96add4f783c5ce57cc7e650b6cac79dd101daf887c479a00a29bc1487ced180b"}, {file = "numcodecs-0.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:237b7171609e868a20fd313748494444458ccd696062f67e198f7f8f52000c15"}, @@ -5244,7 +5244,7 @@ description = "Fundamental algorithms for scientific computing in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "scipy-1.15.3-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a345928c86d535060c9c2b25e71e87c39ab2f22fc96e9636bd74d1dbf9de448c"}, {file = "scipy-1.15.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:ad3432cb0f9ed87477a8d97f03b763fd1d57709f1bbde3c9369b1dff5503b253"}, @@ -5501,7 +5501,7 @@ description = "Python documentation generator" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\" and extra == \"dev\"" +markers = "python_version == \"3.10\" and extra == \"dev\"" files = [ {file = "sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2"}, {file = "sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927"}, @@ -5850,7 +5850,7 @@ description = "A lil' TOML parser" optional = false python-versions = ">=3.8" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249"}, {file = "tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6"}, @@ -6279,7 +6279,7 @@ description = "N-D labeled arrays and datasets in Python" optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "xarray-2025.6.1-py3-none-any.whl", hash = "sha256:8b988b47f67a383bdc3b04c5db475cd165e580134c1f1943d52aee4a9c97651b"}, {file = "xarray-2025.6.1.tar.gz", hash = "sha256:a84f3f07544634a130d7dc615ae44175419f4c77957a7255161ed99c69c7c8b0"}, @@ -6479,7 +6479,7 @@ description = "An implementation of chunked, compressed, N-dimensional arrays fo optional = false python-versions = ">=3.10" groups = ["main"] -markers = "python_version < \"3.11\"" +markers = "python_version == \"3.10\"" files = [ {file = "zarr-2.18.3-py3-none-any.whl", hash = "sha256:b1f7dfd2496f436745cdd4c7bcf8d3b4bc1dceef5fdd0d589c87130d842496dd"}, {file = "zarr-2.18.3.tar.gz", hash = "sha256:2580d8cb6dd84621771a10d31c4d777dca8a27706a1a89b29f42d2d37e2df5ce"}, @@ -6556,4 +6556,4 @@ dev = ["jupyterlab", "memory-profiler", "mypy", "notebook", "pandas-stubs", "pre [metadata] lock-version = "2.1" python-versions = ">=3.10,<3.13" -content-hash = "dddb13a95bf08e00b6aca6f8c100e49f50ad99a60d9e4f479cbeb05593857332" +content-hash = "a67f0afbc1c0c640f82de0e96c27f835aa6f9ab6ddb2992b228cf757c5a886f3" From 4c434ae984654664b18ce6f659a88d9b266ffb4e Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 12:34:51 +1000 Subject: [PATCH 26/41] fix broken asset at ref sequence comparison in integration tests --- adir.ipynb | 440 ++++++++++++++++++++++++++++++++ test_release/bin/python | 1 + test_release/bin/python3 | 1 + test_release/bin/python3.10 | 1 + test_release/pyvenv.cfg | 3 + tests/integration/test_adir1.py | 3 +- 6 files changed, 447 insertions(+), 2 deletions(-) create mode 100644 adir.ipynb create mode 120000 test_release/bin/python create mode 120000 test_release/bin/python3 create mode 120000 test_release/bin/python3.10 create mode 100644 test_release/pyvenv.cfg diff --git a/adir.ipynb b/adir.ipynb new file mode 100644 index 000000000..9a9cb0121 --- /dev/null +++ b/adir.ipynb @@ -0,0 +1,440 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "21cfd49f-62d5-4b85-a7b3-ddd6966a1ccd", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "import malariagen_data\n", + "import numpy as np\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "2fba0d91-93a8-40fd-8d7b-c55c62645857", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "application/javascript": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\nconst JS_MIME_TYPE = 'application/javascript';\n const HTML_MIME_TYPE = 'text/html';\n const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n const CLASS_NAME = 'output_bokeh rendered_html';\n\n /**\n * Render data to the DOM node\n */\n function render(props, node) {\n const script = document.createElement(\"script\");\n node.appendChild(script);\n }\n\n /**\n * Handle when an output is cleared or removed\n */\n function handleClearOutput(event, handle) {\n function drop(id) {\n const view = Bokeh.index.get_by_id(id)\n if (view != null) {\n view.model.document.clear()\n Bokeh.index.delete(view)\n }\n }\n\n const cell = handle.cell;\n\n const id = cell.output_area._bokeh_element_id;\n const server_id = cell.output_area._bokeh_server_id;\n\n // Clean up Bokeh references\n if (id != null) {\n drop(id)\n }\n\n if (server_id !== undefined) {\n // Clean up Bokeh references\n const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n cell.notebook.kernel.execute(cmd_clean, {\n iopub: {\n output: function(msg) {\n const id = msg.content.text.trim()\n drop(id)\n }\n }\n });\n // Destroy server and session\n const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n cell.notebook.kernel.execute(cmd_destroy);\n }\n }\n\n /**\n * Handle when a new output is added\n */\n function handleAddOutput(event, handle) {\n const output_area = handle.output_area;\n const output = handle.output;\n\n // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n return\n }\n\n const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n\n if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n // store reference to embed id on output_area\n output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n }\n if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n const bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n const script_attrs = bk_div.children[0].attributes;\n for (let i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n }\n\n function register_renderer(events, OutputArea) {\n\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n const toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[toinsert.length - 1]);\n element.append(toinsert);\n return toinsert\n }\n\n /* Handle when an output is cleared or removed */\n events.on('clear_output.CodeCell', handleClearOutput);\n events.on('delete.Cell', handleClearOutput);\n\n /* Handle when a new output is added */\n events.on('output_added.OutputArea', handleAddOutput);\n\n /**\n * Register the mime type and append_mime function with output_area\n */\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n /* Is output safe? */\n safe: true,\n /* Index of renderer in `output_area.display_order` */\n index: 0\n });\n }\n\n // register the mime type if in Jupyter Notebook environment and previously unregistered\n if (root.Jupyter !== undefined) {\n const events = require('base/js/events');\n const OutputArea = require('notebook/js/outputarea').OutputArea;\n\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n }\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.6.2.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));", + "application/vnd.bokehjs_load.v0+json": "" + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MalariaGEN Adir1 API client
\n", + " Please note that data are subject to terms of use,\n", + " for more information see \n", + " the MalariaGEN website or contact support@malariagen.net.\n", + " See also the Adir1 API docs.\n", + "
\n", + " Storage URL\n", + " gs://vo_adir_production_us_central1/
\n", + " Data releases available\n", + " 1.x
\n", + " Results cache\n", + " None
\n", + " Cohorts analysis\n", + " 20250710
\n", + " Site filters analysis\n", + " sc_20250610
\n", + " Software version\n", + " malariagen_data 0.0.0
\n", + " Client location\n", + " Queensland, Australia
\n", + " " + ], + "text/plain": [ + "\n", + "Storage URL : gs://vo_adir_production_us_central1/\n", + "Data releases available : 1.x\n", + "Results cache : None\n", + "Cohorts analysis : 20250710\n", + "Site filters analysis : sc_20250610\n", + "Software version : malariagen_data 0.0.0\n", + "Client location : Queensland, Australia\n", + "---\n", + "Please note that data are subject to terms of use,\n", + "for more information see https://www.malariagen.net/data\n", + "or contact support@malariagen.net. For API documentation see \n", + "https://malariagen.github.io/malariagen-data-python/v0.0.0/Adir1.html" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adir1 = malariagen_data.Adir1()\n", + "adir1" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "ff3e75bb-d04a-40d4-8185-d738ef00ead1", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "df_samples = adir1.sample_metadata()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "ba6a4b73-84ac-46b8-9448-63c49248a16f", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sample_idderived_sample_idpartner_sample_idcontributorlocationmonthlatitudelongitudesample_setreleasequarter
countryyear
Bangladesh20184747474747474747474747
Cambodia20171212121212121212121212
20181414141414141414141414
20194141414141414141414141
2020207207207207207207207207207207207
Thailand2019219219219219219219219219219219219
\n", + "
" + ], + "text/plain": [ + " sample_id derived_sample_id partner_sample_id contributor \n", + "country year \n", + "Bangladesh 2018 47 47 47 47 \\\n", + "Cambodia 2017 12 12 12 12 \n", + " 2018 14 14 14 14 \n", + " 2019 41 41 41 41 \n", + " 2020 207 207 207 207 \n", + "Thailand 2019 219 219 219 219 \n", + "\n", + " location month latitude longitude sample_set release \n", + "country year \n", + "Bangladesh 2018 47 47 47 47 47 47 \\\n", + "Cambodia 2017 12 12 12 12 12 12 \n", + " 2018 14 14 14 14 14 14 \n", + " 2019 41 41 41 41 41 41 \n", + " 2020 207 207 207 207 207 207 \n", + "Thailand 2019 219 219 219 219 219 219 \n", + "\n", + " quarter \n", + "country year \n", + "Bangladesh 2018 47 \n", + "Cambodia 2017 12 \n", + " 2018 14 \n", + " 2019 41 \n", + " 2020 207 \n", + "Thailand 2019 219 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_samples.groupby(['country','year']).count()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "60556bb1-9469-45d6-a96e-73e1d542e0fb", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "Compute SNP allele counts: 0%| | 0/780 [00:00 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m100000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msite_mask\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mdirus\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:136\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 131\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_metadata(\n\u001b[1;32m 132\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39msample_sets,\n\u001b[1;32m 133\u001b[0m )\n\u001b[1;32m 135\u001b[0m \u001b[38;5;66;03m# Ensure aligned with genotype data.\u001b[39;00m\n\u001b[0;32m--> 136\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[43mdf_samples\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mset_index\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43msample_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloc\u001b[49m\u001b[43m[\u001b[49m\u001b[43msamples\u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mreset_index()\n\u001b[1;32m 138\u001b[0m \u001b[38;5;66;03m# Combine coords and sample metadata.\u001b[39;00m\n\u001b[1;32m 139\u001b[0m df_coords \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame(\n\u001b[1;32m 140\u001b[0m {\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mPC\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mi\u001b[38;5;250m \u001b[39m\u001b[38;5;241m+\u001b[39m\u001b[38;5;250m \u001b[39m\u001b[38;5;241m1\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m: coords[:, i] \u001b[38;5;28;01mfor\u001b[39;00m i \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(coords\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m1\u001b[39m])}\n\u001b[1;32m 141\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1103\u001b[0m, in \u001b[0;36m_LocationIndexer.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 1100\u001b[0m axis \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39maxis \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;241m0\u001b[39m\n\u001b[1;32m 1102\u001b[0m maybe_callable \u001b[38;5;241m=\u001b[39m com\u001b[38;5;241m.\u001b[39mapply_if_callable(key, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj)\n\u001b[0;32m-> 1103\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_axis\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmaybe_callable\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1332\u001b[0m, in \u001b[0;36m_LocIndexer._getitem_axis\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1329\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(key, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mndim\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;129;01mand\u001b[39;00m key\u001b[38;5;241m.\u001b[39mndim \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[1;32m 1330\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot index with multidimensional key\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m-> 1332\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_iterable\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1334\u001b[0m \u001b[38;5;66;03m# nested tuple slicing\u001b[39;00m\n\u001b[1;32m 1335\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_nested_tuple(key, labels):\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1272\u001b[0m, in \u001b[0;36m_LocIndexer._getitem_iterable\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1269\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_validate_key(key, axis)\n\u001b[1;32m 1271\u001b[0m \u001b[38;5;66;03m# A collection of keys\u001b[39;00m\n\u001b[0;32m-> 1272\u001b[0m keyarr, indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_listlike_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1273\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_reindex_with_indexers(\n\u001b[1;32m 1274\u001b[0m {axis: [keyarr, indexer]}, copy\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, allow_dups\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 1275\u001b[0m )\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1462\u001b[0m, in \u001b[0;36m_LocIndexer._get_listlike_indexer\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1459\u001b[0m ax \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_get_axis(axis)\n\u001b[1;32m 1460\u001b[0m axis_name \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_get_axis_name(axis)\n\u001b[0;32m-> 1462\u001b[0m keyarr, indexer \u001b[38;5;241m=\u001b[39m \u001b[43max\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1464\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m keyarr, indexer\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", + "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5938\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[0;32m-> 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[0;31mKeyError\u001b[0m: \"['VBS45975-6296STDY1024453', 'VBS45982-6296STDY9478589', 'VBS45983-6296STDY1024453', 'VBS45984-6296STDY1024453', 'VBS45985-6296STDY1024453', 'VBS45986-6296STDY1024454', 'VBS45987-6296STDY1024454', 'VBS45988-6296STDY1024454', 'VBS45989-6296STDY1024454', 'VBS45991-6296STDY1024454', 'VBS45992-6296STDY1024454', 'VBS45993-6296STDY1024454', 'VBS45994-6296STDY1024454', 'VBS45995-6296STDY1024454', 'VBS45996-6296STDY1024455', 'VBS45997-6296STDY1024455', 'VBS45998-6296STDY1024455', 'VBS45999-6296STDY1024455', 'VBS46000-6296STDY1024455', 'VBS46001-6296STDY1024455', 'VBS46002-6296STDY1024455', 'VBS46003-6296STDY1024455', 'VBS46004-6296STDY1024455', 'VBS46006-6296STDY1024456', 'VBS46007-6296STDY1024456', 'VBS46008-6296STDY1024456', 'VBS46009-6296STDY1024456', 'VBS46010-6296STDY1024456', 'VBS46011-6296STDY1024456', 'VBS46012-6296STDY1024456', 'VBS46013-6296STDY1024456', 'VBS46014-6296STDY1024456', 'VBS46016-6296STDY1024457', 'VBS46017-6296STDY1024457', 'VBS46019-6296STDY1024457', 'VBS46020-6296STDY1024457', 'VBS46021-6296STDY1024457', 'VBS46022-6296STDY1024457', 'VBS46025-6296STDY1024457', 'VBS46026-6296STDY1024458', 'VBS46027-6296STDY1024458', 'VBS46028-6296STDY1024458', 'VBS46029-6296STDY1024458', 'VBS46030-6296STDY1024458', 'VBS46031-6296STDY1024458', 'VBS46032-6296STDY1024458', 'VBS46033-6296STDY1024458', 'VBS46034-6296STDY1024458', 'VBS46035-6296STDY1024458', 'VBS46036-6296STDY1024459', 'VBS46037-6296STDY1024459', 'VBS46038-6296STDY1024459', 'VBS46039-6296STDY1024459', 'VBS46040-6296STDY1024459', 'VBS46041-6296STDY1024459', 'VBS46043-6296STDY1024459', 'VBS46044-6296STDY1024459', 'VBS46045-6296STDY1024459', 'VBS46046-6296STDY1024460', 'VBS46047-6296STDY1024460', 'VBS46048-6296STDY1024460', 'VBS46049-6296STDY1024460', 'VBS46051-6296STDY1024460', 'VBS46052-6296STDY1024460', 'VBS46053-6296STDY1024460', 'VBS46054-6296STDY1024460', 'VBS46055-6296STDY1024460', 'VBS46056-6296STDY1024461', 'VBS46057-6296STDY1024461', 'VBS46060-6296STDY1024461', 'VBS46061-6296STDY1024461', 'VBS46063-6296STDY1024461', 'VBS46064-6296STDY1024461', 'VBS46065-6296STDY1024461', 'VBS46068-6296STDY1024462', 'VBS46069-6296STDY1024462', 'VBS46070-6296STDY1024462', 'VBS46071-6296STDY1024462', 'VBS46072-6296STDY1024462', 'VBS46073-6296STDY1024462', 'VBS46074-6296STDY1024463', 'VBS46075-6296STDY1024463', 'VBS46076-6296STDY1024463', 'VBS46077-6296STDY1024463', 'VBS46079-6296STDY1024463', 'VBS46080-6296STDY1024463', 'VBS46081-6296STDY1024463', 'VBS46082-6296STDY1024463', 'VBS46085-6296STDY1024464', 'VBS46086-6296STDY1024464', 'VBS46089-6296STDY1024464', 'VBS46090-6296STDY1024464', 'VBS46091-6296STDY1024464', 'VBS46092-6296STDY1024464', 'VBS46093-6296STDY1024464', 'VBS46094-6296STDY1024465', 'VBS46095-6296STDY1024465', 'VBS46096-6296STDY1024465', 'VBS46097-6296STDY1024465', 'VBS46099-6296STDY1024465', 'VBS46100-6296STDY1024465', 'VBS46101-6296STDY1024465', 'VBS46102-6296STDY1024465', 'VBS46103-6296STDY1024465', 'VBS46104-6296STDY1024466', 'VBS46105-6296STDY1024466', 'VBS46106-6296STDY1024466', 'VBS46107-6296STDY1024466', 'VBS46108-6296STDY1024466', 'VBS46109-6296STDY1024466', 'VBS46110-6296STDY1024466', 'VBS46111-6296STDY1024466', 'VBS46112-6296STDY1024466', 'VBS46113-6296STDY1024466', 'VBS46114-6296STDY1024467', 'VBS46115-6296STDY1024467', 'VBS46116-6296STDY1024467', 'VBS46117-6296STDY1024467', 'VBS46118-6296STDY1024467', 'VBS46119-6296STDY1024467', 'VBS46120-6296STDY1024467', 'VBS46122-6296STDY1024467', 'VBS46123-6296STDY1024467', 'VBS46124-6296STDY1024468', 'VBS46125-6296STDY1024468', 'VBS46126-6296STDY1024468', 'VBS46127-6296STDY1024468', 'VBS46128-6296STDY1024468', 'VBS46129-6296STDY1024468', 'VBS46130-6296STDY1024468', 'VBS46131-6296STDY1024468', 'VBS46132-6296STDY1024468', 'VBS46133-6296STDY1024468', 'VBS46134-6296STDY1024469', 'VBS46135-6296STDY1024469', 'VBS46136-6296STDY1024469', 'VBS46137-6296STDY1024469', 'VBS46138-6296STDY1024469', 'VBS46139-6296STDY1024469', 'VBS46140-6296STDY1024469', 'VBS46142-6296STDY1024469', 'VBS46143-6296STDY1024469', 'VBS46144-6296STDY1024470', 'VBS46147-6296STDY1024470', 'VBS46148-6296STDY1024470', 'VBS46149-6296STDY1024470', 'VBS46150-6296STDY1024470', 'VBS46151-6296STDY1024470', 'VBS46152-6296STDY1024470', 'VBS46153-6296STDY1024470', 'VBS46155-6296STDY1024471', 'VBS46156-6296STDY1024471', 'VBS46157-6296STDY1024471', 'VBS46158-6296STDY1024471', 'VBS46160-6296STDY1024471', 'VBS46161-6296STDY1024471', 'VBS46162-6296STDY1024471', 'VBS46163-6296STDY1024472', 'VBS46164-6296STDY1024472', 'VBS46165-6296STDY1024472', 'VBS46166-6296STDY1024472', 'VBS46170-6296STDY1024472', 'VBS46171-6296STDY1024472', 'VBS46174-6296STDY1024473', 'VBS46176-6296STDY1024473', 'VBS46177-6296STDY1024473', 'VBS46178-6296STDY1024473', 'VBS46179-6296STDY1024473', 'VBS46181-6296STDY1024473', 'VBS46182-6296STDY1024473', 'VBS46184-6296STDY1024474', 'VBS46185-6296STDY1024474', 'VBS46186-6296STDY1024474', 'VBS46193-6296STDY1024474', 'VBS46194-6296STDY1024475', 'VBS46195-6296STDY1024475', 'VBS46196-6296STDY1024475', 'VBS46197-6296STDY1024475', 'VBS46199-6296STDY1024475', 'VBS46200-6296STDY1024475', 'VBS46201-6296STDY1024475', 'VBS46202-6296STDY1024475', 'VBS46203-6296STDY1024475', 'VBS46204-6296STDY1024476', 'VBS46205-6296STDY1024476', 'VBS46206-6296STDY1024476', 'VBS46207-6296STDY1024476'] not in index\"" + ] + } + ], + "source": [ + "pca = adir1.pca(region = \"KB672868\", n_snps=100000, sample_query = \"country == 'Thailand'\", site_mask = \"dirus\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d1b167fd-06e8-40b8-ba5f-5e8fa43dc931", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "malariagen-data-py3.10 (3.10.10)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/test_release/bin/python b/test_release/bin/python new file mode 120000 index 000000000..a9cc0f749 --- /dev/null +++ b/test_release/bin/python @@ -0,0 +1 @@ +/Users/dennistpw/miniconda3/bin/python \ No newline at end of file diff --git a/test_release/bin/python3 b/test_release/bin/python3 new file mode 120000 index 000000000..d8654aa0e --- /dev/null +++ b/test_release/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/test_release/bin/python3.10 b/test_release/bin/python3.10 new file mode 120000 index 000000000..d8654aa0e --- /dev/null +++ b/test_release/bin/python3.10 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/test_release/pyvenv.cfg b/test_release/pyvenv.cfg new file mode 100644 index 000000000..169b295f8 --- /dev/null +++ b/test_release/pyvenv.cfg @@ -0,0 +1,3 @@ +home = /Users/dennistpw/miniconda3/bin +include-system-site-packages = false +version = 3.10.10 diff --git a/tests/integration/test_adir1.py b/tests/integration/test_adir1.py index 5dbd990b3..8d8de9816 100644 --- a/tests/integration/test_adir1.py +++ b/tests/integration/test_adir1.py @@ -68,8 +68,7 @@ def test_locate_region(region_raw): assert pos[loc_region][0] == gene.start assert pos[loc_region][-1] == gene.end assert ( - ref[loc_region][:5].compute() - == np.array(["T", "T", "T", "C", "T"], dtype="S1") + ref[loc_region][:5].compute() == np.array(["T", "T", "G", "T", "T"]) ).all() # check string parsing From 0f7aa4db73577fa47d9b703e85f64471c83d2f7f Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 14 Oct 2025 12:36:29 +1000 Subject: [PATCH 27/41] tidy --- adir.ipynb | 440 ------------------------------------ test_release/bin/python | 1 - test_release/bin/python3 | 1 - test_release/bin/python3.10 | 1 - test_release/pyvenv.cfg | 3 - 5 files changed, 446 deletions(-) delete mode 100644 adir.ipynb delete mode 120000 test_release/bin/python delete mode 120000 test_release/bin/python3 delete mode 120000 test_release/bin/python3.10 delete mode 100644 test_release/pyvenv.cfg diff --git a/adir.ipynb b/adir.ipynb deleted file mode 100644 index 9a9cb0121..000000000 --- a/adir.ipynb +++ /dev/null @@ -1,440 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "21cfd49f-62d5-4b85-a7b3-ddd6966a1ccd", - "metadata": { - "tags": [] - }, - "outputs": [], - "source": [ - "import malariagen_data\n", - "import numpy as np\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "2fba0d91-93a8-40fd-8d7b-c55c62645857", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "application/javascript": "'use strict';\n(function(root) {\n function now() {\n return new Date();\n }\n\n const force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\nconst JS_MIME_TYPE = 'application/javascript';\n const HTML_MIME_TYPE = 'text/html';\n const EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n const CLASS_NAME = 'output_bokeh rendered_html';\n\n /**\n * Render data to the DOM node\n */\n function render(props, node) {\n const script = document.createElement(\"script\");\n node.appendChild(script);\n }\n\n /**\n * Handle when an output is cleared or removed\n */\n function handleClearOutput(event, handle) {\n function drop(id) {\n const view = Bokeh.index.get_by_id(id)\n if (view != null) {\n view.model.document.clear()\n Bokeh.index.delete(view)\n }\n }\n\n const cell = handle.cell;\n\n const id = cell.output_area._bokeh_element_id;\n const server_id = cell.output_area._bokeh_server_id;\n\n // Clean up Bokeh references\n if (id != null) {\n drop(id)\n }\n\n if (server_id !== undefined) {\n // Clean up Bokeh references\n const cmd_clean = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n cell.notebook.kernel.execute(cmd_clean, {\n iopub: {\n output: function(msg) {\n const id = msg.content.text.trim()\n drop(id)\n }\n }\n });\n // Destroy server and session\n const cmd_destroy = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n cell.notebook.kernel.execute(cmd_destroy);\n }\n }\n\n /**\n * Handle when a new output is added\n */\n function handleAddOutput(event, handle) {\n const output_area = handle.output_area;\n const output = handle.output;\n\n // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n if ((output.output_type != \"display_data\") || (!Object.prototype.hasOwnProperty.call(output.data, EXEC_MIME_TYPE))) {\n return\n }\n\n const toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n\n if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n // store reference to embed id on output_area\n output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n }\n if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n const bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n const script_attrs = bk_div.children[0].attributes;\n for (let i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n }\n\n function register_renderer(events, OutputArea) {\n\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n const toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n const props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[toinsert.length - 1]);\n element.append(toinsert);\n return toinsert\n }\n\n /* Handle when an output is cleared or removed */\n events.on('clear_output.CodeCell', handleClearOutput);\n events.on('delete.Cell', handleClearOutput);\n\n /* Handle when a new output is added */\n events.on('output_added.OutputArea', handleAddOutput);\n\n /**\n * Register the mime type and append_mime function with output_area\n */\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n /* Is output safe? */\n safe: true,\n /* Index of renderer in `output_area.display_order` */\n index: 0\n });\n }\n\n // register the mime type if in Jupyter Notebook environment and previously unregistered\n if (root.Jupyter !== undefined) {\n const events = require('base/js/events');\n const OutputArea = require('notebook/js/outputarea').OutputArea;\n\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n }\n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n const NB_LOAD_WARNING = {'data': {'text/html':\n \"
\\n\"+\n \"

\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"

\\n\"+\n \"
    \\n\"+\n \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n \"
  • use INLINE resources instead, as so:
  • \\n\"+\n \"
\\n\"+\n \"\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"\\n\"+\n \"
\"}};\n\n function display_loaded(error = null) {\n const el = document.getElementById(null);\n if (el != null) {\n const html = (() => {\n if (typeof root.Bokeh === \"undefined\") {\n if (error == null) {\n return \"BokehJS is loading ...\";\n } else {\n return \"BokehJS failed to load.\";\n }\n } else {\n const prefix = `BokehJS ${root.Bokeh.version}`;\n if (error == null) {\n return `${prefix} successfully loaded.`;\n } else {\n return `${prefix} encountered errors while loading and may not function as expected.`;\n }\n }\n })();\n el.innerHTML = html;\n\n if (error != null) {\n const wrapper = document.createElement(\"div\");\n wrapper.style.overflow = \"auto\";\n wrapper.style.height = \"5em\";\n wrapper.style.resize = \"vertical\";\n const content = document.createElement(\"div\");\n content.style.fontFamily = \"monospace\";\n content.style.whiteSpace = \"pre-wrap\";\n content.style.backgroundColor = \"rgb(255, 221, 221)\";\n content.textContent = error.stack ?? error.toString();\n wrapper.append(content);\n el.append(wrapper);\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(() => display_loaded(error), 100);\n }\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error(url) {\n console.error(\"failed to load \" + url);\n }\n\n for (let i = 0; i < css_urls.length; i++) {\n const url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n for (let i = 0; i < js_urls.length; i++) {\n const url = js_urls[i];\n const element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error.bind(null, url);\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n const js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.6.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-3.6.2.min.js\"];\n const css_urls = [];\n\n const inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {\n }\n ];\n\n function run_inline_js() {\n if (root.Bokeh !== undefined || force === true) {\n try {\n for (let i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n\n } catch (error) {throw error;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n const cell = $(document.getElementById(null)).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));", - "application/vnd.bokehjs_load.v0+json": "" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MalariaGEN Adir1 API client
\n", - " Please note that data are subject to terms of use,\n", - " for more information see \n", - " the MalariaGEN website or contact support@malariagen.net.\n", - " See also the Adir1 API docs.\n", - "
\n", - " Storage URL\n", - " gs://vo_adir_production_us_central1/
\n", - " Data releases available\n", - " 1.x
\n", - " Results cache\n", - " None
\n", - " Cohorts analysis\n", - " 20250710
\n", - " Site filters analysis\n", - " sc_20250610
\n", - " Software version\n", - " malariagen_data 0.0.0
\n", - " Client location\n", - " Queensland, Australia
\n", - " " - ], - "text/plain": [ - "\n", - "Storage URL : gs://vo_adir_production_us_central1/\n", - "Data releases available : 1.x\n", - "Results cache : None\n", - "Cohorts analysis : 20250710\n", - "Site filters analysis : sc_20250610\n", - "Software version : malariagen_data 0.0.0\n", - "Client location : Queensland, Australia\n", - "---\n", - "Please note that data are subject to terms of use,\n", - "for more information see https://www.malariagen.net/data\n", - "or contact support@malariagen.net. For API documentation see \n", - "https://malariagen.github.io/malariagen-data-python/v0.0.0/Adir1.html" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "adir1 = malariagen_data.Adir1()\n", - "adir1" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "ff3e75bb-d04a-40d4-8185-d738ef00ead1", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - } - ], - "source": [ - "df_samples = adir1.sample_metadata()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "ba6a4b73-84ac-46b8-9448-63c49248a16f", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
sample_idderived_sample_idpartner_sample_idcontributorlocationmonthlatitudelongitudesample_setreleasequarter
countryyear
Bangladesh20184747474747474747474747
Cambodia20171212121212121212121212
20181414141414141414141414
20194141414141414141414141
2020207207207207207207207207207207207
Thailand2019219219219219219219219219219219219
\n", - "
" - ], - "text/plain": [ - " sample_id derived_sample_id partner_sample_id contributor \n", - "country year \n", - "Bangladesh 2018 47 47 47 47 \\\n", - "Cambodia 2017 12 12 12 12 \n", - " 2018 14 14 14 14 \n", - " 2019 41 41 41 41 \n", - " 2020 207 207 207 207 \n", - "Thailand 2019 219 219 219 219 \n", - "\n", - " location month latitude longitude sample_set release \n", - "country year \n", - "Bangladesh 2018 47 47 47 47 47 47 \\\n", - "Cambodia 2017 12 12 12 12 12 12 \n", - " 2018 14 14 14 14 14 14 \n", - " 2019 41 41 41 41 41 41 \n", - " 2020 207 207 207 207 207 207 \n", - "Thailand 2019 219 219 219 219 219 219 \n", - "\n", - " quarter \n", - "country year \n", - "Bangladesh 2018 47 \n", - "Cambodia 2017 12 \n", - " 2018 14 \n", - " 2019 41 \n", - " 2020 207 \n", - "Thailand 2019 219 " - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df_samples.groupby(['country','year']).count()" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "60556bb1-9469-45d6-a96e-73e1d542e0fb", - "metadata": { - "tags": [] - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " \r" - ] - }, - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "Compute SNP allele counts: 0%| | 0/780 [00:00 1\u001b[0m pca \u001b[38;5;241m=\u001b[39m \u001b[43madir1\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpca\u001b[49m\u001b[43m(\u001b[49m\u001b[43mregion\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mKB672868\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mn_snps\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m100000\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msample_query\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcountry == \u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mThailand\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43msite_mask\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mdirus\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/util.py:1164\u001b[0m, in \u001b[0;36mcheck_types..check_types_wrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 1162\u001b[0m error \u001b[38;5;241m=\u001b[39m \u001b[38;5;167;01mTypeError\u001b[39;00m(message)\n\u001b[1;32m 1163\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m error \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;28mNone\u001b[39m\n\u001b[0;32m-> 1164\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mf\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/github/tristanpwdennis/malariagen-data-python/malariagen_data/anoph/pca.py:136\u001b[0m, in \u001b[0;36mAnophelesPca.pca\u001b[0;34m(self, region, n_snps, n_components, thin_offset, sample_sets, sample_query, sample_query_options, sample_indices, site_mask, site_class, min_minor_ac, max_missing_an, cohort_size, min_cohort_size, max_cohort_size, exclude_samples, fit_exclude_samples, random_seed, inline_array, chunks)\u001b[0m\n\u001b[1;32m 131\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msample_metadata(\n\u001b[1;32m 132\u001b[0m sample_sets\u001b[38;5;241m=\u001b[39msample_sets,\n\u001b[1;32m 133\u001b[0m )\n\u001b[1;32m 135\u001b[0m \u001b[38;5;66;03m# Ensure aligned with genotype data.\u001b[39;00m\n\u001b[0;32m--> 136\u001b[0m df_samples \u001b[38;5;241m=\u001b[39m \u001b[43mdf_samples\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mset_index\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43msample_id\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloc\u001b[49m\u001b[43m[\u001b[49m\u001b[43msamples\u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241m.\u001b[39mreset_index()\n\u001b[1;32m 138\u001b[0m \u001b[38;5;66;03m# Combine coords and sample metadata.\u001b[39;00m\n\u001b[1;32m 139\u001b[0m df_coords \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mDataFrame(\n\u001b[1;32m 140\u001b[0m {\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mPC\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mi\u001b[38;5;250m \u001b[39m\u001b[38;5;241m+\u001b[39m\u001b[38;5;250m \u001b[39m\u001b[38;5;241m1\u001b[39m\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m: coords[:, i] \u001b[38;5;28;01mfor\u001b[39;00m i \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(coords\u001b[38;5;241m.\u001b[39mshape[\u001b[38;5;241m1\u001b[39m])}\n\u001b[1;32m 141\u001b[0m )\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1103\u001b[0m, in \u001b[0;36m_LocationIndexer.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 1100\u001b[0m axis \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39maxis \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;241m0\u001b[39m\n\u001b[1;32m 1102\u001b[0m maybe_callable \u001b[38;5;241m=\u001b[39m com\u001b[38;5;241m.\u001b[39mapply_if_callable(key, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj)\n\u001b[0;32m-> 1103\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_axis\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmaybe_callable\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1332\u001b[0m, in \u001b[0;36m_LocIndexer._getitem_axis\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1329\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(key, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mndim\u001b[39m\u001b[38;5;124m\"\u001b[39m) \u001b[38;5;129;01mand\u001b[39;00m key\u001b[38;5;241m.\u001b[39mndim \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[1;32m 1330\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mCannot index with multidimensional key\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m-> 1332\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_getitem_iterable\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1334\u001b[0m \u001b[38;5;66;03m# nested tuple slicing\u001b[39;00m\n\u001b[1;32m 1335\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_nested_tuple(key, labels):\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1272\u001b[0m, in \u001b[0;36m_LocIndexer._getitem_iterable\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1269\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_validate_key(key, axis)\n\u001b[1;32m 1271\u001b[0m \u001b[38;5;66;03m# A collection of keys\u001b[39;00m\n\u001b[0;32m-> 1272\u001b[0m keyarr, indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_listlike_indexer\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1273\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_reindex_with_indexers(\n\u001b[1;32m 1274\u001b[0m {axis: [keyarr, indexer]}, copy\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, allow_dups\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 1275\u001b[0m )\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexing.py:1462\u001b[0m, in \u001b[0;36m_LocIndexer._get_listlike_indexer\u001b[0;34m(self, key, axis)\u001b[0m\n\u001b[1;32m 1459\u001b[0m ax \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_get_axis(axis)\n\u001b[1;32m 1460\u001b[0m axis_name \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mobj\u001b[38;5;241m.\u001b[39m_get_axis_name(axis)\n\u001b[0;32m-> 1462\u001b[0m keyarr, indexer \u001b[38;5;241m=\u001b[39m \u001b[43max\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1464\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m keyarr, indexer\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5876\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[0;34m(self, key, axis_name)\u001b[0m\n\u001b[1;32m 5873\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 5874\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[0;32m-> 5876\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5878\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[1;32m 5879\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[1;32m 5880\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", - "File \u001b[0;32m~/miniconda3/lib/python3.10/site-packages/pandas/core/indexes/base.py:5938\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[0;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[1;32m 5935\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 5937\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[0;32m-> 5938\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", - "\u001b[0;31mKeyError\u001b[0m: \"['VBS45975-6296STDY1024453', 'VBS45982-6296STDY9478589', 'VBS45983-6296STDY1024453', 'VBS45984-6296STDY1024453', 'VBS45985-6296STDY1024453', 'VBS45986-6296STDY1024454', 'VBS45987-6296STDY1024454', 'VBS45988-6296STDY1024454', 'VBS45989-6296STDY1024454', 'VBS45991-6296STDY1024454', 'VBS45992-6296STDY1024454', 'VBS45993-6296STDY1024454', 'VBS45994-6296STDY1024454', 'VBS45995-6296STDY1024454', 'VBS45996-6296STDY1024455', 'VBS45997-6296STDY1024455', 'VBS45998-6296STDY1024455', 'VBS45999-6296STDY1024455', 'VBS46000-6296STDY1024455', 'VBS46001-6296STDY1024455', 'VBS46002-6296STDY1024455', 'VBS46003-6296STDY1024455', 'VBS46004-6296STDY1024455', 'VBS46006-6296STDY1024456', 'VBS46007-6296STDY1024456', 'VBS46008-6296STDY1024456', 'VBS46009-6296STDY1024456', 'VBS46010-6296STDY1024456', 'VBS46011-6296STDY1024456', 'VBS46012-6296STDY1024456', 'VBS46013-6296STDY1024456', 'VBS46014-6296STDY1024456', 'VBS46016-6296STDY1024457', 'VBS46017-6296STDY1024457', 'VBS46019-6296STDY1024457', 'VBS46020-6296STDY1024457', 'VBS46021-6296STDY1024457', 'VBS46022-6296STDY1024457', 'VBS46025-6296STDY1024457', 'VBS46026-6296STDY1024458', 'VBS46027-6296STDY1024458', 'VBS46028-6296STDY1024458', 'VBS46029-6296STDY1024458', 'VBS46030-6296STDY1024458', 'VBS46031-6296STDY1024458', 'VBS46032-6296STDY1024458', 'VBS46033-6296STDY1024458', 'VBS46034-6296STDY1024458', 'VBS46035-6296STDY1024458', 'VBS46036-6296STDY1024459', 'VBS46037-6296STDY1024459', 'VBS46038-6296STDY1024459', 'VBS46039-6296STDY1024459', 'VBS46040-6296STDY1024459', 'VBS46041-6296STDY1024459', 'VBS46043-6296STDY1024459', 'VBS46044-6296STDY1024459', 'VBS46045-6296STDY1024459', 'VBS46046-6296STDY1024460', 'VBS46047-6296STDY1024460', 'VBS46048-6296STDY1024460', 'VBS46049-6296STDY1024460', 'VBS46051-6296STDY1024460', 'VBS46052-6296STDY1024460', 'VBS46053-6296STDY1024460', 'VBS46054-6296STDY1024460', 'VBS46055-6296STDY1024460', 'VBS46056-6296STDY1024461', 'VBS46057-6296STDY1024461', 'VBS46060-6296STDY1024461', 'VBS46061-6296STDY1024461', 'VBS46063-6296STDY1024461', 'VBS46064-6296STDY1024461', 'VBS46065-6296STDY1024461', 'VBS46068-6296STDY1024462', 'VBS46069-6296STDY1024462', 'VBS46070-6296STDY1024462', 'VBS46071-6296STDY1024462', 'VBS46072-6296STDY1024462', 'VBS46073-6296STDY1024462', 'VBS46074-6296STDY1024463', 'VBS46075-6296STDY1024463', 'VBS46076-6296STDY1024463', 'VBS46077-6296STDY1024463', 'VBS46079-6296STDY1024463', 'VBS46080-6296STDY1024463', 'VBS46081-6296STDY1024463', 'VBS46082-6296STDY1024463', 'VBS46085-6296STDY1024464', 'VBS46086-6296STDY1024464', 'VBS46089-6296STDY1024464', 'VBS46090-6296STDY1024464', 'VBS46091-6296STDY1024464', 'VBS46092-6296STDY1024464', 'VBS46093-6296STDY1024464', 'VBS46094-6296STDY1024465', 'VBS46095-6296STDY1024465', 'VBS46096-6296STDY1024465', 'VBS46097-6296STDY1024465', 'VBS46099-6296STDY1024465', 'VBS46100-6296STDY1024465', 'VBS46101-6296STDY1024465', 'VBS46102-6296STDY1024465', 'VBS46103-6296STDY1024465', 'VBS46104-6296STDY1024466', 'VBS46105-6296STDY1024466', 'VBS46106-6296STDY1024466', 'VBS46107-6296STDY1024466', 'VBS46108-6296STDY1024466', 'VBS46109-6296STDY1024466', 'VBS46110-6296STDY1024466', 'VBS46111-6296STDY1024466', 'VBS46112-6296STDY1024466', 'VBS46113-6296STDY1024466', 'VBS46114-6296STDY1024467', 'VBS46115-6296STDY1024467', 'VBS46116-6296STDY1024467', 'VBS46117-6296STDY1024467', 'VBS46118-6296STDY1024467', 'VBS46119-6296STDY1024467', 'VBS46120-6296STDY1024467', 'VBS46122-6296STDY1024467', 'VBS46123-6296STDY1024467', 'VBS46124-6296STDY1024468', 'VBS46125-6296STDY1024468', 'VBS46126-6296STDY1024468', 'VBS46127-6296STDY1024468', 'VBS46128-6296STDY1024468', 'VBS46129-6296STDY1024468', 'VBS46130-6296STDY1024468', 'VBS46131-6296STDY1024468', 'VBS46132-6296STDY1024468', 'VBS46133-6296STDY1024468', 'VBS46134-6296STDY1024469', 'VBS46135-6296STDY1024469', 'VBS46136-6296STDY1024469', 'VBS46137-6296STDY1024469', 'VBS46138-6296STDY1024469', 'VBS46139-6296STDY1024469', 'VBS46140-6296STDY1024469', 'VBS46142-6296STDY1024469', 'VBS46143-6296STDY1024469', 'VBS46144-6296STDY1024470', 'VBS46147-6296STDY1024470', 'VBS46148-6296STDY1024470', 'VBS46149-6296STDY1024470', 'VBS46150-6296STDY1024470', 'VBS46151-6296STDY1024470', 'VBS46152-6296STDY1024470', 'VBS46153-6296STDY1024470', 'VBS46155-6296STDY1024471', 'VBS46156-6296STDY1024471', 'VBS46157-6296STDY1024471', 'VBS46158-6296STDY1024471', 'VBS46160-6296STDY1024471', 'VBS46161-6296STDY1024471', 'VBS46162-6296STDY1024471', 'VBS46163-6296STDY1024472', 'VBS46164-6296STDY1024472', 'VBS46165-6296STDY1024472', 'VBS46166-6296STDY1024472', 'VBS46170-6296STDY1024472', 'VBS46171-6296STDY1024472', 'VBS46174-6296STDY1024473', 'VBS46176-6296STDY1024473', 'VBS46177-6296STDY1024473', 'VBS46178-6296STDY1024473', 'VBS46179-6296STDY1024473', 'VBS46181-6296STDY1024473', 'VBS46182-6296STDY1024473', 'VBS46184-6296STDY1024474', 'VBS46185-6296STDY1024474', 'VBS46186-6296STDY1024474', 'VBS46193-6296STDY1024474', 'VBS46194-6296STDY1024475', 'VBS46195-6296STDY1024475', 'VBS46196-6296STDY1024475', 'VBS46197-6296STDY1024475', 'VBS46199-6296STDY1024475', 'VBS46200-6296STDY1024475', 'VBS46201-6296STDY1024475', 'VBS46202-6296STDY1024475', 'VBS46203-6296STDY1024475', 'VBS46204-6296STDY1024476', 'VBS46205-6296STDY1024476', 'VBS46206-6296STDY1024476', 'VBS46207-6296STDY1024476'] not in index\"" - ] - } - ], - "source": [ - "pca = adir1.pca(region = \"KB672868\", n_snps=100000, sample_query = \"country == 'Thailand'\", site_mask = \"dirus\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d1b167fd-06e8-40b8-ba5f-5e8fa43dc931", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "malariagen-data-py3.10 (3.10.10)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.10" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/test_release/bin/python b/test_release/bin/python deleted file mode 120000 index a9cc0f749..000000000 --- a/test_release/bin/python +++ /dev/null @@ -1 +0,0 @@ -/Users/dennistpw/miniconda3/bin/python \ No newline at end of file diff --git a/test_release/bin/python3 b/test_release/bin/python3 deleted file mode 120000 index d8654aa0e..000000000 --- a/test_release/bin/python3 +++ /dev/null @@ -1 +0,0 @@ -python \ No newline at end of file diff --git a/test_release/bin/python3.10 b/test_release/bin/python3.10 deleted file mode 120000 index d8654aa0e..000000000 --- a/test_release/bin/python3.10 +++ /dev/null @@ -1 +0,0 @@ -python \ No newline at end of file diff --git a/test_release/pyvenv.cfg b/test_release/pyvenv.cfg deleted file mode 100644 index 169b295f8..000000000 --- a/test_release/pyvenv.cfg +++ /dev/null @@ -1,3 +0,0 @@ -home = /Users/dennistpw/miniconda3/bin -include-system-site-packages = false -version = 3.10.10 From 844eebea46b6ee80c74b6c4f35c552c7a3e04ad9 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 15 Oct 2025 10:37:47 +1000 Subject: [PATCH 28/41] Change location to release bucket --- malariagen_data/adir1.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index d1d4fc748..7abdecbbe 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -8,10 +8,10 @@ MAJOR_VERSION_NUMBER = 1 MAJOR_VERSION_PATH = "v1.0" CONFIG_PATH = "v1.0-config.json" -GCS_DEFAULT_URL = "gs://vo_adir_production_us_central1/release/" -GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_production_us_central1/release/" +GCS_DEFAULT_URL = "gs://vo_adir_release_us_central1/" +GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_release_us_central1/" GCS_REGION_URLS = { - "us-central1": "gs://vo_adir_production_us_central1", + "us-central1": "gs://vo_adir_release_us_central1", } TAXON_PALETTE = px.colors.qualitative.Plotly From 27560f4489fc29339fccbbcb96b4054f36347bf1 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Sun, 19 Oct 2025 13:57:57 +1000 Subject: [PATCH 29/41] update bucket path in class file --- malariagen_data/adir1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 7abdecbbe..e2902b430 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -60,7 +60,7 @@ class Adir1(AnophelesDataResource): in a directory named "gcs_cache": >>> adir1 = malariagen_data.Adir1( - ... "simplecache::gs://vo_adir_production_us_central1", + ... "simplecache::gs://vo_adir_release_us_central1", ... simplecache=dict(cache_storage="gcs_cache"), ... ) From 108ce5552ce29bf01cee76c089e8f5aec24f4a4d Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 21 Oct 2025 10:38:31 +1000 Subject: [PATCH 30/41] add new bucket path --- malariagen_data/adir1.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index e2902b430..d5e1e7134 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -8,10 +8,10 @@ MAJOR_VERSION_NUMBER = 1 MAJOR_VERSION_PATH = "v1.0" CONFIG_PATH = "v1.0-config.json" -GCS_DEFAULT_URL = "gs://vo_adir_release_us_central1/" -GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_release_us_central1/" +GCS_DEFAULT_URL = "gs://vo_adir_release_master_us_central1/" +GCS_DEFAULT_PUBLIC_URL = "gs://vo_adir_release_master_us_central1/" GCS_REGION_URLS = { - "us-central1": "gs://vo_adir_release_us_central1", + "us-central1": "gs://vo_adir_release_master_us_central1", } TAXON_PALETTE = px.colors.qualitative.Plotly @@ -60,7 +60,7 @@ class Adir1(AnophelesDataResource): in a directory named "gcs_cache": >>> adir1 = malariagen_data.Adir1( - ... "simplecache::gs://vo_adir_release_us_central1", + ... "simplecache::gs://vo_adir_release_master_us_central1", ... simplecache=dict(cache_storage="gcs_cache"), ... ) From ccba40215caaf2eeee4565f912565d13a37e8b8e Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 22 Oct 2025 08:02:46 +1000 Subject: [PATCH 31/41] ud bucket location in adir1 integration test --- tests/integration/test_adir1.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/integration/test_adir1.py b/tests/integration/test_adir1.py index 8d8de9816..1952d0ccd 100644 --- a/tests/integration/test_adir1.py +++ b/tests/integration/test_adir1.py @@ -5,9 +5,7 @@ from malariagen_data.util import locate_region, resolve_region -def setup_adir1( - url="simplecache::gs://vo_adir_production_us_central1/release/", **kwargs -): +def setup_adir1(url="simplecache::gs://vo_adir_release_master_us_central1/", **kwargs): kwargs.setdefault("check_location", False) kwargs.setdefault("show_progress", False) if url is None: From ef780312c8790a3f95c5a4983bc77e26f3e4a8ee Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 29 Oct 2025 16:26:27 +1000 Subject: [PATCH 32/41] force sync adir1.x with local --- malariagen_data/adir1.py | 3 --- malariagen_data/anopheles.py | 7 ++++++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index d5e1e7134..5b2f28799 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -71,9 +71,6 @@ class Adir1(AnophelesDataResource): """ - # _xpehh_gwss_cache_name = XPEHH_GWSS_CACHE_NAME - # _ihs_gwss_cache_name = IHS_GWSS_CACHE_NAME - def __init__( self, url=None, diff --git a/malariagen_data/anopheles.py b/malariagen_data/anopheles.py index 3c8572b67..2da2e5735 100644 --- a/malariagen_data/anopheles.py +++ b/malariagen_data/anopheles.py @@ -556,6 +556,11 @@ def _sample_count_het( return sample_id, sample_set, windows, counts + @property + @abstractmethod + def _roh_hmm_cache_name(self): + raise NotImplementedError("Must override _roh_hmm_cache_name") + @check_types @doc( summary="Infer runs of homozygosity for a single sample over a genome region.", @@ -577,7 +582,7 @@ def roh_hmm( resolved_region: Region = parse_single_region(self, region) - name = "roh" + name = self._roh_hmm_cache_name params = dict( sample=sample, From 686a5560761b567bf89cee4b6775dca089d49c02 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Thu, 30 Oct 2025 13:48:03 +1000 Subject: [PATCH 33/41] add conf tests for dirus, simulated data, fixture, etc --- tests/anoph/conftest.py | 325 ++++++++++++++++++ .../samples.admin_units.csv | 48 +++ .../samples.cohorts.csv | 48 +++ .../1276-AD-BD-ALAM-VMF00156/samples.taxa.csv | 48 +++ .../samples.admin_units.csv | 27 ++ .../samples.cohorts.csv | 27 ++ .../samples.taxa.csv | 27 ++ .../sequence_qc_stats.csv | 48 +++ .../sequence_qc_stats.csv | 27 ++ .../1276-AD-BD-ALAM-VMF00156/samples.meta.csv | 48 +++ .../sequence_qc_stats.csv | 48 +++ .../1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv | 48 +++ .../samples.meta.csv | 27 ++ .../sequence_qc_stats.csv | 27 ++ .../wgs_snp_data.csv | 27 ++ tests/anoph/test_sample_metadata.py | 36 ++ tests/anoph/test_snp_data.py | 23 ++ 17 files changed, 909 insertions(+) create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv diff --git a/tests/anoph/conftest.py b/tests/anoph/conftest.py index 9f258c295..7e7cd94d5 100644 --- a/tests/anoph/conftest.py +++ b/tests/anoph/conftest.py @@ -2364,6 +2364,326 @@ def init_cnv_discordant_read_calls(self): ) +class Adir1Simulator(AnophelesSimulator): + def __init__(self, fixture_dir): + super().__init__( + fixture_dir=fixture_dir, + bucket="vo_adir_release_master_us_central1", + releases=("1.0",), + has_aims=False, + has_cohorts_by_quarter=False, + has_sequence_qc=True, + ) + + def init_config(self): + self.config = { + "PUBLIC_RELEASES": ["1.0"], + "GENESET_GFF3_PATH": "reference/genome/AdirusWRAIR2/VectorBase-68_AdirusWRAIR2.gff.gz", + "GENOME_FASTA_PATH": "reference/genome/AdirusWRAIR2/VectorBase-56_AdirusWRAIR2_Genome.fasta", + "GENOME_FAI_PATH": "reference/genome/AdirusWRAIR2/VectorBase-56_AdirusWRAIR2_Genome.fasta.fai", + "GENOME_ZARR_PATH": "reference/genome/AdirusWRAIR2/VectorBase-56_AdirusWRAIR2_Genome.zarr", + "GENOME_REF_ID": "AdirusWRAIR2", + "GENOME_REF_NAME": "Anopheles dirus", + "CONTIGS": [ + "KB672490", + "KB672868", + "KB672979", + ], # Just using the three largest. + "SITE_ANNOTATIONS_ZARR_PATH": "reference/genome/AdirusWRAIR2/VectorBase-56_AdirusWRAIR2_Genome.SEQANNOTATION.zarr", + "DEFAULT_SITE_FILTERS_ANALYSIS": "sc_20250610", + "DEFAULT_COHORTS_ANALYSIS": "20250710", + "DEFAULT_DISCORDANT_READ_CALLS_ANALYSIS": "", + "SITE_MASK_IDS": ["dirus"], + "PHASING_ANALYSIS_IDS": ["dirus_noneyet"], + } + config_path = self.bucket_path / "v1.0-config.json" + with config_path.open(mode="w") as f: + json.dump(self.config, f, indent=4) + + def init_public_release_manifest(self): + # Here we create a release manifest for an Adir1-style + # public release. Note this is not the exact same data + # as the real release. + release_path = self.bucket_path / "v1.0" + release_path.mkdir(parents=True, exist_ok=True) + manifest_path = release_path / "manifest.tsv" + manifest = pd.DataFrame( + { + "sample_set": [ + "1277-VO-KH-WITKOWSKI-VMF00151", + "1276-AD-BD-ALAM-VMF00156", + ], + "sample_count": [20, 10], + "study_id": [ + "1277-VO-KH-WITKOWSKI", + "1276-AD-BD-ALAM", + ], + "study_url": [ + "https://www.malariagen.net/network/where-we-work/1277-VO-KH-WITKOWSKI", + "https://www.malariagen.net/network/where-we-work/1276-AD-BD-ALAM", + ], + "terms_of_use_expiry_date": [ + "2027-06-01", + "2027-06-01", + ], + "terms_of_use_url": [ + "https://malariagen.github.io/vector-data/adir1/adir1.0.html#terms-of-use", + "https://malariagen.github.io/vector-data/adir1/adir1.0.html#terms-of-use", + ], + } + ) + manifest.to_csv(manifest_path, index=False, sep="\t") + self.release_manifests["1.0"] = manifest + + def init_genome_sequence(self): + # Here we simulate a reference genome in a simple way + # but with much smaller contigs. The data are stored + # using zarr as with the real data releases. + + # Use real base composition. + base_composition = { + b"a": 0.0, + b"c": 0.0, + b"g": 0.0, + b"t": 0.0, + b"n": 0.0, + b"A": 0.29432128333333335, + b"C": 0.20542065, + b"G": 0.20575796666666665, + b"T": 0.2944834333333333, + b"N": 1.6666666666666667e-05, + } + path = self.bucket_path / self.config["GENOME_ZARR_PATH"] + self.genome = simulate_genome( + path=path, + contigs=self.contigs, + low=80_000, + high=120_000, + base_composition=base_composition, + ) + self.contig_sizes = { + contig: self.genome[contig].shape[0] for contig in self.contigs + } + + def init_genome_features(self): + path = self.bucket_path / self.config["GENESET_GFF3_PATH"] + path.parent.mkdir(parents=True, exist_ok=True) + simulator = Gff3Simulator( + contig_sizes=self.contig_sizes, + # Af1 has a different gene type + gene_type="protein_coding_gene", + # Af1 has different attributes + attrs=("Note", "description"), + ) + self.genome_features = simulator.simulate_gff(path=path) + + def write_metadata(self, release, release_path, sample_set, sequence_qc=True): + # Here we take the approach of using some of the real metadata, + # but truncating it to the number of samples included in the + # simulated data resource. + + # Look up the number of samples in this sample set within the + # simulated data resource. + n_samples_sim = ( + self.release_manifests[release] + .set_index("sample_set") + .loc[sample_set]["sample_count"] + ) + + # Create general metadata by sampling from some real metadata files. + src_path = ( + self.fixture_dir + / "vo_adir_release_master_us_central1" + / release_path + / "metadata" + / "general" + / sample_set + / "samples.meta.csv" + ) + df_general = pd.read_csv(src_path) + df_general_ds = df_general.sample(n_samples_sim, replace=False) + samples_ds = df_general_ds["sample_id"].tolist() + dst_path = ( + self.bucket_path + / release_path + / "metadata" + / "general" + / sample_set + / "samples.meta.csv" + ) + dst_path.parent.mkdir(parents=True, exist_ok=True) + df_general_ds.to_csv(dst_path, index=False) + + if sequence_qc: + # Create sequence QC metadata by sample from real metadata files. + src_path = ( + self.fixture_dir + / "vo_adir_release_master_us_central1" + / release_path + / "metadata" + / "curation" + / sample_set + / "sequence_qc_stats.csv" + ) + df_sequence_qc_stats = pd.read_csv(src_path) + df_sequence_qc_stats_ds = ( + df_sequence_qc_stats.set_index("sample_id") + .loc[samples_ds] + .reset_index() + ) + dst_path = ( + self.bucket_path + / release_path + / "metadata" + / "curation" + / sample_set + / "sequence_qc_stats.csv" + ) + dst_path.parent.mkdir(parents=True, exist_ok=True) + df_sequence_qc_stats_ds.to_csv(dst_path, index=False) + + # Create cohorts metadata by sampling from some real metadata files. + src_path = ( + self.fixture_dir + / "vo_adir_release_master_us_central1" + / release_path + / "metadata" + / "cohorts_20250710" + / sample_set + / "samples.cohorts.csv" + ) + df_coh = pd.read_csv(src_path) + df_coh_ds = df_coh.set_index("sample_id").loc[samples_ds].reset_index() + dst_path = ( + self.bucket_path + / release_path + / "metadata" + / "cohorts_20250710" + / sample_set + / "samples.cohorts.csv" + ) + dst_path.parent.mkdir(parents=True, exist_ok=True) + df_coh_ds.to_csv(dst_path, index=False) + + # Create data catalog by sampling from some real metadata files. + src_path = ( + self.fixture_dir + / "vo_adir_release_master_us_central1" + / release_path + / "metadata" + / "general" + / sample_set + / "wgs_snp_data.csv" + ) + df_cat = pd.read_csv(src_path) + df_cat_ds = df_cat.set_index("sample_id").loc[samples_ds].reset_index() + dst_path = ( + self.bucket_path + / release_path + / "metadata" + / "general" + / sample_set + / "wgs_snp_data.csv" + ) + dst_path.parent.mkdir(parents=True, exist_ok=True) + df_cat_ds.to_csv(dst_path, index=False) + + # # Create accessions catalog by sampling from some real metadata files. + # src_path = ( + # self.fixture_dir + # / "vo_adir_release_master_us_central1" + # / release_path + # / "metadata" + # / "general" + # / sample_set + # / "wgs_accession_data.csv" + # ) + # df_cat = pd.read_csv(src_path) + # df_cat_ds = df_cat.set_index("sample_id").loc[samples_ds].reset_index() + # dst_path = ( + # self.bucket_path + # / release_path + # / "metadata" + # / "general" + # / sample_set + # / "wgs_accession_data.csv" + # ) + # dst_path.parent.mkdir(parents=True, exist_ok=True) + # df_cat_ds.to_csv(dst_path, index=False) + + def init_metadata(self): + self.write_metadata( + release="1.0", + release_path="v1.0", + sample_set="1277-VO-KH-WITKOWSKI-VMF00151", + ) + self.write_metadata( + release="1.0", + release_path="v1.0", + sample_set="1276-AD-BD-ALAM-VMF00156", + ) + + def init_snp_sites(self): + path = self.bucket_path / "v1.0/snp_genotypes/all/sites/" + self.snp_sites, self.n_snp_sites = simulate_snp_sites( + path=path, contigs=self.contigs, genome=self.genome + ) + + def init_site_filters(self): + analysis = self.config["DEFAULT_SITE_FILTERS_ANALYSIS"] + + # Simulate the funestus mask. + mask = "dirus" + p_pass = 0.59 + path = self.bucket_path / "v1.0/site_filters" / analysis / mask + simulate_site_filters( + path=path, contigs=self.contigs, p_pass=p_pass, n_sites=self.n_snp_sites + ) + + def init_snp_genotypes(self): + # Iterate over releases. + for release, manifest in self.release_manifests.items(): + # Determine release path. + release_path = f"v{release}" + + # Iterate over sample sets in the release. + for rec in manifest.itertuples(): + sample_set = rec.sample_set + metadata_path = ( + self.bucket_path + / release_path + / "metadata" + / "general" + / sample_set + / "samples.meta.csv" + ) + + # Create zarr hierarchy. + zarr_path = ( + self.bucket_path + / release_path + / "snp_genotypes" + / "all" + / sample_set + ) + + # Simulate SNP genotype data. + p_allele = np.array([0.981, 0.006, 0.008, 0.005]) + p_missing = np.array([0.95, 0.05]) + simulate_snp_genotypes( + zarr_path=zarr_path, + metadata_path=metadata_path, + contigs=self.contigs, + n_sites=self.n_snp_sites, + p_allele=p_allele, + p_missing=p_missing, + ) + + def init_site_annotations(self): + path = self.bucket_path / self.config["SITE_ANNOTATIONS_ZARR_PATH"] + simulate_site_annotations(path=path, genome=self.genome) + + # For the following data fixtures we will use the "session" scope # so that the fixture data will be created only once per test # session (i.e., per invocation of pytest). @@ -2384,3 +2704,8 @@ def ag3_sim_fixture(fixture_dir): @pytest.fixture(scope="session") def af1_sim_fixture(fixture_dir): return Af1Simulator(fixture_dir=fixture_dir) + + +@pytest.fixture(scope="session") +def adir1_sim_fixture(fixture_dir): + return Adir1Simulator(fixture_dir=fixture_dir) diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv new file mode 100644 index 000000000..cfb109ef1 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv @@ -0,0 +1,48 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS46299-6321STDY9453299,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46307-6321STDY9453307,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46315-6321STDY9453315,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46323-6321STDY9453323,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46331-6321STDY9453331,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46339-6321STDY9453339,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46300-6321STDY9453300,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46308-6321STDY9453308,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46316-6321STDY9453316,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46324-6321STDY9453324,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46332-6321STDY9453332,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46340-6321STDY9453340,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46301-6321STDY9453301,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46309-6321STDY9453309,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46317-6321STDY9453317,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46325-6321STDY9453325,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46333-6321STDY9453333,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46341-6321STDY9453341,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46302-6321STDY9453302,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46310-6321STDY9453310,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46318-6321STDY9453318,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46326-6321STDY9453326,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46334-6321STDY9453334,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46342-6321STDY9453342,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46303-6321STDY9453303,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46311-6321STDY9453311,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46319-6321STDY9453319,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46327-6321STDY9453327,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46335-6321STDY9453335,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46343-6321STDY9453343,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46304-6321STDY9453304,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46312-6321STDY9453312,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46320-6321STDY9453320,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46328-6321STDY9453328,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46336-6321STDY9453336,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46344-6321STDY9453344,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46305-6321STDY9453305,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46313-6321STDY9453313,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46321-6321STDY9453321,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46329-6321STDY9453329,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46337-6321STDY9453337,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46345-6321STDY9453345,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46306-6321STDY9453306,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46314-6321STDY9453314,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46322-6321STDY9453322,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46330-6321STDY9453330,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46338-6321STDY9453338,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv new file mode 100644 index 000000000..23f0d4382 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv @@ -0,0 +1,48 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS46299-6321STDY9453299,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46307-6321STDY9453307,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46315-6321STDY9453315,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46323-6321STDY9453323,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46331-6321STDY9453331,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46339-6321STDY9453339,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46300-6321STDY9453300,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46308-6321STDY9453308,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46316-6321STDY9453316,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46324-6321STDY9453324,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46332-6321STDY9453332,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46340-6321STDY9453340,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_10,BD-B_Bandarban_baim_2018_Q4 +VBS46301-6321STDY9453301,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46309-6321STDY9453309,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46317-6321STDY9453317,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46325-6321STDY9453325,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46333-6321STDY9453333,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46341-6321STDY9453341,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46302-6321STDY9453302,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46310-6321STDY9453310,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_06,BD-B_Rangamati_baim_2018_Q2 +VBS46318-6321STDY9453318,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46326-6321STDY9453326,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46334-6321STDY9453334,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46342-6321STDY9453342,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46303-6321STDY9453303,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46311-6321STDY9453311,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46319-6321STDY9453319,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46327-6321STDY9453327,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46335-6321STDY9453335,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46343-6321STDY9453343,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46304-6321STDY9453304,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46312-6321STDY9453312,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46320-6321STDY9453320,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46328-6321STDY9453328,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46336-6321STDY9453336,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46344-6321STDY9453344,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46305-6321STDY9453305,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46313-6321STDY9453313,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46321-6321STDY9453321,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46329-6321STDY9453329,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46337-6321STDY9453337,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46345-6321STDY9453345,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46306-6321STDY9453306,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46314-6321STDY9453314,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46322-6321STDY9453322,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46330-6321STDY9453330,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46338-6321STDY9453338,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv new file mode 100644 index 000000000..b6e56d8a5 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv @@ -0,0 +1,48 @@ +sample_id,taxon +VBS46299-6321STDY9453299,baimaii +VBS46307-6321STDY9453307,baimaii +VBS46315-6321STDY9453315,baimaii +VBS46323-6321STDY9453323,baimaii +VBS46331-6321STDY9453331,baimaii +VBS46339-6321STDY9453339,baimaii +VBS46300-6321STDY9453300,baimaii +VBS46308-6321STDY9453308,baimaii +VBS46316-6321STDY9453316,baimaii +VBS46324-6321STDY9453324,baimaii +VBS46332-6321STDY9453332,baimaii +VBS46340-6321STDY9453340,baimaii +VBS46301-6321STDY9453301,baimaii +VBS46309-6321STDY9453309,baimaii +VBS46317-6321STDY9453317,baimaii +VBS46325-6321STDY9453325,baimaii +VBS46333-6321STDY9453333,baimaii +VBS46341-6321STDY9453341,baimaii +VBS46302-6321STDY9453302,baimaii +VBS46310-6321STDY9453310,baimaii +VBS46318-6321STDY9453318,baimaii +VBS46326-6321STDY9453326,baimaii +VBS46334-6321STDY9453334,baimaii +VBS46342-6321STDY9453342,baimaii +VBS46303-6321STDY9453303,baimaii +VBS46311-6321STDY9453311,baimaii +VBS46319-6321STDY9453319,baimaii +VBS46327-6321STDY9453327,baimaii +VBS46335-6321STDY9453335,baimaii +VBS46343-6321STDY9453343,baimaii +VBS46304-6321STDY9453304,baimaii +VBS46312-6321STDY9453312,baimaii +VBS46320-6321STDY9453320,baimaii +VBS46328-6321STDY9453328,baimaii +VBS46336-6321STDY9453336,baimaii +VBS46344-6321STDY9453344,baimaii +VBS46305-6321STDY9453305,baimaii +VBS46313-6321STDY9453313,baimaii +VBS46321-6321STDY9453321,baimaii +VBS46329-6321STDY9453329,baimaii +VBS46337-6321STDY9453337,baimaii +VBS46345-6321STDY9453345,baimaii +VBS46306-6321STDY9453306,baimaii +VBS46314-6321STDY9453314,baimaii +VBS46322-6321STDY9453322,baimaii +VBS46330-6321STDY9453330,baimaii +VBS46338-6321STDY9453338,baimaii diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv new file mode 100644 index 000000000..a4b676943 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv @@ -0,0 +1,27 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45687-6143STDY8787412,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45688-6143STDY8787413,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45689-6143STDY8787414,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45690-6143STDY8787415,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45691-6143STDY8787416,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45692-6143STDY8787417,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45701-6143STDY8787420,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45702-6143STDY8787421,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45708-6143STDY8787424,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45709-6143STDY8787425,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45711-6143STDY8787426,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45713-6143STDY8787427,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45717-6143STDY8787429,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45718-6143STDY8787430,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45720-6143STDY8787431,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45723-6143STDY8787432,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45724-6143STDY8787433,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45728-6143STDY8787434,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45734-6143STDY8787435,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45735-6143STDY8787436,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45737-6143STDY8787437,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45738-6143STDY8787438,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45739-6143STDY8787439,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45742-6143STDY8787440,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45743-6143STDY8787441,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45745-6143STDY8787442,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv new file mode 100644 index 000000000..4e11f7239 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv @@ -0,0 +1,27 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45687-6143STDY8787412,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45688-6143STDY8787413,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45689-6143STDY8787414,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45690-6143STDY8787415,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45691-6143STDY8787416,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45692-6143STDY8787417,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45701-6143STDY8787420,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45702-6143STDY8787421,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45708-6143STDY8787424,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45709-6143STDY8787425,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45711-6143STDY8787426,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45713-6143STDY8787427,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45717-6143STDY8787429,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45718-6143STDY8787430,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45720-6143STDY8787431,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45723-6143STDY8787432,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45724-6143STDY8787433,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45728-6143STDY8787434,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45734-6143STDY8787435,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45735-6143STDY8787436,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45737-6143STDY8787437,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45738-6143STDY8787438,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45739-6143STDY8787439,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45742-6143STDY8787440,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45743-6143STDY8787441,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45745-6143STDY8787442,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv new file mode 100644 index 000000000..39284922d --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv @@ -0,0 +1,27 @@ +sample_id,taxon +VBS45687-6143STDY8787412,dirus +VBS45688-6143STDY8787413,dirus +VBS45689-6143STDY8787414,dirus +VBS45690-6143STDY8787415,dirus +VBS45691-6143STDY8787416,dirus +VBS45692-6143STDY8787417,dirus +VBS45701-6143STDY8787420,dirus +VBS45702-6143STDY8787421,dirus +VBS45708-6143STDY8787424,dirus +VBS45709-6143STDY8787425,dirus +VBS45711-6143STDY8787426,dirus +VBS45713-6143STDY8787427,dirus +VBS45717-6143STDY8787429,dirus +VBS45718-6143STDY8787430,dirus +VBS45720-6143STDY8787431,dirus +VBS45723-6143STDY8787432,dirus +VBS45724-6143STDY8787433,dirus +VBS45728-6143STDY8787434,dirus +VBS45734-6143STDY8787435,dirus +VBS45735-6143STDY8787436,dirus +VBS45737-6143STDY8787437,dirus +VBS45738-6143STDY8787438,dirus +VBS45739-6143STDY8787439,dirus +VBS45742-6143STDY8787440,dirus +VBS45743-6143STDY8787441,dirus +VBS45745-6143STDY8787442,dirus diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..8cc1f9da5 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS46299-6321STDY9453299,41.69,42,43,42.02,42,43,41.69,42,42,43.08,43,43,39.73,40,41,41.48,42,42,0.957,0.03433 +1,VBS46300-6321STDY9453300,52.55,53,54,53.0,54,54,52.56,53,54,54.34,55,55,49.91,51,52,52.35,53,53,0.957,0.03436 +2,VBS46301-6321STDY9453301,67.77,69,70,68.26,69,70,67.76,69,69,70.22,71,71,64.45,66,68,67.48,69,70,0.957,0.03442 +3,VBS46302-6321STDY9453302,62.53,63,64,63.09,64,64,62.5,63,64,64.97,65,65,59.1,61,62,62.21,63,64,0.958,0.03441 +4,VBS46303-6321STDY9453303,44.29,45,45,44.67,45,45,44.25,45,45,45.88,46,46,42.03,43,44,44.14,45,45,0.959,0.03424 +5,VBS46304-6321STDY9453304,63.22,64,65,63.72,64,65,63.19,64,65,65.51,66,66,59.98,61,63,63.0,64,65,0.958,0.03448 +6,VBS46305-6321STDY9453305,66.57,68,68,67.22,68,68,66.65,68,67,69.32,70,69,62.55,64,66,66.17,67,68,0.957,0.03441 +7,VBS46306-6321STDY9453306,55.32,56,57,55.87,56,57,55.26,56,57,57.67,58,58,52.19,54,55,54.9,56,57,0.957,0.03434 +8,VBS46307-6321STDY9453307,47.91,48,49,48.35,49,49,47.96,48,49,49.81,50,49,45.08,46,48,47.73,48,49,0.958,0.03415 +9,VBS46308-6321STDY9453308,60.89,62,62,61.42,62,63,60.85,62,62,63.53,64,63,57.36,59,60,60.56,62,62,0.958,0.03438 +10,VBS46309-6321STDY9453309,56.93,58,58,57.43,58,58,56.96,58,58,58.55,59,59,54.33,56,57,56.72,58,58,0.959,0.03429 +11,VBS46310-6321STDY9453310,63.49,64,64,63.85,64,64,63.43,64,65,64.99,65,65,61.5,63,63,63.23,64,64,0.958,0.03447 +12,VBS46311-6321STDY9453311,61.87,63,63,62.59,63,64,61.86,63,63,64.63,65,65,57.85,59,61,61.49,62,62,0.958,0.03439 +13,VBS46312-6321STDY9453312,73.44,75,76,73.98,75,76,73.41,75,76,75.79,76,76,69.98,72,74,73.31,75,75,0.959,0.0345 +14,VBS46313-6321STDY9453313,53.08,54,54,53.62,54,54,53.13,54,54,55.22,55,55,49.87,51,53,52.85,54,53,0.959,0.03427 +15,VBS46314-6321STDY9453314,46.94,48,48,47.42,48,48,46.97,47,48,48.91,49,49,43.98,45,46,46.76,47,48,0.959,0.03424 +16,VBS46315-6321STDY9453315,40.19,40,40,40.49,41,41,40.18,40,40,41.62,41,41,38.19,39,39,40.06,40,40,0.956,0.03426 +17,VBS46316-6321STDY9453316,50.42,51,51,50.86,51,52,50.34,51,51,52.46,53,53,47.63,49,50,50.25,51,51,0.957,0.03433 +18,VBS46317-6321STDY9453317,56.41,57,58,56.99,58,58,56.45,57,57,58.84,59,59,52.81,54,56,56.17,57,57,0.959,0.0343 +19,VBS46318-6321STDY9453318,60.31,61,62,60.96,62,62,60.39,61,61,62.89,63,63,56.35,58,59,60.12,61,62,0.961,0.03434 +20,VBS46319-6321STDY9453319,55.85,57,57,56.41,57,57,55.8,56,57,58.31,58,58,52.45,54,55,55.54,56,56,0.957,0.03435 +21,VBS46320-6321STDY9453320,53.39,54,55,53.77,54,55,53.38,54,55,55.44,56,55,50.6,52,53,53.18,54,55,0.957,0.03434 +22,VBS46321-6321STDY9453321,69.25,70,71,70.16,71,72,69.19,70,71,72.5,73,73,64.38,67,69,68.95,70,71,0.96,0.03429 +23,VBS46322-6321STDY9453322,76.33,78,78,77.0,78,79,76.25,78,78,79.39,80,80,72.09,75,76,76.0,78,78,0.958,0.03438 +24,VBS46323-6321STDY9453323,50.47,51,52,50.99,52,52,50.51,51,51,52.64,53,53,47.38,49,50,50.14,51,51,0.959,0.03426 +25,VBS46324-6321STDY9453324,47.33,48,48,47.78,48,49,47.28,48,48,49.09,49,49,44.91,46,47,47.01,48,48,0.957,0.0343 +26,VBS46325-6321STDY9453325,64.46,65,66,65.24,66,66,64.38,65,66,67.53,68,68,60.2,62,63,63.97,65,65,0.958,0.03439 +27,VBS46326-6321STDY9453326,57.67,58,59,58.34,59,59,57.73,58,58,60.27,60,60,53.65,55,57,57.48,58,59,0.96,0.03432 +28,VBS46327-6321STDY9453327,63.05,64,64,63.63,64,65,62.97,64,64,65.63,66,66,59.43,61,63,62.83,64,64,0.958,0.0344 +29,VBS46328-6321STDY9453328,56.21,57,57,56.79,57,58,56.29,57,58,58.57,59,59,52.63,54,55,55.95,57,57,0.959,0.03423 +30,VBS46329-6321STDY9453329,62.43,63,64,62.99,64,64,62.48,63,64,64.93,65,65,58.89,61,62,62.05,63,63,0.958,0.03439 +31,VBS46330-6321STDY9453330,67.2,68,69,67.98,69,69,67.11,68,68,70.18,70,70,62.79,64,66,66.97,68,69,0.958,0.03445 +32,VBS46331-6321STDY9453331,53.05,54,54,53.73,54,54,53.12,54,54,55.63,56,55,49.1,50,51,52.74,53,54,0.959,0.03424 +33,VBS46332-6321STDY9453332,32.34,32,32,32.43,32,32,32.3,32,32,33.45,33,33,30.72,31,32,32.62,33,33,0.958,0.03412 +34,VBS46333-6321STDY9453333,59.06,59,59,59.92,60,59,58.94,59,59,61.85,62,61,54.62,55,56,58.97,59,59,0.957,0.03442 +35,VBS46334-6321STDY9453334,59.96,61,61,60.67,61,61,59.99,61,61,62.7,63,63,55.97,57,58,59.49,60,61,0.958,0.0343 +36,VBS46335-6321STDY9453335,66.27,67,68,67.01,68,69,66.31,67,68,69.36,70,70,61.73,64,66,65.94,67,68,0.961,0.03436 +37,VBS46336-6321STDY9453336,54.48,55,55,55.03,56,56,54.46,55,55,56.94,57,57,51.12,52,53,54.09,55,55,0.958,0.03428 +38,VBS46337-6321STDY9453337,46.2,47,47,46.67,47,47,46.16,46,47,47.99,48,47,43.58,44,46,45.98,46,47,0.957,0.03426 +39,VBS46338-6321STDY9453338,49.41,50,50,49.9,50,51,49.54,50,50,51.4,51,51,46.42,48,48,49.09,50,50,0.959,0.03421 +40,VBS46339-6321STDY9453339,58.79,59,59,59.58,60,60,58.66,59,59,61.93,62,61,54.38,55,57,58.41,59,59,0.957,0.03436 +41,VBS46340-6321STDY9453340,55.71,56,57,56.39,57,57,55.77,56,56,58.7,59,58,51.33,53,53,55.44,56,56,0.959,0.0343 +42,VBS46341-6321STDY9453341,50.85,51,51,51.53,52,52,50.85,51,51,53.54,53,53,46.94,48,49,50.45,51,51,0.957,0.03431 +43,VBS46342-6321STDY9453342,64.95,66,66,65.69,66,66,64.93,66,66,68.1,68,68,60.45,62,63,64.55,66,66,0.96,0.03433 +44,VBS46343-6321STDY9453343,53.7,54,54,54.3,55,55,53.54,54,53,56.01,56,55,49.93,51,52,54.05,55,54,0.958,0.03425 +45,VBS46344-6321STDY9453344,40.85,41,41,41.28,41,41,40.87,41,41,42.55,42,42,38.45,39,40,40.49,41,41,0.956,0.03424 +46,VBS46345-6321STDY9453345,68.49,70,70,69.4,70,71,68.49,69,70,71.95,72,72,63.35,65,66,68.14,69,70,0.96,0.03438 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..fa5b7c3ea --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv new file mode 100644 index 000000000..e3739eada --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv @@ -0,0 +1,48 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude +VBS46299-6321STDY9453299,VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 +VBS46307-6321STDY9453307,VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46315-6321STDY9453315,VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 +VBS46323-6321STDY9453323,VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 +VBS46331-6321STDY9453331,VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 +VBS46339-6321STDY9453339,VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288 +VBS46300-6321STDY9453300,VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 +VBS46308-6321STDY9453308,VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46316-6321STDY9453316,VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 +VBS46324-6321STDY9453324,VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 +VBS46332-6321STDY9453332,VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 +VBS46340-6321STDY9453340,VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203 +VBS46301-6321STDY9453301,VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 +VBS46309-6321STDY9453309,VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46317-6321STDY9453317,VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 +VBS46325-6321STDY9453325,VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 +VBS46333-6321STDY9453333,VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 +VBS46341-6321STDY9453341,VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 +VBS46302-6321STDY9453302,VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288 +VBS46310-6321STDY9453310,VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282 +VBS46318-6321STDY9453318,VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 +VBS46326-6321STDY9453326,VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203 +VBS46334-6321STDY9453334,VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 +VBS46342-6321STDY9453342,VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 +VBS46303-6321STDY9453303,VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288 +VBS46311-6321STDY9453311,VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194 +VBS46319-6321STDY9453319,VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 +VBS46327-6321STDY9453327,VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194 +VBS46335-6321STDY9453335,VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 +VBS46343-6321STDY9453343,VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 +VBS46304-6321STDY9453304,VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46312-6321STDY9453312,VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 +VBS46320-6321STDY9453320,VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 +VBS46328-6321STDY9453328,VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194 +VBS46336-6321STDY9453336,VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 +VBS46344-6321STDY9453344,VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203 +VBS46305-6321STDY9453305,VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46313-6321STDY9453313,VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 +VBS46321-6321STDY9453321,VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 +VBS46329-6321STDY9453329,VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288 +VBS46337-6321STDY9453337,VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 +VBS46345-6321STDY9453345,VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203 +VBS46306-6321STDY9453306,VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 +VBS46314-6321STDY9453314,VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 +VBS46322-6321STDY9453322,VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 +VBS46330-6321STDY9453330,VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 +VBS46338-6321STDY9453338,VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..8cc1f9da5 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS46299-6321STDY9453299,41.69,42,43,42.02,42,43,41.69,42,42,43.08,43,43,39.73,40,41,41.48,42,42,0.957,0.03433 +1,VBS46300-6321STDY9453300,52.55,53,54,53.0,54,54,52.56,53,54,54.34,55,55,49.91,51,52,52.35,53,53,0.957,0.03436 +2,VBS46301-6321STDY9453301,67.77,69,70,68.26,69,70,67.76,69,69,70.22,71,71,64.45,66,68,67.48,69,70,0.957,0.03442 +3,VBS46302-6321STDY9453302,62.53,63,64,63.09,64,64,62.5,63,64,64.97,65,65,59.1,61,62,62.21,63,64,0.958,0.03441 +4,VBS46303-6321STDY9453303,44.29,45,45,44.67,45,45,44.25,45,45,45.88,46,46,42.03,43,44,44.14,45,45,0.959,0.03424 +5,VBS46304-6321STDY9453304,63.22,64,65,63.72,64,65,63.19,64,65,65.51,66,66,59.98,61,63,63.0,64,65,0.958,0.03448 +6,VBS46305-6321STDY9453305,66.57,68,68,67.22,68,68,66.65,68,67,69.32,70,69,62.55,64,66,66.17,67,68,0.957,0.03441 +7,VBS46306-6321STDY9453306,55.32,56,57,55.87,56,57,55.26,56,57,57.67,58,58,52.19,54,55,54.9,56,57,0.957,0.03434 +8,VBS46307-6321STDY9453307,47.91,48,49,48.35,49,49,47.96,48,49,49.81,50,49,45.08,46,48,47.73,48,49,0.958,0.03415 +9,VBS46308-6321STDY9453308,60.89,62,62,61.42,62,63,60.85,62,62,63.53,64,63,57.36,59,60,60.56,62,62,0.958,0.03438 +10,VBS46309-6321STDY9453309,56.93,58,58,57.43,58,58,56.96,58,58,58.55,59,59,54.33,56,57,56.72,58,58,0.959,0.03429 +11,VBS46310-6321STDY9453310,63.49,64,64,63.85,64,64,63.43,64,65,64.99,65,65,61.5,63,63,63.23,64,64,0.958,0.03447 +12,VBS46311-6321STDY9453311,61.87,63,63,62.59,63,64,61.86,63,63,64.63,65,65,57.85,59,61,61.49,62,62,0.958,0.03439 +13,VBS46312-6321STDY9453312,73.44,75,76,73.98,75,76,73.41,75,76,75.79,76,76,69.98,72,74,73.31,75,75,0.959,0.0345 +14,VBS46313-6321STDY9453313,53.08,54,54,53.62,54,54,53.13,54,54,55.22,55,55,49.87,51,53,52.85,54,53,0.959,0.03427 +15,VBS46314-6321STDY9453314,46.94,48,48,47.42,48,48,46.97,47,48,48.91,49,49,43.98,45,46,46.76,47,48,0.959,0.03424 +16,VBS46315-6321STDY9453315,40.19,40,40,40.49,41,41,40.18,40,40,41.62,41,41,38.19,39,39,40.06,40,40,0.956,0.03426 +17,VBS46316-6321STDY9453316,50.42,51,51,50.86,51,52,50.34,51,51,52.46,53,53,47.63,49,50,50.25,51,51,0.957,0.03433 +18,VBS46317-6321STDY9453317,56.41,57,58,56.99,58,58,56.45,57,57,58.84,59,59,52.81,54,56,56.17,57,57,0.959,0.0343 +19,VBS46318-6321STDY9453318,60.31,61,62,60.96,62,62,60.39,61,61,62.89,63,63,56.35,58,59,60.12,61,62,0.961,0.03434 +20,VBS46319-6321STDY9453319,55.85,57,57,56.41,57,57,55.8,56,57,58.31,58,58,52.45,54,55,55.54,56,56,0.957,0.03435 +21,VBS46320-6321STDY9453320,53.39,54,55,53.77,54,55,53.38,54,55,55.44,56,55,50.6,52,53,53.18,54,55,0.957,0.03434 +22,VBS46321-6321STDY9453321,69.25,70,71,70.16,71,72,69.19,70,71,72.5,73,73,64.38,67,69,68.95,70,71,0.96,0.03429 +23,VBS46322-6321STDY9453322,76.33,78,78,77.0,78,79,76.25,78,78,79.39,80,80,72.09,75,76,76.0,78,78,0.958,0.03438 +24,VBS46323-6321STDY9453323,50.47,51,52,50.99,52,52,50.51,51,51,52.64,53,53,47.38,49,50,50.14,51,51,0.959,0.03426 +25,VBS46324-6321STDY9453324,47.33,48,48,47.78,48,49,47.28,48,48,49.09,49,49,44.91,46,47,47.01,48,48,0.957,0.0343 +26,VBS46325-6321STDY9453325,64.46,65,66,65.24,66,66,64.38,65,66,67.53,68,68,60.2,62,63,63.97,65,65,0.958,0.03439 +27,VBS46326-6321STDY9453326,57.67,58,59,58.34,59,59,57.73,58,58,60.27,60,60,53.65,55,57,57.48,58,59,0.96,0.03432 +28,VBS46327-6321STDY9453327,63.05,64,64,63.63,64,65,62.97,64,64,65.63,66,66,59.43,61,63,62.83,64,64,0.958,0.0344 +29,VBS46328-6321STDY9453328,56.21,57,57,56.79,57,58,56.29,57,58,58.57,59,59,52.63,54,55,55.95,57,57,0.959,0.03423 +30,VBS46329-6321STDY9453329,62.43,63,64,62.99,64,64,62.48,63,64,64.93,65,65,58.89,61,62,62.05,63,63,0.958,0.03439 +31,VBS46330-6321STDY9453330,67.2,68,69,67.98,69,69,67.11,68,68,70.18,70,70,62.79,64,66,66.97,68,69,0.958,0.03445 +32,VBS46331-6321STDY9453331,53.05,54,54,53.73,54,54,53.12,54,54,55.63,56,55,49.1,50,51,52.74,53,54,0.959,0.03424 +33,VBS46332-6321STDY9453332,32.34,32,32,32.43,32,32,32.3,32,32,33.45,33,33,30.72,31,32,32.62,33,33,0.958,0.03412 +34,VBS46333-6321STDY9453333,59.06,59,59,59.92,60,59,58.94,59,59,61.85,62,61,54.62,55,56,58.97,59,59,0.957,0.03442 +35,VBS46334-6321STDY9453334,59.96,61,61,60.67,61,61,59.99,61,61,62.7,63,63,55.97,57,58,59.49,60,61,0.958,0.0343 +36,VBS46335-6321STDY9453335,66.27,67,68,67.01,68,69,66.31,67,68,69.36,70,70,61.73,64,66,65.94,67,68,0.961,0.03436 +37,VBS46336-6321STDY9453336,54.48,55,55,55.03,56,56,54.46,55,55,56.94,57,57,51.12,52,53,54.09,55,55,0.958,0.03428 +38,VBS46337-6321STDY9453337,46.2,47,47,46.67,47,47,46.16,46,47,47.99,48,47,43.58,44,46,45.98,46,47,0.957,0.03426 +39,VBS46338-6321STDY9453338,49.41,50,50,49.9,50,51,49.54,50,50,51.4,51,51,46.42,48,48,49.09,50,50,0.959,0.03421 +40,VBS46339-6321STDY9453339,58.79,59,59,59.58,60,60,58.66,59,59,61.93,62,61,54.38,55,57,58.41,59,59,0.957,0.03436 +41,VBS46340-6321STDY9453340,55.71,56,57,56.39,57,57,55.77,56,56,58.7,59,58,51.33,53,53,55.44,56,56,0.959,0.0343 +42,VBS46341-6321STDY9453341,50.85,51,51,51.53,52,52,50.85,51,51,53.54,53,53,46.94,48,49,50.45,51,51,0.957,0.03431 +43,VBS46342-6321STDY9453342,64.95,66,66,65.69,66,66,64.93,66,66,68.1,68,68,60.45,62,63,64.55,66,66,0.96,0.03433 +44,VBS46343-6321STDY9453343,53.7,54,54,54.3,55,55,53.54,54,53,56.01,56,55,49.93,51,52,54.05,55,54,0.958,0.03425 +45,VBS46344-6321STDY9453344,40.85,41,41,41.28,41,41,40.87,41,41,42.55,42,42,38.45,39,40,40.49,41,41,0.956,0.03424 +46,VBS46345-6321STDY9453345,68.49,70,70,69.4,70,71,68.49,69,70,71.95,72,72,63.35,65,66,68.14,69,70,0.96,0.03438 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv new file mode 100644 index 000000000..77f8712ef --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv @@ -0,0 +1,48 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS46299-6321STDY9453299,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.bam,b99888ef49680a23d2c2eb99d9a76d8b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.vcf.gz,881fbba998d25a3e66aead2439ce2e02,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.zarr.zip,3dedee4185f663fe81803e86eef4596d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46307-6321STDY9453307,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.bam,918618042d01773378fc346f655d8cf4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.vcf.gz,ffc30b183b452593d5f4e7470a7812f2,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.zarr.zip,df7daea5845e6400208ab0b7baed24be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46315-6321STDY9453315,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.bam,9f8c56a80501b5844d567b8c5af417a4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.vcf.gz,41959d3346d3b58ec00a28c6f3683c47,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.zarr.zip,78bdecf637acc7cbd4e0bfecd09c66ca,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46323-6321STDY9453323,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.bam,86772575a66a8f78ad1105d671bac44f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.vcf.gz,2395f516a6192a899efd99a698576653,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.zarr.zip,45356713f05c9918163077a5d119ec2d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46331-6321STDY9453331,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.bam,34cfcc15ac35ec8da4172ec0f10fb929,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.vcf.gz,a6b2d94af56c04441548eb0edba4087b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.zarr.zip,8a2d0132523e54c1a612c4fcd93fe9ab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46339-6321STDY9453339,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.bam,752294bb0cd1fcd5ddc18606f4261770,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.vcf.gz,56ea40c7eebc9d8e2fc25c70198cf5bc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.zarr.zip,be17220709b54fbb413a476cbcd7dc02,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46300-6321STDY9453300,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.bam,2faef5979db123d1e93ad5a04bde010b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.vcf.gz,8487dad91d4d461aa1e30ad0a8a9e159,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.zarr.zip,865492f22a8bf02fd08740fa00407de1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46308-6321STDY9453308,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.bam,ae1cf75f8cb38d5c8d2afa97f7581230,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.vcf.gz,09e960abef88cc1223215439ca797e53,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.zarr.zip,2fe42d6e5cbe4cfb8b63cef66881a9a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46316-6321STDY9453316,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.bam,e44cb55e9b9df09073d1d0f84b1b03aa,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.vcf.gz,e49dbeb76338f3f597918e90b058b59f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.zarr.zip,8d0567b6c004651d90d145cfea5608a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46324-6321STDY9453324,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.bam,f50d84a65a7f0e9c8ae876bbbc148f3c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.vcf.gz,ccfbe4a46045c75f623ab5d9916bc25e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.zarr.zip,db3e75ad3fb8445db9e1f24cb65b1fc4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46332-6321STDY9453332,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.bam,1a10f12f85dd10dddc2467849726da32,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.vcf.gz,c13cf3ca97d60cd078dcecf56e1646d4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.zarr.zip,3a62925dd3a791d115126f65a2cc3379,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46340-6321STDY9453340,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.bam,1cf203df781e348eb6aceb4b7cbe4b0b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.vcf.gz,1f0c40567aee776ac60ef0866edecb46,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.zarr.zip,c00e4b4b756c6ff0e0e5e9162440826d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46301-6321STDY9453301,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.bam,6b393c2c842c361c8b9a098ea24c7edb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.vcf.gz,ad2a41e3ce8c7c1221c8fef7d191aa49,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.zarr.zip,97cbec5d0cdd6aa12e7e402bcf49d5f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46309-6321STDY9453309,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.bam,d0351a7e52a9bcd4fcd5a5b79abc67a5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.vcf.gz,debead115b618a103e54af6f6d9cacee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.zarr.zip,fa78217a4d149145c3410a210532c52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46317-6321STDY9453317,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.bam,4498ca72b6bc37510e2c7fcfde3f1281,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.vcf.gz,4940cc5916ac8dbd19ee660655f84fb4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.zarr.zip,e63316bcad97a1664a83d46f7bbf945c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46325-6321STDY9453325,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.bam,2e6d649130fc5183973d3fded7a6cd44,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.vcf.gz,1d4598ec05bc38390c7375fd8b60e5f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.zarr.zip,fd815f056af7fb97369852705e97b48a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46333-6321STDY9453333,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.bam,53d5d0bb98b4be54b0c9c51df714ab75,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.vcf.gz,00ee455bee5764e40ba26b9ece19bf9a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.zarr.zip,62f4c1153c212a63ae7f4fcf6dc96713,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46341-6321STDY9453341,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.bam,66a51a50d168a8937e525c17dbee3792,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.vcf.gz,df990da2709768c4bde10cd51841d229,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.zarr.zip,1ca668a939a47192c11224a350505986,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46302-6321STDY9453302,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.bam,7ea17da4c3bff94aec1ecedf1c3cdb73,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.vcf.gz,6f64e7c8f9465061abdbc8c7a416cc09,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.zarr.zip,57359203d735c19dd46b2a4be0993bee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46310-6321STDY9453310,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.bam,5256f0dcdeda23896e639fa40257df50,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.vcf.gz,d728a039223be2366dbe9ca3dccc21ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.zarr.zip,94e8194044aed52c9648e4e9c38b7833,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46318-6321STDY9453318,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.bam,d8b4e20456987ea99289c780d25f61e9,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.vcf.gz,7b39a6d448cdfefd86d00cca637f25a0,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.zarr.zip,e2a1123cc26b96da1baab9647ca1f0c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46326-6321STDY9453326,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.bam,e2ee827e4389ab14e545e4eea2f400ec,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.vcf.gz,ac9f52875ac9d0bfb808e653714dad96,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.zarr.zip,6fc945132ec147f7c2b86f5e5c413f1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46334-6321STDY9453334,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.bam,2956d16525c89ad8ecc5bedd9e7bcd7d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.vcf.gz,7f28154317c826aa2880bf3cf7cfa150,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.zarr.zip,bd6d43f7d65e937981710fd4597fb47a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46342-6321STDY9453342,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.bam,88080f62b75da53541376b561e398e8f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.vcf.gz,f7e7c058381da2112140c82953ece90c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.zarr.zip,d2c978f60e0281480275f0fa32e63867,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46303-6321STDY9453303,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.bam,70cc6b2c4c36de50c8e6526e22bd1e1a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.vcf.gz,10a2ab938ecb96e52a0ed40d37359da1,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.zarr.zip,b66ddea9c26abd423ab24708b5eb86f3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46311-6321STDY9453311,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.bam,f16fcc6c875ad5054f55c8c54c7b6dfc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.vcf.gz,8f031501d8a3b322a68bb5a060090a34,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.zarr.zip,994b674a4d29e2065f7e3d0ef868cc2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46319-6321STDY9453319,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.bam,776d94fb1300c50d4f8e1bd2b85b6cb6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.vcf.gz,576315a5d9f70f7bdaf53c3c5424fc9e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.zarr.zip,c49bf5513f102c97a3209d1e18d75eab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46327-6321STDY9453327,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.bam,f3c6b730e022ac3ea6eabdf96b0f0245,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.vcf.gz,36e593252f6d0ccf082a3930b69e28e4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.zarr.zip,a753e94fe7514835214542acef734f3c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46335-6321STDY9453335,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.bam,a1a073a5d8a015ce74ba4f3a2cfb7fbf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.vcf.gz,4ca3b94c83790a9f7b311d42d6ee5cc6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.zarr.zip,ba13613fd52c048af27468acae2cb100,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46343-6321STDY9453343,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.bam,dc9d3d647e7b0fe5ebeeb45a9cf54da8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.vcf.gz,7c8a96ff4d865e2cbd956ea2f58f93ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.zarr.zip,fb18965d61a7ba0b9edcb9f4d32beef4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46304-6321STDY9453304,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.bam,ec86af88b6015909ec56f44b0976547b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.vcf.gz,c4deee740c10bfd70e5df6c64390edc8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.zarr.zip,19efde7f62e445e8b8b9e29ad509a43f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46312-6321STDY9453312,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.bam,46accba051544cc88ff3a8f002bd30ba,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.vcf.gz,f6b6b92f82ddd300f52ff83e005498ee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.zarr.zip,4b5b8d6db087980de163a659d924b428,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46320-6321STDY9453320,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.bam,8eae2f4046543440dfe86933ad34c7e6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.vcf.gz,bd7e7934b433ffb55a628966a3302b45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.zarr.zip,8390f9d57aa22821d8b86ea3687ef50d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46328-6321STDY9453328,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.bam,09ca6796e2d217e5103756eef5ff21bf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.vcf.gz,6995ba181cf3a014ad749cfa747e7ab3,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.zarr.zip,a763004d19a4815075bd077751ed4a80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46336-6321STDY9453336,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.bam,37339040994529ceb820c298be3551eb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.vcf.gz,07ece258617abc576413e30075115927,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.zarr.zip,071497f6467224384a38ffb35dace69f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46344-6321STDY9453344,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.bam,ac9a0b5cb7a3c084bf938599a90d6a37,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.vcf.gz,698ea5b3188702af6b568419e6ec07ca,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.zarr.zip,073b644a4ad5c84b5ae4e149227ed8a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46305-6321STDY9453305,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.bam,7ba7a9fdb7c7b1ef3a176dfe4c12a44c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.vcf.gz,544ec79e159a9b30c30cfed6c2570a64,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.zarr.zip,de818d2c86cc07f1c2b6322e0dcec5d2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46313-6321STDY9453313,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.bam,0280f345164a19ddb658e3350e0ecb5c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.vcf.gz,8a9051b587d152b2715f507757c0d383,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.zarr.zip,2fa52b4078fdf250dd11253069e1e6c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46321-6321STDY9453321,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.bam,199309327c4b949d6c4ec51418f32d57,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.vcf.gz,f886103632589bc45264a5dfc3ee710f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.zarr.zip,32bd162fed1977a8a5a8cbb32a8b0ad3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46329-6321STDY9453329,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.bam,a0732115fda0181f529d3b89b496cd45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.vcf.gz,649de427120b4e9a12713186a16bf4b5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.zarr.zip,1ef42776759c29f9558427096b7239e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46337-6321STDY9453337,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.bam,c247dcdcac644d7f26f6338ac610d68e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.vcf.gz,49ff3cc4a65a0a5c753bcfdcb38af90b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.zarr.zip,569c330619c6529c6a422d791bf5f52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46345-6321STDY9453345,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.bam,b12ba6197d9a28b91a0c6900ce3b18f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.vcf.gz,ecb2ddd4c0322e59f5a15002a7ac2e5e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.zarr.zip,b55e2c6d1766b156cb236abf4d2c4281,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46306-6321STDY9453306,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.bam,dd2f01a6e990efcf206a93d1fbcbfb78,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.vcf.gz,a59804aa6bda05a7039975fb29fbca55,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.zarr.zip,c837fa3bd5281a4f9fc1909078d12336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46314-6321STDY9453314,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.bam,33d9afa78878cdf74206fffa782397ab,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.vcf.gz,23f0faa9faf9e3662ab314a1266db286,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.zarr.zip,14e53330006278fb1705a397e293bba6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46322-6321STDY9453322,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.bam,31301768c188886216556a3f66510b71,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.vcf.gz,8784a73f700ac8c86acb8111f89ed82d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.zarr.zip,b2df4a18837b6bf145cebd8f699ef73b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46330-6321STDY9453330,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.bam,bc0b387e8183c02faa02953ffb0ef59b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.vcf.gz,e4a92ba5ceb37055e7c99c26f4ee96f5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.zarr.zip,1579200bb12cce47698268483ed1d460,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46338-6321STDY9453338,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.bam,6a37571258c449afd693dfee1967d612,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.vcf.gz,eba44e5264186f046ed2b714af919cd4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.zarr.zip,1c641d212c6f65d23f2caa82ee0a81c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv new file mode 100644 index 000000000..0fa8ea5c8 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv @@ -0,0 +1,27 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude +VBS45687-6143STDY8787412,VBS45687-6143STDY8787412,A2682,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45688-6143STDY8787413,VBS45688-6143STDY8787413,A2685,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45689-6143STDY8787414,VBS45689-6143STDY8787414,A2686,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45690-6143STDY8787415,VBS45690-6143STDY8787415,A2688,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45691-6143STDY8787416,VBS45691-6143STDY8787416,A2631,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45692-6143STDY8787417,VBS45692-6143STDY8787417,A2645,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45701-6143STDY8787420,VBS45701-6143STDY8787420,A2675,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45702-6143STDY8787421,VBS45702-6143STDY8787421,A2749,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45708-6143STDY8787424,VBS45708-6143STDY8787424,A2709,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45709-6143STDY8787425,VBS45709-6143STDY8787425,A2710,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45711-6143STDY8787426,VBS45711-6143STDY8787426,A2718,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45713-6143STDY8787427,VBS45713-6143STDY8787427,A2722,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 +VBS45717-6143STDY8787429,VBS45717-6143STDY8787429,A4003,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45718-6143STDY8787430,VBS45718-6143STDY8787430,A4004,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45720-6143STDY8787431,VBS45720-6143STDY8787431,A3930,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45723-6143STDY8787432,VBS45723-6143STDY8787432,A3956,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45724-6143STDY8787433,VBS45724-6143STDY8787433,A3964,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45728-6143STDY8787434,VBS45728-6143STDY8787434,A3988,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45734-6143STDY8787435,VBS45734-6143STDY8787435,A3925,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45735-6143STDY8787436,VBS45735-6143STDY8787436,A3926,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45737-6143STDY8787437,VBS45737-6143STDY8787437,A4007,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45738-6143STDY8787438,VBS45738-6143STDY8787438,A4008,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45739-6143STDY8787439,VBS45739-6143STDY8787439,A4009,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45742-6143STDY8787440,VBS45742-6143STDY8787440,A4013,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45743-6143STDY8787441,VBS45743-6143STDY8787441,A4014,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +VBS45745-6143STDY8787442,VBS45745-6143STDY8787442,A4019,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..fa5b7c3ea --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv new file mode 100644 index 000000000..91c8375ac --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv @@ -0,0 +1,27 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45687-6143STDY8787412,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.bam,1edaca5060bf348547674cb80dbff467,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.vcf.gz,2c4aca688d1fb8940ee32189a93f8612,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.zarr.zip,426593cbaa1ca17ab1c47f77f6fd60da,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45688-6143STDY8787413,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.bam,5f5f92668e2e44911b71b3fb42921b96,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.vcf.gz,a5fb0da278d96531e76154b96dcfd016,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.zarr.zip,a475055bf1c82add474d5092364e477e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45689-6143STDY8787414,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.bam,9ea628902048b2f7f56a371b868ac085,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.vcf.gz,09531eec22d0633bae9ff6ac66a5a991,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.zarr.zip,f046ccc51fb2211f41fc9a7a45eb1ded,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45690-6143STDY8787415,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.bam,b29269c48f41e8951cf65e0c558b556a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.vcf.gz,6e8c64a462ee611e4c9cef4f17198a81,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.zarr.zip,660d9b26e6b8ee4456ae2b952d32aa9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45691-6143STDY8787416,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.bam,344053000bdb3f61528137047f3a173a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.vcf.gz,112db891eccd5def371effd62837af62,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.zarr.zip,c31ba519c31c9256816b9994e1859125,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45692-6143STDY8787417,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.bam,05c69c41f45b9577409ba8c13fad238e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.vcf.gz,21a4a6aa9e2a591baa198357cb2be6f8,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.zarr.zip,977fff2a5f9b29c4b42371a8005111ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45701-6143STDY8787420,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.bam,859bca146bdfbb35885209d567d9583b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.vcf.gz,ce0d880d9cf27151f07556865c92e8eb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.zarr.zip,796f143f29d5d8869e17202a3ccfaea6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45702-6143STDY8787421,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.bam,419ad784e43882508edf0ef44e4ac300,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.vcf.gz,d3e50b12a43aec47125e57394a596fd2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.zarr.zip,bd5f69e7b81ea60a57be5630ef8b9991,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45708-6143STDY8787424,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.bam,ff51e31b180932a267447e42e906ecf2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.vcf.gz,67e3453989380789151c674a760e8112,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.zarr.zip,9baba1d37394f6f5d3a26af50b935f78,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45709-6143STDY8787425,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.bam,1a1a2faed7e01e9f06516b9cea5078e5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.vcf.gz,f9893d7a75a498458916091a9fe1b92e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.zarr.zip,d4962fbf2f266ec905b4ece445921a92,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45711-6143STDY8787426,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.bam,f88ed8654fcaf4b2e73f7e521c96a25b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.vcf.gz,6b689303e917d25649dc50e8e3cb7fe9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.zarr.zip,390f4d080c9c3fbf6b2e5f7091cbcbdd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45713-6143STDY8787427,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.bam,ea89cb121e1cdf4785ea620f380aac1b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.vcf.gz,dfad6e2be0c6d7d7bb01cf3c994fabc1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.zarr.zip,8eb11023c39227c3e5ea4d500d03faf5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45717-6143STDY8787429,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.bam,f5d6286cf55dd047746fea06b5d0c693,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.vcf.gz,5ab62b72a9fdd11f6ebe2decea4c10d9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.zarr.zip,ed7b61c81691c7ec10e9af514bb2ea99,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45718-6143STDY8787430,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.bam,611c37298ed8098d0dc01a31d0dc3251,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.vcf.gz,c8179466594aab3fc0e5cbdab64e8ec9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.zarr.zip,d418cdc84b5eab67df7c920c1ef9d027,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45720-6143STDY8787431,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.bam,33c5d50c38417a330fef27dcdfb2de0f,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.vcf.gz,5b92267939a6f92b69cd51e845573c05,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.zarr.zip,b9dc4ebe215ccd4ed0ef50e0e1d2ebf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45723-6143STDY8787432,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.bam,e627766b6ed2f6d986e04d738f28e279,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.vcf.gz,03e6e3d2b7ab0b7f23a404b0a7a535cb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.zarr.zip,456a56b85af8152002ab0c293dc3fc6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45724-6143STDY8787433,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.bam,8a26386ba21bb0795f14a535967c2bf7,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.vcf.gz,d76416cb68e3563ce8b5617025ac3195,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.zarr.zip,6e2f78745cfcd9905388479f4598ec4f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45728-6143STDY8787434,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.bam,23abf7b0c45fab3f2292cfff1300c8c5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.vcf.gz,f1d25f259793488fec935790bfe0f151,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.zarr.zip,2a28a78c752eb9063cf2ab548a6a85c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45734-6143STDY8787435,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.bam,44041573d6966637779039a356cebe92,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.vcf.gz,30c840a3bc996d65cbdcfeab9fad0201,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.zarr.zip,bb4d31d49e84d7053b0d4a962c5ebf3e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45735-6143STDY8787436,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.bam,0e0cf00dded68420c27e3b3d80443813,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.vcf.gz,4c0d737279bb0a52e95068fc3c3897cf,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.zarr.zip,41d9064c12e6ff66d7ea32f8e441ad45,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45737-6143STDY8787437,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.bam,8377793f28aa45017d7ec07321d7b7f4,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.vcf.gz,fcc48594bcd97c28a1dfc527c203974a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.zarr.zip,cd9bbd1e99f547593ccb12a7a41dccc8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45738-6143STDY8787438,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.bam,c97e96c7a0dd02897891f1781c371ba2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.vcf.gz,c542c178bb35c4b1a6593b15b54bc15c,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.zarr.zip,c171d40690dc1eb4d99dd10098d1384b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45739-6143STDY8787439,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.bam,07a3b15c026e6d9aea8abc62094cb671,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.vcf.gz,1c60774e9bc9cf6c15bd240d7a09a3b5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.zarr.zip,547bc11cf02f272e879896285196016a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45742-6143STDY8787440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.bam,083aef95be6f37ac9c4a7ecf7c94f71e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.vcf.gz,edb4663402075a8610830dcda0f84694,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.zarr.zip,812d3e884f055f40b2915c5c0dcbdce6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45743-6143STDY8787441,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.bam,46f29e379230e6eb2b34136f90ecceb1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.vcf.gz,834513f9ee49a467714927b5a4e8585b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.zarr.zip,83a7fb33bbbd7025d79eb33063042271,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45745-6143STDY8787442,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.bam,ddb8522541eb68c89ca5b1bd56914552,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.vcf.gz,2ad5823ac3bb56c7c1e6f91b146e7440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.zarr.zip,035b40b9d9bf0d004511b529eabd8a0c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/test_sample_metadata.py b/tests/anoph/test_sample_metadata.py index 6df290118..68d51c6ff 100644 --- a/tests/anoph/test_sample_metadata.py +++ b/tests/anoph/test_sample_metadata.py @@ -12,6 +12,8 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 +from malariagen_data import amin1 as _amin1 from malariagen_data.anoph.sample_metadata import AnophelesSampleMetadata @@ -50,6 +52,32 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesSampleMetadata( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + taxon_colors=_adir1.TAXON_COLORS, + ) + + +@pytest.fixture +def amin1_sim_api(amin1_sim_fixture): + return AnophelesSampleMetadata( + url=amin1_sim_fixture.url, + public_url=amin1_sim_fixture.url, + config_path=_amin1.CONFIG_PATH, + major_version_number=_amin1.MAJOR_VERSION_NUMBER, + major_version_path=_amin1.MAJOR_VERSION_PATH, + pre=False, + taxon_colors=_amin1.TAXON_COLORS, + ) + + @pytest.fixture def missing_metadata_api(fixture_dir): # In this fixture, one of the sample sets (AG1000G-BF-A) has missing files @@ -80,6 +108,14 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir_sim_api): + return adir1_sim_fixture, adir_sim_api + + +def case_amin1_sim(amin1_sim_fixture, amin1_sim_api): + return amin1_sim_fixture, amin1_sim_api + + def general_metadata_expected_columns(): return { "sample_id": "O", diff --git a/tests/anoph/test_snp_data.py b/tests/anoph/test_snp_data.py index ba4f1b690..453a6ccef 100644 --- a/tests/anoph/test_snp_data.py +++ b/tests/anoph/test_snp_data.py @@ -13,6 +13,8 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 + from malariagen_data.anoph.base_params import DEFAULT from malariagen_data.anoph.snp_data import AnophelesSnpData @@ -60,6 +62,23 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesSnpData( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -80,6 +99,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + @parametrize_with_cases("fixture,api", cases=".") def test_open_snp_sites(fixture, api: AnophelesSnpData): root = api.open_snp_sites() From 108743124f9a0f1ebba93d7e0eb781d5cc55e9db Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 4 Nov 2025 11:25:29 +1000 Subject: [PATCH 34/41] add coverage tests for adir1 --- tests/anoph/conftest.py | 44 ++-- .../samples.admin_units.csv | 48 ++++ .../samples.cohorts.csv | 48 ++++ .../1276-AD-BD-ALAM-VMF00156/samples.taxa.csv | 48 ++++ .../samples.admin_units.csv | 27 ++ .../samples.cohorts.csv | 27 ++ .../samples.taxa.csv | 27 ++ .../samples.admin_units.csv | 249 ++++++++++++++++++ .../samples.cohorts.csv | 249 ++++++++++++++++++ .../samples.taxa.csv | 249 ++++++++++++++++++ .../samples.admin_units.csv | 220 ++++++++++++++++ .../samples.cohorts.csv | 220 ++++++++++++++++ .../samples.taxa.csv | 220 ++++++++++++++++ .../sequence_qc_stats.csv | 48 ++++ .../sequence_qc_stats.csv | 27 ++ .../sequence_qc_stats.csv | 249 ++++++++++++++++++ .../sequence_qc_stats.csv | 220 ++++++++++++++++ .../1276-AD-BD-ALAM-VMF00156/samples.meta.csv | 48 ++++ .../sequence_qc_stats.csv | 48 ++++ .../wgs_accession_data.csv | 48 ++++ .../1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv | 48 ++++ .../samples.meta.csv | 27 ++ .../sequence_qc_stats.csv | 27 ++ .../wgs_accession_data.csv | 27 ++ .../wgs_snp_data.csv | 27 ++ .../samples.meta.csv | 249 ++++++++++++++++++ .../sequence_qc_stats.csv | 249 ++++++++++++++++++ .../wgs_accession_data.csv | 249 ++++++++++++++++++ .../wgs_snp_data.csv | 249 ++++++++++++++++++ .../samples.meta.csv | 220 ++++++++++++++++ .../sequence_qc_stats.csv | 220 ++++++++++++++++ .../wgs_accession_data.csv | 220 ++++++++++++++++ .../wgs_snp_data.csv | 220 ++++++++++++++++ .../samples.admin_units.csv | 249 ++++++++++++++++++ .../samples.cohorts.csv | 249 ++++++++++++++++++ .../samples.taxa.csv | 249 ++++++++++++++++++ .../samples.admin_units.csv | 220 ++++++++++++++++ .../samples.cohorts.csv | 220 ++++++++++++++++ .../samples.taxa.csv | 220 ++++++++++++++++ .../sequence_qc_stats.csv | 249 ++++++++++++++++++ .../sequence_qc_stats.csv | 220 ++++++++++++++++ .../1276-AD-BD-ALAM-VMF00156/samples.meta.csv | 96 +++---- .../sequence_qc_stats.csv | 96 +++---- .../wgs_accession_data.csv | 48 ++++ .../samples.meta.csv | 54 ++-- .../sequence_qc_stats.csv | 54 ++-- .../wgs_accession_data.csv | 27 ++ tests/anoph/test_base.py | 17 ++ tests/anoph/test_dipclust.py | 23 ++ tests/anoph/test_distance.py | 23 ++ tests/anoph/test_fst.py | 23 ++ tests/anoph/test_g123.py | 24 ++ tests/anoph/test_genome_features.py | 29 ++ tests/anoph/test_pca.py | 23 ++ tests/anoph/test_plink_converter.py | 20 ++ tests/anoph/test_sample_metadata.py | 22 +- tests/anoph/test_snp_frq.py | 24 ++ 57 files changed, 6683 insertions(+), 192 deletions(-) create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv create mode 100644 tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv create mode 100644 tests/anoph/fixture/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv create mode 100644 tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv create mode 100644 tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv diff --git a/tests/anoph/conftest.py b/tests/anoph/conftest.py index 7e7cd94d5..743191806 100644 --- a/tests/anoph/conftest.py +++ b/tests/anoph/conftest.py @@ -2588,28 +2588,28 @@ def write_metadata(self, release, release_path, sample_set, sequence_qc=True): dst_path.parent.mkdir(parents=True, exist_ok=True) df_cat_ds.to_csv(dst_path, index=False) - # # Create accessions catalog by sampling from some real metadata files. - # src_path = ( - # self.fixture_dir - # / "vo_adir_release_master_us_central1" - # / release_path - # / "metadata" - # / "general" - # / sample_set - # / "wgs_accession_data.csv" - # ) - # df_cat = pd.read_csv(src_path) - # df_cat_ds = df_cat.set_index("sample_id").loc[samples_ds].reset_index() - # dst_path = ( - # self.bucket_path - # / release_path - # / "metadata" - # / "general" - # / sample_set - # / "wgs_accession_data.csv" - # ) - # dst_path.parent.mkdir(parents=True, exist_ok=True) - # df_cat_ds.to_csv(dst_path, index=False) + # Create accessions catalog by sampling from some real metadata files. + src_path = ( + self.fixture_dir + / "vo_adir_release_master_us_central1" + / release_path + / "metadata" + / "general" + / sample_set + / "wgs_accession_data.csv" + ) + df_cat = pd.read_csv(src_path) + df_cat_ds = df_cat.set_index("sample_id").loc[samples_ds].reset_index() + dst_path = ( + self.bucket_path + / release_path + / "metadata" + / "general" + / sample_set + / "wgs_accession_data.csv" + ) + dst_path.parent.mkdir(parents=True, exist_ok=True) + df_cat_ds.to_csv(dst_path, index=False) def init_metadata(self): self.write_metadata( diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv new file mode 100644 index 000000000..cfb109ef1 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv @@ -0,0 +1,48 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS46299-6321STDY9453299,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46307-6321STDY9453307,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46315-6321STDY9453315,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46323-6321STDY9453323,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46331-6321STDY9453331,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46339-6321STDY9453339,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46300-6321STDY9453300,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46308-6321STDY9453308,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46316-6321STDY9453316,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46324-6321STDY9453324,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46332-6321STDY9453332,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46340-6321STDY9453340,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46301-6321STDY9453301,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46309-6321STDY9453309,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46317-6321STDY9453317,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46325-6321STDY9453325,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46333-6321STDY9453333,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46341-6321STDY9453341,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46302-6321STDY9453302,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46310-6321STDY9453310,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46318-6321STDY9453318,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46326-6321STDY9453326,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46334-6321STDY9453334,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46342-6321STDY9453342,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46303-6321STDY9453303,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46311-6321STDY9453311,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46319-6321STDY9453319,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46327-6321STDY9453327,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46335-6321STDY9453335,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46343-6321STDY9453343,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46304-6321STDY9453304,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46312-6321STDY9453312,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46320-6321STDY9453320,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46328-6321STDY9453328,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46336-6321STDY9453336,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46344-6321STDY9453344,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46305-6321STDY9453305,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46313-6321STDY9453313,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46321-6321STDY9453321,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46329-6321STDY9453329,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46337-6321STDY9453337,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46345-6321STDY9453345,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46306-6321STDY9453306,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46314-6321STDY9453314,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46322-6321STDY9453322,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46330-6321STDY9453330,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46338-6321STDY9453338,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv new file mode 100644 index 000000000..23f0d4382 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv @@ -0,0 +1,48 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS46299-6321STDY9453299,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46307-6321STDY9453307,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46315-6321STDY9453315,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46323-6321STDY9453323,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46331-6321STDY9453331,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46339-6321STDY9453339,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46300-6321STDY9453300,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46308-6321STDY9453308,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46316-6321STDY9453316,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46324-6321STDY9453324,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46332-6321STDY9453332,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46340-6321STDY9453340,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_10,BD-B_Bandarban_baim_2018_Q4 +VBS46301-6321STDY9453301,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46309-6321STDY9453309,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46317-6321STDY9453317,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46325-6321STDY9453325,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46333-6321STDY9453333,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46341-6321STDY9453341,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46302-6321STDY9453302,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46310-6321STDY9453310,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_06,BD-B_Rangamati_baim_2018_Q2 +VBS46318-6321STDY9453318,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46326-6321STDY9453326,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46334-6321STDY9453334,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46342-6321STDY9453342,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46303-6321STDY9453303,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46311-6321STDY9453311,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46319-6321STDY9453319,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46327-6321STDY9453327,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46335-6321STDY9453335,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46343-6321STDY9453343,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46304-6321STDY9453304,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46312-6321STDY9453312,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46320-6321STDY9453320,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46328-6321STDY9453328,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46336-6321STDY9453336,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46344-6321STDY9453344,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46305-6321STDY9453305,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46313-6321STDY9453313,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46321-6321STDY9453321,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46329-6321STDY9453329,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46337-6321STDY9453337,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46345-6321STDY9453345,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46306-6321STDY9453306,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46314-6321STDY9453314,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46322-6321STDY9453322,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46330-6321STDY9453330,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46338-6321STDY9453338,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv new file mode 100644 index 000000000..b6e56d8a5 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv @@ -0,0 +1,48 @@ +sample_id,taxon +VBS46299-6321STDY9453299,baimaii +VBS46307-6321STDY9453307,baimaii +VBS46315-6321STDY9453315,baimaii +VBS46323-6321STDY9453323,baimaii +VBS46331-6321STDY9453331,baimaii +VBS46339-6321STDY9453339,baimaii +VBS46300-6321STDY9453300,baimaii +VBS46308-6321STDY9453308,baimaii +VBS46316-6321STDY9453316,baimaii +VBS46324-6321STDY9453324,baimaii +VBS46332-6321STDY9453332,baimaii +VBS46340-6321STDY9453340,baimaii +VBS46301-6321STDY9453301,baimaii +VBS46309-6321STDY9453309,baimaii +VBS46317-6321STDY9453317,baimaii +VBS46325-6321STDY9453325,baimaii +VBS46333-6321STDY9453333,baimaii +VBS46341-6321STDY9453341,baimaii +VBS46302-6321STDY9453302,baimaii +VBS46310-6321STDY9453310,baimaii +VBS46318-6321STDY9453318,baimaii +VBS46326-6321STDY9453326,baimaii +VBS46334-6321STDY9453334,baimaii +VBS46342-6321STDY9453342,baimaii +VBS46303-6321STDY9453303,baimaii +VBS46311-6321STDY9453311,baimaii +VBS46319-6321STDY9453319,baimaii +VBS46327-6321STDY9453327,baimaii +VBS46335-6321STDY9453335,baimaii +VBS46343-6321STDY9453343,baimaii +VBS46304-6321STDY9453304,baimaii +VBS46312-6321STDY9453312,baimaii +VBS46320-6321STDY9453320,baimaii +VBS46328-6321STDY9453328,baimaii +VBS46336-6321STDY9453336,baimaii +VBS46344-6321STDY9453344,baimaii +VBS46305-6321STDY9453305,baimaii +VBS46313-6321STDY9453313,baimaii +VBS46321-6321STDY9453321,baimaii +VBS46329-6321STDY9453329,baimaii +VBS46337-6321STDY9453337,baimaii +VBS46345-6321STDY9453345,baimaii +VBS46306-6321STDY9453306,baimaii +VBS46314-6321STDY9453314,baimaii +VBS46322-6321STDY9453322,baimaii +VBS46330-6321STDY9453330,baimaii +VBS46338-6321STDY9453338,baimaii diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv new file mode 100644 index 000000000..a4b676943 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv @@ -0,0 +1,27 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45687-6143STDY8787412,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45688-6143STDY8787413,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45689-6143STDY8787414,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45690-6143STDY8787415,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45691-6143STDY8787416,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45692-6143STDY8787417,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45701-6143STDY8787420,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45702-6143STDY8787421,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45708-6143STDY8787424,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45709-6143STDY8787425,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45711-6143STDY8787426,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45713-6143STDY8787427,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45717-6143STDY8787429,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45718-6143STDY8787430,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45720-6143STDY8787431,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45723-6143STDY8787432,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45724-6143STDY8787433,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45728-6143STDY8787434,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45734-6143STDY8787435,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45735-6143STDY8787436,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45737-6143STDY8787437,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45738-6143STDY8787438,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45739-6143STDY8787439,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45742-6143STDY8787440,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45743-6143STDY8787441,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45745-6143STDY8787442,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv new file mode 100644 index 000000000..4e11f7239 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv @@ -0,0 +1,27 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45687-6143STDY8787412,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45688-6143STDY8787413,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45689-6143STDY8787414,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45690-6143STDY8787415,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45691-6143STDY8787416,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45692-6143STDY8787417,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45701-6143STDY8787420,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45702-6143STDY8787421,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45708-6143STDY8787424,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45709-6143STDY8787425,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45711-6143STDY8787426,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45713-6143STDY8787427,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45717-6143STDY8787429,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45718-6143STDY8787430,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45720-6143STDY8787431,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45723-6143STDY8787432,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45724-6143STDY8787433,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45728-6143STDY8787434,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45734-6143STDY8787435,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45735-6143STDY8787436,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45737-6143STDY8787437,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45738-6143STDY8787438,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45739-6143STDY8787439,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45742-6143STDY8787440,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45743-6143STDY8787441,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45745-6143STDY8787442,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv new file mode 100644 index 000000000..39284922d --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv @@ -0,0 +1,27 @@ +sample_id,taxon +VBS45687-6143STDY8787412,dirus +VBS45688-6143STDY8787413,dirus +VBS45689-6143STDY8787414,dirus +VBS45690-6143STDY8787415,dirus +VBS45691-6143STDY8787416,dirus +VBS45692-6143STDY8787417,dirus +VBS45701-6143STDY8787420,dirus +VBS45702-6143STDY8787421,dirus +VBS45708-6143STDY8787424,dirus +VBS45709-6143STDY8787425,dirus +VBS45711-6143STDY8787426,dirus +VBS45713-6143STDY8787427,dirus +VBS45717-6143STDY8787429,dirus +VBS45718-6143STDY8787430,dirus +VBS45720-6143STDY8787431,dirus +VBS45723-6143STDY8787432,dirus +VBS45724-6143STDY8787433,dirus +VBS45728-6143STDY8787434,dirus +VBS45734-6143STDY8787435,dirus +VBS45735-6143STDY8787436,dirus +VBS45737-6143STDY8787437,dirus +VBS45738-6143STDY8787438,dirus +VBS45739-6143STDY8787439,dirus +VBS45742-6143STDY8787440,dirus +VBS45743-6143STDY8787441,dirus +VBS45745-6143STDY8787442,dirus diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv new file mode 100644 index 000000000..25ae0f297 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv @@ -0,0 +1,249 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS54551-6143STDY11462443,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54553-6143STDY11462445,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54554-6143STDY11462446,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54555-6143STDY11462447,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54556-6143STDY11462448,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54557-6143STDY11462449,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54558-6143STDY11462450,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54561-6143STDY11462453,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54562-6143STDY11462454,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54563-6143STDY11462455,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54564-6143STDY11462456,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54565-6143STDY11462457,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54567-6143STDY11462459,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54569-6143STDY11462461,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54570-6143STDY11462462,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54571-6143STDY11462463,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54572-6143STDY11462464,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54574-6143STDY11462466,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54575-6143STDY11462467,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54576-6143STDY11462468,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54577-6143STDY11462469,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54578-6143STDY11462470,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54579-6143STDY11462471,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54580-6143STDY11462472,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54581-6143STDY11462473,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54582-6143STDY11462474,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54583-6143STDY11462475,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54585-6143STDY11462477,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54586-6143STDY11462478,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54588-6143STDY11462480,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54589-6143STDY11462481,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54590-6143STDY11462482,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54591-6143STDY11462483,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54592-6143STDY11462484,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54593-6143STDY11462485,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54594-6143STDY11462486,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54595-6143STDY11462487,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54596-6143STDY11462488,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54597-6143STDY11462489,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54598-6143STDY11462490,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54599-6143STDY11462491,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54644-6143STDY11462538,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54647-6143STDY11462541,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54648-6143STDY11462542,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54649-6143STDY11462543,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54650-6143STDY11462544,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54651-6143STDY11462545,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54654-6143STDY11462548,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54655-6143STDY11462549,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54656-6143STDY11462550,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54657-6143STDY11462551,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54658-6143STDY11462552,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54659-6143STDY11462553,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54661-6143STDY11462555,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54662-6143STDY11462556,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54663-6143STDY11462557,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54664-6143STDY11462558,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54665-6143STDY11462559,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54666-6143STDY11462560,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54667-6143STDY11462561,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54668-6143STDY11462562,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54669-6143STDY11462563,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54671-6143STDY11462565,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54675-6143STDY11462569,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54679-6143STDY11462573,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54680-6143STDY11462574,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54682-6143STDY11462576,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54683-6143STDY11462577,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54687-6143STDY11462581,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54689-6143STDY11462583,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54697-6143STDY11462591,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54699-6143STDY11462593,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54702-6143STDY11462596,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54703-6143STDY11462597,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54704-6143STDY11462598,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54706-6143STDY11462600,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54707-6143STDY11462601,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54709-6143STDY11462603,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54710-6143STDY11462604,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54711-6143STDY11462605,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54712-6143STDY11462606,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54713-6143STDY11462607,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54715-6143STDY11462609,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54716-6143STDY11462610,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54717-6143STDY11462611,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54718-6143STDY11462612,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54719-6143STDY11462613,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54720-6143STDY11462614,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54722-6143STDY11462616,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54723-6143STDY11462617,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54724-6143STDY11462618,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54726-6143STDY11462620,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54731-6143STDY11462625,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54734-6143STDY11462628,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54735-6143STDY11462629,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54737-6143STDY11462631,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54738-6143STDY11462634,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54739-6143STDY11462635,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54740-6143STDY11462636,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54741-6143STDY11462637,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54742-6143STDY11462638,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54743-6143STDY11462639,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54744-6143STDY11462640,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54746-6143STDY11462642,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54747-6143STDY11462643,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54748-6143STDY11462644,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54749-6143STDY11462645,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54750-6143STDY11462646,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54751-6143STDY11462647,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54752-6143STDY11462648,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54753-6143STDY11462649,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54754-6143STDY11462650,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54755-6143STDY11462651,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54756-6143STDY11462652,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54757-6143STDY11462653,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54758-6143STDY11462654,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54759-6143STDY11462655,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54760-6143STDY11462656,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54761-6143STDY11462657,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54762-6143STDY11462658,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54763-6143STDY11462659,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54764-6143STDY11462660,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54765-6143STDY11462661,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54766-6143STDY11462662,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54767-6143STDY11462663,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54768-6143STDY11462664,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54769-6143STDY11462665,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54770-6143STDY11462666,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54771-6143STDY11462667,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54772-6143STDY11462668,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54773-6143STDY11462669,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54776-6143STDY11462672,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54777-6143STDY11462673,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54778-6143STDY11462674,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54779-6143STDY11462675,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54780-6143STDY11462676,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54781-6143STDY11462677,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54782-6143STDY11462678,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54783-6143STDY11462679,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54784-6143STDY11462680,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54785-6143STDY11462681,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54786-6143STDY11462682,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54787-6143STDY11462683,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54788-6143STDY11462684,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54789-6143STDY11462685,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54790-6143STDY11462686,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54791-6143STDY11462687,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54792-6143STDY11462688,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54793-6143STDY11462689,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54794-6143STDY11462690,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54795-6143STDY11462691,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54796-6143STDY11462692,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54797-6143STDY11462693,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54798-6143STDY11462694,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54799-6143STDY11462695,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54800-6143STDY11462696,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54801-6143STDY11462697,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54802-6143STDY11462698,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54803-6143STDY11462699,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54804-6143STDY11462700,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54805-6143STDY11462701,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54806-6143STDY11462702,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54807-6143STDY11462703,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54808-6143STDY11462704,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54809-6143STDY11462705,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54810-6143STDY11462706,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54811-6143STDY11462707,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54812-6143STDY11462708,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54813-6143STDY11462709,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54814-6143STDY11462710,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54815-6143STDY11462711,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54816-6143STDY11462712,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54817-6143STDY11462713,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54818-6143STDY11462714,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54819-6143STDY11462715,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54820-6143STDY11462716,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54821-6143STDY11462717,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54822-6143STDY11462718,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54823-6143STDY11462719,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54824-6143STDY11462720,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54825-6143STDY11462721,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54826-6143STDY11462722,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54827-6143STDY11462723,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54828-6143STDY11462724,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54829-6143STDY11462725,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54830-6143STDY11462726,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54831-6143STDY11462727,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54832-6143STDY11462730,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54833-6143STDY11462731,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54834-6143STDY11462732,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54835-6143STDY11462733,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54836-6143STDY11462734,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54837-6143STDY11462735,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54838-6143STDY11462736,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54839-6143STDY11462737,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54840-6143STDY11462738,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54841-6143STDY11462739,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54842-6143STDY11462740,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54843-6143STDY11462741,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54844-6143STDY11462742,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54845-6143STDY11462743,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54846-6143STDY11462744,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54847-6143STDY11462745,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54848-6143STDY11462746,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54849-6143STDY11462747,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54850-6143STDY11462748,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54851-6143STDY11462749,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54852-6143STDY11462750,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54853-6143STDY11462751,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54854-6143STDY11462752,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54855-6143STDY11462753,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54856-6143STDY11462754,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54857-6143STDY11462755,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54858-6143STDY11462756,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54859-6143STDY11462757,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54860-6143STDY11462758,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54861-6143STDY11462759,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54862-6143STDY11462760,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54863-6143STDY11462761,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54864-6143STDY11462762,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54865-6143STDY11462763,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54866-6143STDY11462764,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54867-6143STDY11462765,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54868-6143STDY11462766,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54869-6143STDY11462767,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54870-6143STDY11462768,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54871-6143STDY11462769,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54872-6143STDY11462770,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54873-6143STDY11462771,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54874-6143STDY11462772,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54875-6143STDY11462773,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54876-6143STDY11462774,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54877-6143STDY11462775,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54878-6143STDY11462776,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54879-6143STDY11462777,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54880-6143STDY11462778,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54881-6143STDY11462779,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54882-6143STDY11462780,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54883-6143STDY11462781,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54884-6143STDY11462782,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54885-6143STDY11462783,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54886-6143STDY11462784,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54887-6143STDY11462785,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54888-6143STDY11462786,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54889-6143STDY11462787,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54890-6143STDY11462788,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54891-6143STDY11462789,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54892-6143STDY11462790,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv new file mode 100644 index 000000000..05caefe06 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv @@ -0,0 +1,249 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS54551-6143STDY11462443,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54553-6143STDY11462445,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54554-6143STDY11462446,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54555-6143STDY11462447,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54556-6143STDY11462448,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54557-6143STDY11462449,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54558-6143STDY11462450,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54561-6143STDY11462453,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54562-6143STDY11462454,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54563-6143STDY11462455,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54564-6143STDY11462456,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54565-6143STDY11462457,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54567-6143STDY11462459,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54569-6143STDY11462461,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54570-6143STDY11462462,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54571-6143STDY11462463,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54572-6143STDY11462464,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54574-6143STDY11462466,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54575-6143STDY11462467,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54576-6143STDY11462468,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54577-6143STDY11462469,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54578-6143STDY11462470,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54579-6143STDY11462471,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54580-6143STDY11462472,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54581-6143STDY11462473,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54582-6143STDY11462474,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54583-6143STDY11462475,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54585-6143STDY11462477,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54586-6143STDY11462478,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54588-6143STDY11462480,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54589-6143STDY11462481,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54590-6143STDY11462482,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54591-6143STDY11462483,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54592-6143STDY11462484,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54593-6143STDY11462485,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54594-6143STDY11462486,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54595-6143STDY11462487,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54596-6143STDY11462488,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54597-6143STDY11462489,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54598-6143STDY11462490,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54599-6143STDY11462491,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54644-6143STDY11462538,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54647-6143STDY11462541,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54648-6143STDY11462542,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54649-6143STDY11462543,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54650-6143STDY11462544,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54651-6143STDY11462545,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54654-6143STDY11462548,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54655-6143STDY11462549,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54656-6143STDY11462550,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54657-6143STDY11462551,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54658-6143STDY11462552,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54659-6143STDY11462553,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54661-6143STDY11462555,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54662-6143STDY11462556,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54663-6143STDY11462557,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54664-6143STDY11462558,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54665-6143STDY11462559,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54666-6143STDY11462560,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54667-6143STDY11462561,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54668-6143STDY11462562,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54669-6143STDY11462563,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54671-6143STDY11462565,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54675-6143STDY11462569,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54679-6143STDY11462573,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54680-6143STDY11462574,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54682-6143STDY11462576,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54683-6143STDY11462577,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54687-6143STDY11462581,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54689-6143STDY11462583,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54697-6143STDY11462591,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54699-6143STDY11462593,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54702-6143STDY11462596,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54703-6143STDY11462597,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54704-6143STDY11462598,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54706-6143STDY11462600,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54707-6143STDY11462601,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54709-6143STDY11462603,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54710-6143STDY11462604,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54711-6143STDY11462605,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54712-6143STDY11462606,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54713-6143STDY11462607,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54715-6143STDY11462609,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54716-6143STDY11462610,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54717-6143STDY11462611,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54718-6143STDY11462612,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54719-6143STDY11462613,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54720-6143STDY11462614,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54722-6143STDY11462616,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54723-6143STDY11462617,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54724-6143STDY11462618,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54726-6143STDY11462620,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54731-6143STDY11462625,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54734-6143STDY11462628,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54735-6143STDY11462629,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54737-6143STDY11462631,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54738-6143STDY11462634,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54739-6143STDY11462635,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54740-6143STDY11462636,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54741-6143STDY11462637,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54742-6143STDY11462638,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54743-6143STDY11462639,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54744-6143STDY11462640,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54746-6143STDY11462642,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54747-6143STDY11462643,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54748-6143STDY11462644,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54749-6143STDY11462645,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54750-6143STDY11462646,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54751-6143STDY11462647,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54752-6143STDY11462648,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54753-6143STDY11462649,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54754-6143STDY11462650,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54755-6143STDY11462651,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54756-6143STDY11462652,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54757-6143STDY11462653,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54758-6143STDY11462654,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54759-6143STDY11462655,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54760-6143STDY11462656,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54761-6143STDY11462657,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54762-6143STDY11462658,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54763-6143STDY11462659,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54764-6143STDY11462660,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54765-6143STDY11462661,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54766-6143STDY11462662,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54767-6143STDY11462663,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54768-6143STDY11462664,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54769-6143STDY11462665,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54770-6143STDY11462666,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54771-6143STDY11462667,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54772-6143STDY11462668,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54773-6143STDY11462669,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54776-6143STDY11462672,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54777-6143STDY11462673,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54778-6143STDY11462674,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54779-6143STDY11462675,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54780-6143STDY11462676,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54781-6143STDY11462677,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54782-6143STDY11462678,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54783-6143STDY11462679,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54784-6143STDY11462680,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54785-6143STDY11462681,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54786-6143STDY11462682,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54787-6143STDY11462683,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54788-6143STDY11462684,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54789-6143STDY11462685,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54790-6143STDY11462686,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54791-6143STDY11462687,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54792-6143STDY11462688,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54793-6143STDY11462689,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54794-6143STDY11462690,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54795-6143STDY11462691,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54796-6143STDY11462692,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54797-6143STDY11462693,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54798-6143STDY11462694,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54799-6143STDY11462695,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54800-6143STDY11462696,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54801-6143STDY11462697,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54802-6143STDY11462698,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54803-6143STDY11462699,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54804-6143STDY11462700,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54805-6143STDY11462701,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54806-6143STDY11462702,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54807-6143STDY11462703,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54808-6143STDY11462704,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54809-6143STDY11462705,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54810-6143STDY11462706,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54811-6143STDY11462707,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54812-6143STDY11462708,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54813-6143STDY11462709,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54814-6143STDY11462710,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54815-6143STDY11462711,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54816-6143STDY11462712,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54817-6143STDY11462713,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54818-6143STDY11462714,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54819-6143STDY11462715,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54820-6143STDY11462716,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54821-6143STDY11462717,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54822-6143STDY11462718,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54823-6143STDY11462719,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54824-6143STDY11462720,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54825-6143STDY11462721,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54826-6143STDY11462722,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54827-6143STDY11462723,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54828-6143STDY11462724,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54829-6143STDY11462725,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54830-6143STDY11462726,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54831-6143STDY11462727,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54832-6143STDY11462730,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54833-6143STDY11462731,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54834-6143STDY11462732,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54835-6143STDY11462733,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54836-6143STDY11462734,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54837-6143STDY11462735,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54838-6143STDY11462736,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54839-6143STDY11462737,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54840-6143STDY11462738,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54841-6143STDY11462739,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54842-6143STDY11462740,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54843-6143STDY11462741,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54844-6143STDY11462742,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54845-6143STDY11462743,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54846-6143STDY11462744,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54847-6143STDY11462745,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54848-6143STDY11462746,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54849-6143STDY11462747,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54850-6143STDY11462748,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54851-6143STDY11462749,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54852-6143STDY11462750,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54853-6143STDY11462751,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54854-6143STDY11462752,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54855-6143STDY11462753,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54856-6143STDY11462754,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54857-6143STDY11462755,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54858-6143STDY11462756,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54859-6143STDY11462757,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54860-6143STDY11462758,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54861-6143STDY11462759,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54862-6143STDY11462760,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54863-6143STDY11462761,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54864-6143STDY11462762,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54865-6143STDY11462763,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54866-6143STDY11462764,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54867-6143STDY11462765,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54868-6143STDY11462766,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54869-6143STDY11462767,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54870-6143STDY11462768,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54871-6143STDY11462769,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54872-6143STDY11462770,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54873-6143STDY11462771,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54874-6143STDY11462772,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54875-6143STDY11462773,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54876-6143STDY11462774,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54877-6143STDY11462775,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54878-6143STDY11462776,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54879-6143STDY11462777,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54880-6143STDY11462778,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54881-6143STDY11462779,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54882-6143STDY11462780,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54883-6143STDY11462781,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54884-6143STDY11462782,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54885-6143STDY11462783,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54886-6143STDY11462784,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54887-6143STDY11462785,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54888-6143STDY11462786,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54889-6143STDY11462787,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54890-6143STDY11462788,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54891-6143STDY11462789,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54892-6143STDY11462790,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv new file mode 100644 index 000000000..4c76b6b29 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv @@ -0,0 +1,249 @@ +sample_id,taxon +VBS54551-6143STDY11462443,dirus +VBS54553-6143STDY11462445,dirus +VBS54554-6143STDY11462446,dirus +VBS54555-6143STDY11462447,dirus +VBS54556-6143STDY11462448,dirus +VBS54557-6143STDY11462449,dirus +VBS54558-6143STDY11462450,dirus +VBS54561-6143STDY11462453,dirus +VBS54562-6143STDY11462454,dirus +VBS54563-6143STDY11462455,dirus +VBS54564-6143STDY11462456,dirus +VBS54565-6143STDY11462457,dirus +VBS54567-6143STDY11462459,dirus +VBS54569-6143STDY11462461,dirus +VBS54570-6143STDY11462462,dirus +VBS54571-6143STDY11462463,dirus +VBS54572-6143STDY11462464,dirus +VBS54574-6143STDY11462466,dirus +VBS54575-6143STDY11462467,dirus +VBS54576-6143STDY11462468,dirus +VBS54577-6143STDY11462469,dirus +VBS54578-6143STDY11462470,dirus +VBS54579-6143STDY11462471,dirus +VBS54580-6143STDY11462472,dirus +VBS54581-6143STDY11462473,dirus +VBS54582-6143STDY11462474,dirus +VBS54583-6143STDY11462475,dirus +VBS54585-6143STDY11462477,dirus +VBS54586-6143STDY11462478,dirus +VBS54588-6143STDY11462480,dirus +VBS54589-6143STDY11462481,dirus +VBS54590-6143STDY11462482,dirus +VBS54591-6143STDY11462483,dirus +VBS54592-6143STDY11462484,dirus +VBS54593-6143STDY11462485,dirus +VBS54594-6143STDY11462486,dirus +VBS54595-6143STDY11462487,dirus +VBS54596-6143STDY11462488,dirus +VBS54597-6143STDY11462489,dirus +VBS54598-6143STDY11462490,dirus +VBS54599-6143STDY11462491,dirus +VBS54644-6143STDY11462538,dirus +VBS54647-6143STDY11462541,dirus +VBS54648-6143STDY11462542,dirus +VBS54649-6143STDY11462543,dirus +VBS54650-6143STDY11462544,dirus +VBS54651-6143STDY11462545,dirus +VBS54654-6143STDY11462548,dirus +VBS54655-6143STDY11462549,dirus +VBS54656-6143STDY11462550,dirus +VBS54657-6143STDY11462551,dirus +VBS54658-6143STDY11462552,dirus +VBS54659-6143STDY11462553,dirus +VBS54661-6143STDY11462555,dirus +VBS54662-6143STDY11462556,dirus +VBS54663-6143STDY11462557,dirus +VBS54664-6143STDY11462558,dirus +VBS54665-6143STDY11462559,dirus +VBS54666-6143STDY11462560,dirus +VBS54667-6143STDY11462561,dirus +VBS54668-6143STDY11462562,dirus +VBS54669-6143STDY11462563,dirus +VBS54671-6143STDY11462565,dirus +VBS54675-6143STDY11462569,dirus +VBS54679-6143STDY11462573,dirus +VBS54680-6143STDY11462574,dirus +VBS54682-6143STDY11462576,dirus +VBS54683-6143STDY11462577,dirus +VBS54687-6143STDY11462581,dirus +VBS54689-6143STDY11462583,dirus +VBS54697-6143STDY11462591,dirus +VBS54699-6143STDY11462593,dirus +VBS54702-6143STDY11462596,dirus +VBS54703-6143STDY11462597,dirus +VBS54704-6143STDY11462598,dirus +VBS54706-6143STDY11462600,dirus +VBS54707-6143STDY11462601,dirus +VBS54709-6143STDY11462603,dirus +VBS54710-6143STDY11462604,dirus +VBS54711-6143STDY11462605,dirus +VBS54712-6143STDY11462606,dirus +VBS54713-6143STDY11462607,dirus +VBS54715-6143STDY11462609,dirus +VBS54716-6143STDY11462610,dirus +VBS54717-6143STDY11462611,dirus +VBS54718-6143STDY11462612,dirus +VBS54719-6143STDY11462613,dirus +VBS54720-6143STDY11462614,dirus +VBS54722-6143STDY11462616,dirus +VBS54723-6143STDY11462617,dirus +VBS54724-6143STDY11462618,dirus +VBS54726-6143STDY11462620,dirus +VBS54731-6143STDY11462625,dirus +VBS54734-6143STDY11462628,dirus +VBS54735-6143STDY11462629,dirus +VBS54737-6143STDY11462631,dirus +VBS54738-6143STDY11462634,dirus +VBS54739-6143STDY11462635,dirus +VBS54740-6143STDY11462636,dirus +VBS54741-6143STDY11462637,dirus +VBS54742-6143STDY11462638,dirus +VBS54743-6143STDY11462639,dirus +VBS54744-6143STDY11462640,dirus +VBS54746-6143STDY11462642,dirus +VBS54747-6143STDY11462643,dirus +VBS54748-6143STDY11462644,dirus +VBS54749-6143STDY11462645,dirus +VBS54750-6143STDY11462646,dirus +VBS54751-6143STDY11462647,dirus +VBS54752-6143STDY11462648,dirus +VBS54753-6143STDY11462649,dirus +VBS54754-6143STDY11462650,dirus +VBS54755-6143STDY11462651,dirus +VBS54756-6143STDY11462652,dirus +VBS54757-6143STDY11462653,dirus +VBS54758-6143STDY11462654,dirus +VBS54759-6143STDY11462655,dirus +VBS54760-6143STDY11462656,dirus +VBS54761-6143STDY11462657,dirus +VBS54762-6143STDY11462658,dirus +VBS54763-6143STDY11462659,dirus +VBS54764-6143STDY11462660,dirus +VBS54765-6143STDY11462661,dirus +VBS54766-6143STDY11462662,dirus +VBS54767-6143STDY11462663,dirus +VBS54768-6143STDY11462664,dirus +VBS54769-6143STDY11462665,dirus +VBS54770-6143STDY11462666,dirus +VBS54771-6143STDY11462667,dirus +VBS54772-6143STDY11462668,dirus +VBS54773-6143STDY11462669,dirus +VBS54776-6143STDY11462672,dirus +VBS54777-6143STDY11462673,dirus +VBS54778-6143STDY11462674,dirus +VBS54779-6143STDY11462675,dirus +VBS54780-6143STDY11462676,dirus +VBS54781-6143STDY11462677,dirus +VBS54782-6143STDY11462678,dirus +VBS54783-6143STDY11462679,dirus +VBS54784-6143STDY11462680,dirus +VBS54785-6143STDY11462681,dirus +VBS54786-6143STDY11462682,dirus +VBS54787-6143STDY11462683,dirus +VBS54788-6143STDY11462684,dirus +VBS54789-6143STDY11462685,dirus +VBS54790-6143STDY11462686,dirus +VBS54791-6143STDY11462687,dirus +VBS54792-6143STDY11462688,dirus +VBS54793-6143STDY11462689,dirus +VBS54794-6143STDY11462690,dirus +VBS54795-6143STDY11462691,dirus +VBS54796-6143STDY11462692,dirus +VBS54797-6143STDY11462693,dirus +VBS54798-6143STDY11462694,dirus +VBS54799-6143STDY11462695,dirus +VBS54800-6143STDY11462696,dirus +VBS54801-6143STDY11462697,dirus +VBS54802-6143STDY11462698,dirus +VBS54803-6143STDY11462699,dirus +VBS54804-6143STDY11462700,dirus +VBS54805-6143STDY11462701,dirus +VBS54806-6143STDY11462702,dirus +VBS54807-6143STDY11462703,dirus +VBS54808-6143STDY11462704,dirus +VBS54809-6143STDY11462705,dirus +VBS54810-6143STDY11462706,dirus +VBS54811-6143STDY11462707,dirus +VBS54812-6143STDY11462708,dirus +VBS54813-6143STDY11462709,dirus +VBS54814-6143STDY11462710,dirus +VBS54815-6143STDY11462711,dirus +VBS54816-6143STDY11462712,dirus +VBS54817-6143STDY11462713,dirus +VBS54818-6143STDY11462714,dirus +VBS54819-6143STDY11462715,dirus +VBS54820-6143STDY11462716,dirus +VBS54821-6143STDY11462717,dirus +VBS54822-6143STDY11462718,dirus +VBS54823-6143STDY11462719,dirus +VBS54824-6143STDY11462720,dirus +VBS54825-6143STDY11462721,dirus +VBS54826-6143STDY11462722,dirus +VBS54827-6143STDY11462723,dirus +VBS54828-6143STDY11462724,dirus +VBS54829-6143STDY11462725,dirus +VBS54830-6143STDY11462726,dirus +VBS54831-6143STDY11462727,dirus +VBS54832-6143STDY11462730,dirus +VBS54833-6143STDY11462731,dirus +VBS54834-6143STDY11462732,dirus +VBS54835-6143STDY11462733,dirus +VBS54836-6143STDY11462734,dirus +VBS54837-6143STDY11462735,dirus +VBS54838-6143STDY11462736,dirus +VBS54839-6143STDY11462737,dirus +VBS54840-6143STDY11462738,dirus +VBS54841-6143STDY11462739,dirus +VBS54842-6143STDY11462740,dirus +VBS54843-6143STDY11462741,dirus +VBS54844-6143STDY11462742,dirus +VBS54845-6143STDY11462743,dirus +VBS54846-6143STDY11462744,dirus +VBS54847-6143STDY11462745,dirus +VBS54848-6143STDY11462746,dirus +VBS54849-6143STDY11462747,dirus +VBS54850-6143STDY11462748,dirus +VBS54851-6143STDY11462749,dirus +VBS54852-6143STDY11462750,dirus +VBS54853-6143STDY11462751,dirus +VBS54854-6143STDY11462752,dirus +VBS54855-6143STDY11462753,dirus +VBS54856-6143STDY11462754,dirus +VBS54857-6143STDY11462755,dirus +VBS54858-6143STDY11462756,dirus +VBS54859-6143STDY11462757,dirus +VBS54860-6143STDY11462758,dirus +VBS54861-6143STDY11462759,dirus +VBS54862-6143STDY11462760,dirus +VBS54863-6143STDY11462761,dirus +VBS54864-6143STDY11462762,dirus +VBS54865-6143STDY11462763,dirus +VBS54866-6143STDY11462764,dirus +VBS54867-6143STDY11462765,dirus +VBS54868-6143STDY11462766,dirus +VBS54869-6143STDY11462767,dirus +VBS54870-6143STDY11462768,dirus +VBS54871-6143STDY11462769,dirus +VBS54872-6143STDY11462770,dirus +VBS54873-6143STDY11462771,dirus +VBS54874-6143STDY11462772,dirus +VBS54875-6143STDY11462773,dirus +VBS54876-6143STDY11462774,dirus +VBS54877-6143STDY11462775,dirus +VBS54878-6143STDY11462776,dirus +VBS54879-6143STDY11462777,dirus +VBS54880-6143STDY11462778,dirus +VBS54881-6143STDY11462779,dirus +VBS54882-6143STDY11462780,dirus +VBS54883-6143STDY11462781,dirus +VBS54884-6143STDY11462782,dirus +VBS54885-6143STDY11462783,dirus +VBS54886-6143STDY11462784,dirus +VBS54887-6143STDY11462785,dirus +VBS54888-6143STDY11462786,dirus +VBS54889-6143STDY11462787,dirus +VBS54890-6143STDY11462788,dirus +VBS54891-6143STDY11462789,dirus +VBS54892-6143STDY11462790,dirus diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv new file mode 100644 index 000000000..2f3c5ca05 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv @@ -0,0 +1,220 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45974-6296STDY9478582,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45976-6296STDY9478584,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45979-6296STDY9478587,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45982-6296STDY9478589,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46005-6296STDY9478612,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46042-6296STDY9478649,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46050-6296STDY9478657,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46059-6296STDY9478666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46066-6296STDY9478673,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46067-6296STDY9478674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46078-6296STDY9478687,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46083-6296STDY9478692,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46084-6296STDY9478693,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46087-6296STDY9478696,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46088-6296STDY9478697,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46098-6296STDY9478707,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46121-6296STDY9478730,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46141-6296STDY9478750,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46145-6296STDY9478754,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46146-6296STDY9478755,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46154-6296STDY9478763,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46168-6296STDY9478779,Thailand,THA,Surat Thani Province,TH-84,Vibhavadi +VBS46172-6296STDY9478782,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46173-6296STDY9478783,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46175-6296STDY9478785,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46180-6296STDY9478790,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46183-6296STDY9478793,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46187-6296STDY9478797,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46188-6296STDY9478798,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46189-6296STDY9478799,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46190-6296STDY9478800,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46192-6296STDY9478801,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46198-6296STDY9478807,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45975-6296STDY10244530,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45983-6296STDY10244537,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45984-6296STDY10244538,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45985-6296STDY10244539,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45986-6296STDY10244540,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45987-6296STDY10244541,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45988-6296STDY10244542,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45989-6296STDY10244543,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45991-6296STDY10244545,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45992-6296STDY10244546,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45993-6296STDY10244547,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45994-6296STDY10244548,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45995-6296STDY10244549,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45996-6296STDY10244550,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45997-6296STDY10244551,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45998-6296STDY10244552,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45999-6296STDY10244553,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46000-6296STDY10244554,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46001-6296STDY10244555,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46002-6296STDY10244556,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46003-6296STDY10244557,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46004-6296STDY10244558,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46006-6296STDY10244560,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46007-6296STDY10244561,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46008-6296STDY10244562,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46009-6296STDY10244563,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46010-6296STDY10244564,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46011-6296STDY10244565,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46012-6296STDY10244566,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46013-6296STDY10244567,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46014-6296STDY10244568,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46016-6296STDY10244570,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46017-6296STDY10244571,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46019-6296STDY10244573,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46020-6296STDY10244574,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46021-6296STDY10244575,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46022-6296STDY10244576,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46025-6296STDY10244579,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46026-6296STDY10244580,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46027-6296STDY10244581,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46028-6296STDY10244582,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46029-6296STDY10244583,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46030-6296STDY10244584,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46031-6296STDY10244585,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46032-6296STDY10244586,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46033-6296STDY10244587,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46034-6296STDY10244588,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46035-6296STDY10244589,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46036-6296STDY10244590,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46037-6296STDY10244591,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46038-6296STDY10244592,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46039-6296STDY10244593,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46040-6296STDY10244594,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46041-6296STDY10244595,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46043-6296STDY10244597,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46044-6296STDY10244598,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46045-6296STDY10244599,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46046-6296STDY10244600,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46047-6296STDY10244601,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46048-6296STDY10244602,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46049-6296STDY10244603,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46051-6296STDY10244605,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46052-6296STDY10244606,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46053-6296STDY10244607,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46054-6296STDY10244608,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46055-6296STDY10244609,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46056-6296STDY10244610,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46057-6296STDY10244611,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46060-6296STDY10244614,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46061-6296STDY10244615,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46063-6296STDY10244617,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46064-6296STDY10244618,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46065-6296STDY10244619,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46068-6296STDY10244622,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46069-6296STDY10244625,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46070-6296STDY10244626,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46071-6296STDY10244627,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46072-6296STDY10244628,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46073-6296STDY10244629,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46074-6296STDY10244630,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46075-6296STDY10244631,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46076-6296STDY10244632,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46077-6296STDY10244633,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46079-6296STDY10244635,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46080-6296STDY10244636,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46081-6296STDY10244637,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46082-6296STDY10244638,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46085-6296STDY10244641,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46086-6296STDY10244642,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46089-6296STDY10244645,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46090-6296STDY10244646,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46091-6296STDY10244647,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46092-6296STDY10244648,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46093-6296STDY10244649,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46094-6296STDY10244650,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46095-6296STDY10244651,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46096-6296STDY10244652,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46097-6296STDY10244653,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46099-6296STDY10244655,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46100-6296STDY10244656,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46101-6296STDY10244657,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46102-6296STDY10244658,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46103-6296STDY10244659,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46104-6296STDY10244660,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46105-6296STDY10244661,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46106-6296STDY10244662,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46107-6296STDY10244663,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46108-6296STDY10244664,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46109-6296STDY10244665,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46110-6296STDY10244666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46111-6296STDY10244667,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46112-6296STDY10244668,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46113-6296STDY10244669,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46114-6296STDY10244670,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46115-6296STDY10244671,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46116-6296STDY10244672,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46117-6296STDY10244673,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46118-6296STDY10244674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46119-6296STDY10244675,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46120-6296STDY10244676,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46122-6296STDY10244678,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46123-6296STDY10244679,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46124-6296STDY10244680,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46125-6296STDY10244681,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46126-6296STDY10244682,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46127-6296STDY10244683,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46128-6296STDY10244684,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46129-6296STDY10244685,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46130-6296STDY10244686,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46131-6296STDY10244687,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46132-6296STDY10244688,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46133-6296STDY10244689,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46134-6296STDY10244690,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46135-6296STDY10244691,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46136-6296STDY10244692,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46137-6296STDY10244693,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46138-6296STDY10244694,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46139-6296STDY10244695,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46140-6296STDY10244696,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46142-6296STDY10244698,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46143-6296STDY10244699,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46144-6296STDY10244700,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46147-6296STDY10244703,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46148-6296STDY10244704,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46149-6296STDY10244705,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46150-6296STDY10244706,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46151-6296STDY10244707,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46152-6296STDY10244708,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46153-6296STDY10244709,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46155-6296STDY10244711,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46156-6296STDY10244712,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46157-6296STDY10244713,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46158-6296STDY10244714,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46160-6296STDY10244716,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46161-6296STDY10244717,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46162-6296STDY10244718,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46163-6296STDY10244721,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46164-6296STDY10244722,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46165-6296STDY10244723,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46166-6296STDY10244724,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46170-6296STDY10244727,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46171-6296STDY10244728,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46174-6296STDY10244731,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46176-6296STDY10244733,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46177-6296STDY10244734,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46178-6296STDY10244735,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46179-6296STDY10244736,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46181-6296STDY10244738,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46182-6296STDY10244739,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46184-6296STDY10244741,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46185-6296STDY10244742,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46186-6296STDY10244743,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46193-6296STDY10244749,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46194-6296STDY10244750,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46195-6296STDY10244751,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46196-6296STDY10244752,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46197-6296STDY10244753,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46199-6296STDY10244755,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46200-6296STDY10244756,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46201-6296STDY10244757,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46202-6296STDY10244758,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46203-6296STDY10244759,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46204-6296STDY10244760,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46205-6296STDY10244761,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46206-6296STDY10244762,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46207-6296STDY10244763,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv new file mode 100644 index 000000000..6db6689d7 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv @@ -0,0 +1,220 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45974-6296STDY9478582,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45976-6296STDY9478584,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45979-6296STDY9478587,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_03,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45982-6296STDY9478589,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46005-6296STDY9478612,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46042-6296STDY9478649,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46050-6296STDY9478657,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46059-6296STDY9478666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46066-6296STDY9478673,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46067-6296STDY9478674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46078-6296STDY9478687,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46083-6296STDY9478692,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46084-6296STDY9478693,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46087-6296STDY9478696,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46088-6296STDY9478697,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46098-6296STDY9478707,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46121-6296STDY9478730,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46141-6296STDY9478750,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46145-6296STDY9478754,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46146-6296STDY9478755,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46154-6296STDY9478763,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46168-6296STDY9478779,THA,Surat Thani Province,TH-84,Vibhavadi,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Vibhavadi_diru_2019,TH-84_Vibhavadi_diru_2019_10,TH-84_Vibhavadi_diru_2019_Q4 +VBS46172-6296STDY9478782,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46173-6296STDY9478783,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46175-6296STDY9478785,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46180-6296STDY9478790,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46183-6296STDY9478793,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46187-6296STDY9478797,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46188-6296STDY9478798,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46189-6296STDY9478799,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46190-6296STDY9478800,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46192-6296STDY9478801,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46198-6296STDY9478807,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS45975-6296STDY10244530,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45983-6296STDY10244537,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45984-6296STDY10244538,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45985-6296STDY10244539,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45986-6296STDY10244540,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45987-6296STDY10244541,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45988-6296STDY10244542,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45989-6296STDY10244543,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45991-6296STDY10244545,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45992-6296STDY10244546,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45993-6296STDY10244547,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45994-6296STDY10244548,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45995-6296STDY10244549,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45996-6296STDY10244550,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45997-6296STDY10244551,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45998-6296STDY10244552,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45999-6296STDY10244553,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46000-6296STDY10244554,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46001-6296STDY10244555,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46002-6296STDY10244556,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46003-6296STDY10244557,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46004-6296STDY10244558,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46006-6296STDY10244560,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46007-6296STDY10244561,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46008-6296STDY10244562,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46009-6296STDY10244563,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46010-6296STDY10244564,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46011-6296STDY10244565,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46012-6296STDY10244566,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46013-6296STDY10244567,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46014-6296STDY10244568,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46016-6296STDY10244570,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46017-6296STDY10244571,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46019-6296STDY10244573,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46020-6296STDY10244574,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46021-6296STDY10244575,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46022-6296STDY10244576,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46025-6296STDY10244579,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46026-6296STDY10244580,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46027-6296STDY10244581,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46028-6296STDY10244582,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46029-6296STDY10244583,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46030-6296STDY10244584,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46031-6296STDY10244585,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46032-6296STDY10244586,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46033-6296STDY10244587,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46034-6296STDY10244588,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46035-6296STDY10244589,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46036-6296STDY10244590,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46037-6296STDY10244591,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46038-6296STDY10244592,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46039-6296STDY10244593,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46040-6296STDY10244594,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46041-6296STDY10244595,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46043-6296STDY10244597,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46044-6296STDY10244598,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46045-6296STDY10244599,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46046-6296STDY10244600,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46047-6296STDY10244601,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46048-6296STDY10244602,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46049-6296STDY10244603,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46051-6296STDY10244605,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46052-6296STDY10244606,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46053-6296STDY10244607,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46054-6296STDY10244608,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46055-6296STDY10244609,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46056-6296STDY10244610,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46057-6296STDY10244611,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46060-6296STDY10244614,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_05,TH-84_Tha-Chang_diru_2019_Q2 +VBS46061-6296STDY10244615,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_01,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_01,TH-84_Tha-Chang_diru_2019_Q1 +VBS46063-6296STDY10244617,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46064-6296STDY10244618,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46065-6296STDY10244619,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46068-6296STDY10244622,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46069-6296STDY10244625,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46070-6296STDY10244626,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46071-6296STDY10244627,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46072-6296STDY10244628,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46073-6296STDY10244629,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46074-6296STDY10244630,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46075-6296STDY10244631,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46076-6296STDY10244632,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46077-6296STDY10244633,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46079-6296STDY10244635,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46080-6296STDY10244636,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46081-6296STDY10244637,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46082-6296STDY10244638,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46085-6296STDY10244641,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46086-6296STDY10244642,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46089-6296STDY10244645,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46090-6296STDY10244646,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46091-6296STDY10244647,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46092-6296STDY10244648,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46093-6296STDY10244649,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46094-6296STDY10244650,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46095-6296STDY10244651,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46096-6296STDY10244652,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46097-6296STDY10244653,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46099-6296STDY10244655,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46100-6296STDY10244656,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46101-6296STDY10244657,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46102-6296STDY10244658,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46103-6296STDY10244659,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46104-6296STDY10244660,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46105-6296STDY10244661,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46106-6296STDY10244662,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46107-6296STDY10244663,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46108-6296STDY10244664,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46109-6296STDY10244665,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46110-6296STDY10244666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46111-6296STDY10244667,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46112-6296STDY10244668,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46113-6296STDY10244669,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46114-6296STDY10244670,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46115-6296STDY10244671,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46116-6296STDY10244672,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46117-6296STDY10244673,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46118-6296STDY10244674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46119-6296STDY10244675,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46120-6296STDY10244676,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46122-6296STDY10244678,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46123-6296STDY10244679,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46124-6296STDY10244680,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46125-6296STDY10244681,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46126-6296STDY10244682,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46127-6296STDY10244683,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46128-6296STDY10244684,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46129-6296STDY10244685,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46130-6296STDY10244686,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46131-6296STDY10244687,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46132-6296STDY10244688,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46133-6296STDY10244689,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46134-6296STDY10244690,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46135-6296STDY10244691,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46136-6296STDY10244692,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46137-6296STDY10244693,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46138-6296STDY10244694,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46139-6296STDY10244695,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46140-6296STDY10244696,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46142-6296STDY10244698,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46143-6296STDY10244699,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46144-6296STDY10244700,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46147-6296STDY10244703,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46148-6296STDY10244704,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46149-6296STDY10244705,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46150-6296STDY10244706,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46151-6296STDY10244707,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46152-6296STDY10244708,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46153-6296STDY10244709,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46155-6296STDY10244711,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46156-6296STDY10244712,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46157-6296STDY10244713,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46158-6296STDY10244714,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46160-6296STDY10244716,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46161-6296STDY10244717,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46162-6296STDY10244718,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46163-6296STDY10244721,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46164-6296STDY10244722,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46165-6296STDY10244723,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46166-6296STDY10244724,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46170-6296STDY10244727,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46171-6296STDY10244728,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46174-6296STDY10244731,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46176-6296STDY10244733,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46177-6296STDY10244734,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46178-6296STDY10244735,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46179-6296STDY10244736,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46181-6296STDY10244738,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46182-6296STDY10244739,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46184-6296STDY10244741,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46185-6296STDY10244742,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46186-6296STDY10244743,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46193-6296STDY10244749,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46194-6296STDY10244750,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46195-6296STDY10244751,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46196-6296STDY10244752,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46197-6296STDY10244753,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46199-6296STDY10244755,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46200-6296STDY10244756,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46201-6296STDY10244757,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46202-6296STDY10244758,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46203-6296STDY10244759,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46204-6296STDY10244760,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46205-6296STDY10244761,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46206-6296STDY10244762,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46207-6296STDY10244763,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 diff --git a/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv new file mode 100644 index 000000000..6393f49a5 --- /dev/null +++ b/tests/anoph/fixture/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv @@ -0,0 +1,220 @@ +sample_id,taxon +VBS45974-6296STDY9478582,dirus +VBS45976-6296STDY9478584,dirus +VBS45979-6296STDY9478587,dirus +VBS45982-6296STDY9478589,dirus +VBS46005-6296STDY9478612,dirus +VBS46042-6296STDY9478649,dirus +VBS46050-6296STDY9478657,dirus +VBS46059-6296STDY9478666,dirus +VBS46066-6296STDY9478673,dirus +VBS46067-6296STDY9478674,dirus +VBS46078-6296STDY9478687,dirus +VBS46083-6296STDY9478692,dirus +VBS46084-6296STDY9478693,dirus +VBS46087-6296STDY9478696,dirus +VBS46088-6296STDY9478697,dirus +VBS46098-6296STDY9478707,dirus +VBS46121-6296STDY9478730,dirus +VBS46141-6296STDY9478750,dirus +VBS46145-6296STDY9478754,dirus +VBS46146-6296STDY9478755,dirus +VBS46154-6296STDY9478763,dirus +VBS46168-6296STDY9478779,dirus +VBS46172-6296STDY9478782,dirus +VBS46173-6296STDY9478783,dirus +VBS46175-6296STDY9478785,dirus +VBS46180-6296STDY9478790,dirus +VBS46183-6296STDY9478793,dirus +VBS46187-6296STDY9478797,dirus +VBS46188-6296STDY9478798,dirus +VBS46189-6296STDY9478799,dirus +VBS46190-6296STDY9478800,dirus +VBS46192-6296STDY9478801,dirus +VBS46198-6296STDY9478807,dirus +VBS45975-6296STDY10244530,dirus +VBS45983-6296STDY10244537,dirus +VBS45984-6296STDY10244538,dirus +VBS45985-6296STDY10244539,dirus +VBS45986-6296STDY10244540,dirus +VBS45987-6296STDY10244541,dirus +VBS45988-6296STDY10244542,dirus +VBS45989-6296STDY10244543,dirus +VBS45991-6296STDY10244545,dirus +VBS45992-6296STDY10244546,dirus +VBS45993-6296STDY10244547,dirus +VBS45994-6296STDY10244548,dirus +VBS45995-6296STDY10244549,dirus +VBS45996-6296STDY10244550,dirus +VBS45997-6296STDY10244551,dirus +VBS45998-6296STDY10244552,dirus +VBS45999-6296STDY10244553,dirus +VBS46000-6296STDY10244554,dirus +VBS46001-6296STDY10244555,dirus +VBS46002-6296STDY10244556,dirus +VBS46003-6296STDY10244557,dirus +VBS46004-6296STDY10244558,dirus +VBS46006-6296STDY10244560,dirus +VBS46007-6296STDY10244561,dirus +VBS46008-6296STDY10244562,dirus +VBS46009-6296STDY10244563,dirus +VBS46010-6296STDY10244564,dirus +VBS46011-6296STDY10244565,dirus +VBS46012-6296STDY10244566,dirus +VBS46013-6296STDY10244567,dirus +VBS46014-6296STDY10244568,dirus +VBS46016-6296STDY10244570,dirus +VBS46017-6296STDY10244571,dirus +VBS46019-6296STDY10244573,dirus +VBS46020-6296STDY10244574,dirus +VBS46021-6296STDY10244575,dirus +VBS46022-6296STDY10244576,dirus +VBS46025-6296STDY10244579,dirus +VBS46026-6296STDY10244580,dirus +VBS46027-6296STDY10244581,dirus +VBS46028-6296STDY10244582,dirus +VBS46029-6296STDY10244583,dirus +VBS46030-6296STDY10244584,dirus +VBS46031-6296STDY10244585,dirus +VBS46032-6296STDY10244586,dirus +VBS46033-6296STDY10244587,dirus +VBS46034-6296STDY10244588,dirus +VBS46035-6296STDY10244589,dirus +VBS46036-6296STDY10244590,dirus +VBS46037-6296STDY10244591,dirus +VBS46038-6296STDY10244592,dirus +VBS46039-6296STDY10244593,dirus +VBS46040-6296STDY10244594,dirus +VBS46041-6296STDY10244595,dirus +VBS46043-6296STDY10244597,dirus +VBS46044-6296STDY10244598,dirus +VBS46045-6296STDY10244599,dirus +VBS46046-6296STDY10244600,dirus +VBS46047-6296STDY10244601,dirus +VBS46048-6296STDY10244602,dirus +VBS46049-6296STDY10244603,dirus +VBS46051-6296STDY10244605,dirus +VBS46052-6296STDY10244606,dirus +VBS46053-6296STDY10244607,dirus +VBS46054-6296STDY10244608,dirus +VBS46055-6296STDY10244609,dirus +VBS46056-6296STDY10244610,dirus +VBS46057-6296STDY10244611,dirus +VBS46060-6296STDY10244614,dirus +VBS46061-6296STDY10244615,dirus +VBS46063-6296STDY10244617,dirus +VBS46064-6296STDY10244618,dirus +VBS46065-6296STDY10244619,dirus +VBS46068-6296STDY10244622,dirus +VBS46069-6296STDY10244625,dirus +VBS46070-6296STDY10244626,dirus +VBS46071-6296STDY10244627,dirus +VBS46072-6296STDY10244628,dirus +VBS46073-6296STDY10244629,dirus +VBS46074-6296STDY10244630,dirus +VBS46075-6296STDY10244631,dirus +VBS46076-6296STDY10244632,dirus +VBS46077-6296STDY10244633,dirus +VBS46079-6296STDY10244635,dirus +VBS46080-6296STDY10244636,dirus +VBS46081-6296STDY10244637,dirus +VBS46082-6296STDY10244638,dirus +VBS46085-6296STDY10244641,dirus +VBS46086-6296STDY10244642,dirus +VBS46089-6296STDY10244645,dirus +VBS46090-6296STDY10244646,dirus +VBS46091-6296STDY10244647,dirus +VBS46092-6296STDY10244648,dirus +VBS46093-6296STDY10244649,dirus +VBS46094-6296STDY10244650,dirus +VBS46095-6296STDY10244651,dirus +VBS46096-6296STDY10244652,dirus +VBS46097-6296STDY10244653,dirus +VBS46099-6296STDY10244655,dirus +VBS46100-6296STDY10244656,dirus +VBS46101-6296STDY10244657,dirus +VBS46102-6296STDY10244658,dirus +VBS46103-6296STDY10244659,dirus +VBS46104-6296STDY10244660,dirus +VBS46105-6296STDY10244661,dirus +VBS46106-6296STDY10244662,dirus +VBS46107-6296STDY10244663,dirus +VBS46108-6296STDY10244664,dirus +VBS46109-6296STDY10244665,dirus +VBS46110-6296STDY10244666,dirus +VBS46111-6296STDY10244667,dirus +VBS46112-6296STDY10244668,dirus +VBS46113-6296STDY10244669,dirus +VBS46114-6296STDY10244670,dirus +VBS46115-6296STDY10244671,dirus +VBS46116-6296STDY10244672,dirus +VBS46117-6296STDY10244673,dirus +VBS46118-6296STDY10244674,dirus +VBS46119-6296STDY10244675,dirus +VBS46120-6296STDY10244676,dirus +VBS46122-6296STDY10244678,dirus +VBS46123-6296STDY10244679,dirus +VBS46124-6296STDY10244680,dirus +VBS46125-6296STDY10244681,dirus +VBS46126-6296STDY10244682,dirus +VBS46127-6296STDY10244683,dirus +VBS46128-6296STDY10244684,dirus +VBS46129-6296STDY10244685,dirus +VBS46130-6296STDY10244686,dirus +VBS46131-6296STDY10244687,dirus +VBS46132-6296STDY10244688,dirus +VBS46133-6296STDY10244689,dirus +VBS46134-6296STDY10244690,dirus +VBS46135-6296STDY10244691,dirus +VBS46136-6296STDY10244692,dirus +VBS46137-6296STDY10244693,dirus +VBS46138-6296STDY10244694,dirus +VBS46139-6296STDY10244695,dirus +VBS46140-6296STDY10244696,dirus +VBS46142-6296STDY10244698,dirus +VBS46143-6296STDY10244699,dirus +VBS46144-6296STDY10244700,dirus +VBS46147-6296STDY10244703,dirus +VBS46148-6296STDY10244704,dirus +VBS46149-6296STDY10244705,dirus +VBS46150-6296STDY10244706,dirus +VBS46151-6296STDY10244707,dirus +VBS46152-6296STDY10244708,dirus +VBS46153-6296STDY10244709,dirus +VBS46155-6296STDY10244711,dirus +VBS46156-6296STDY10244712,dirus +VBS46157-6296STDY10244713,dirus +VBS46158-6296STDY10244714,dirus +VBS46160-6296STDY10244716,dirus +VBS46161-6296STDY10244717,dirus +VBS46162-6296STDY10244718,dirus +VBS46163-6296STDY10244721,dirus +VBS46164-6296STDY10244722,dirus +VBS46165-6296STDY10244723,dirus +VBS46166-6296STDY10244724,dirus +VBS46170-6296STDY10244727,dirus +VBS46171-6296STDY10244728,dirus +VBS46174-6296STDY10244731,dirus +VBS46176-6296STDY10244733,dirus +VBS46177-6296STDY10244734,dirus +VBS46178-6296STDY10244735,dirus +VBS46179-6296STDY10244736,dirus +VBS46181-6296STDY10244738,dirus +VBS46182-6296STDY10244739,dirus +VBS46184-6296STDY10244741,dirus +VBS46185-6296STDY10244742,dirus +VBS46186-6296STDY10244743,dirus +VBS46193-6296STDY10244749,dirus +VBS46194-6296STDY10244750,dirus +VBS46195-6296STDY10244751,dirus +VBS46196-6296STDY10244752,dirus +VBS46197-6296STDY10244753,dirus +VBS46199-6296STDY10244755,dirus +VBS46200-6296STDY10244756,dirus +VBS46201-6296STDY10244757,dirus +VBS46202-6296STDY10244758,dirus +VBS46203-6296STDY10244759,dirus +VBS46204-6296STDY10244760,dirus +VBS46205-6296STDY10244761,dirus +VBS46206-6296STDY10244762,dirus +VBS46207-6296STDY10244763,dirus diff --git a/tests/anoph/fixture/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..8cc1f9da5 --- /dev/null +++ b/tests/anoph/fixture/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS46299-6321STDY9453299,41.69,42,43,42.02,42,43,41.69,42,42,43.08,43,43,39.73,40,41,41.48,42,42,0.957,0.03433 +1,VBS46300-6321STDY9453300,52.55,53,54,53.0,54,54,52.56,53,54,54.34,55,55,49.91,51,52,52.35,53,53,0.957,0.03436 +2,VBS46301-6321STDY9453301,67.77,69,70,68.26,69,70,67.76,69,69,70.22,71,71,64.45,66,68,67.48,69,70,0.957,0.03442 +3,VBS46302-6321STDY9453302,62.53,63,64,63.09,64,64,62.5,63,64,64.97,65,65,59.1,61,62,62.21,63,64,0.958,0.03441 +4,VBS46303-6321STDY9453303,44.29,45,45,44.67,45,45,44.25,45,45,45.88,46,46,42.03,43,44,44.14,45,45,0.959,0.03424 +5,VBS46304-6321STDY9453304,63.22,64,65,63.72,64,65,63.19,64,65,65.51,66,66,59.98,61,63,63.0,64,65,0.958,0.03448 +6,VBS46305-6321STDY9453305,66.57,68,68,67.22,68,68,66.65,68,67,69.32,70,69,62.55,64,66,66.17,67,68,0.957,0.03441 +7,VBS46306-6321STDY9453306,55.32,56,57,55.87,56,57,55.26,56,57,57.67,58,58,52.19,54,55,54.9,56,57,0.957,0.03434 +8,VBS46307-6321STDY9453307,47.91,48,49,48.35,49,49,47.96,48,49,49.81,50,49,45.08,46,48,47.73,48,49,0.958,0.03415 +9,VBS46308-6321STDY9453308,60.89,62,62,61.42,62,63,60.85,62,62,63.53,64,63,57.36,59,60,60.56,62,62,0.958,0.03438 +10,VBS46309-6321STDY9453309,56.93,58,58,57.43,58,58,56.96,58,58,58.55,59,59,54.33,56,57,56.72,58,58,0.959,0.03429 +11,VBS46310-6321STDY9453310,63.49,64,64,63.85,64,64,63.43,64,65,64.99,65,65,61.5,63,63,63.23,64,64,0.958,0.03447 +12,VBS46311-6321STDY9453311,61.87,63,63,62.59,63,64,61.86,63,63,64.63,65,65,57.85,59,61,61.49,62,62,0.958,0.03439 +13,VBS46312-6321STDY9453312,73.44,75,76,73.98,75,76,73.41,75,76,75.79,76,76,69.98,72,74,73.31,75,75,0.959,0.0345 +14,VBS46313-6321STDY9453313,53.08,54,54,53.62,54,54,53.13,54,54,55.22,55,55,49.87,51,53,52.85,54,53,0.959,0.03427 +15,VBS46314-6321STDY9453314,46.94,48,48,47.42,48,48,46.97,47,48,48.91,49,49,43.98,45,46,46.76,47,48,0.959,0.03424 +16,VBS46315-6321STDY9453315,40.19,40,40,40.49,41,41,40.18,40,40,41.62,41,41,38.19,39,39,40.06,40,40,0.956,0.03426 +17,VBS46316-6321STDY9453316,50.42,51,51,50.86,51,52,50.34,51,51,52.46,53,53,47.63,49,50,50.25,51,51,0.957,0.03433 +18,VBS46317-6321STDY9453317,56.41,57,58,56.99,58,58,56.45,57,57,58.84,59,59,52.81,54,56,56.17,57,57,0.959,0.0343 +19,VBS46318-6321STDY9453318,60.31,61,62,60.96,62,62,60.39,61,61,62.89,63,63,56.35,58,59,60.12,61,62,0.961,0.03434 +20,VBS46319-6321STDY9453319,55.85,57,57,56.41,57,57,55.8,56,57,58.31,58,58,52.45,54,55,55.54,56,56,0.957,0.03435 +21,VBS46320-6321STDY9453320,53.39,54,55,53.77,54,55,53.38,54,55,55.44,56,55,50.6,52,53,53.18,54,55,0.957,0.03434 +22,VBS46321-6321STDY9453321,69.25,70,71,70.16,71,72,69.19,70,71,72.5,73,73,64.38,67,69,68.95,70,71,0.96,0.03429 +23,VBS46322-6321STDY9453322,76.33,78,78,77.0,78,79,76.25,78,78,79.39,80,80,72.09,75,76,76.0,78,78,0.958,0.03438 +24,VBS46323-6321STDY9453323,50.47,51,52,50.99,52,52,50.51,51,51,52.64,53,53,47.38,49,50,50.14,51,51,0.959,0.03426 +25,VBS46324-6321STDY9453324,47.33,48,48,47.78,48,49,47.28,48,48,49.09,49,49,44.91,46,47,47.01,48,48,0.957,0.0343 +26,VBS46325-6321STDY9453325,64.46,65,66,65.24,66,66,64.38,65,66,67.53,68,68,60.2,62,63,63.97,65,65,0.958,0.03439 +27,VBS46326-6321STDY9453326,57.67,58,59,58.34,59,59,57.73,58,58,60.27,60,60,53.65,55,57,57.48,58,59,0.96,0.03432 +28,VBS46327-6321STDY9453327,63.05,64,64,63.63,64,65,62.97,64,64,65.63,66,66,59.43,61,63,62.83,64,64,0.958,0.0344 +29,VBS46328-6321STDY9453328,56.21,57,57,56.79,57,58,56.29,57,58,58.57,59,59,52.63,54,55,55.95,57,57,0.959,0.03423 +30,VBS46329-6321STDY9453329,62.43,63,64,62.99,64,64,62.48,63,64,64.93,65,65,58.89,61,62,62.05,63,63,0.958,0.03439 +31,VBS46330-6321STDY9453330,67.2,68,69,67.98,69,69,67.11,68,68,70.18,70,70,62.79,64,66,66.97,68,69,0.958,0.03445 +32,VBS46331-6321STDY9453331,53.05,54,54,53.73,54,54,53.12,54,54,55.63,56,55,49.1,50,51,52.74,53,54,0.959,0.03424 +33,VBS46332-6321STDY9453332,32.34,32,32,32.43,32,32,32.3,32,32,33.45,33,33,30.72,31,32,32.62,33,33,0.958,0.03412 +34,VBS46333-6321STDY9453333,59.06,59,59,59.92,60,59,58.94,59,59,61.85,62,61,54.62,55,56,58.97,59,59,0.957,0.03442 +35,VBS46334-6321STDY9453334,59.96,61,61,60.67,61,61,59.99,61,61,62.7,63,63,55.97,57,58,59.49,60,61,0.958,0.0343 +36,VBS46335-6321STDY9453335,66.27,67,68,67.01,68,69,66.31,67,68,69.36,70,70,61.73,64,66,65.94,67,68,0.961,0.03436 +37,VBS46336-6321STDY9453336,54.48,55,55,55.03,56,56,54.46,55,55,56.94,57,57,51.12,52,53,54.09,55,55,0.958,0.03428 +38,VBS46337-6321STDY9453337,46.2,47,47,46.67,47,47,46.16,46,47,47.99,48,47,43.58,44,46,45.98,46,47,0.957,0.03426 +39,VBS46338-6321STDY9453338,49.41,50,50,49.9,50,51,49.54,50,50,51.4,51,51,46.42,48,48,49.09,50,50,0.959,0.03421 +40,VBS46339-6321STDY9453339,58.79,59,59,59.58,60,60,58.66,59,59,61.93,62,61,54.38,55,57,58.41,59,59,0.957,0.03436 +41,VBS46340-6321STDY9453340,55.71,56,57,56.39,57,57,55.77,56,56,58.7,59,58,51.33,53,53,55.44,56,56,0.959,0.0343 +42,VBS46341-6321STDY9453341,50.85,51,51,51.53,52,52,50.85,51,51,53.54,53,53,46.94,48,49,50.45,51,51,0.957,0.03431 +43,VBS46342-6321STDY9453342,64.95,66,66,65.69,66,66,64.93,66,66,68.1,68,68,60.45,62,63,64.55,66,66,0.96,0.03433 +44,VBS46343-6321STDY9453343,53.7,54,54,54.3,55,55,53.54,54,53,56.01,56,55,49.93,51,52,54.05,55,54,0.958,0.03425 +45,VBS46344-6321STDY9453344,40.85,41,41,41.28,41,41,40.87,41,41,42.55,42,42,38.45,39,40,40.49,41,41,0.956,0.03424 +46,VBS46345-6321STDY9453345,68.49,70,70,69.4,70,71,68.49,69,70,71.95,72,72,63.35,65,66,68.14,69,70,0.96,0.03438 diff --git a/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..fa5b7c3ea --- /dev/null +++ b/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..6618ab19d --- /dev/null +++ b/tests/anoph/fixture/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 +1,VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 +2,VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 +3,VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 +4,VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 +5,VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 +6,VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 +8,VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 +9,VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 +10,VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 +11,VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 +12,VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 +13,VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 +14,VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 +15,VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 +16,VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 +17,VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 +19,VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 +20,VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 +21,VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 +22,VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 +23,VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 +24,VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 +25,VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 +26,VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 +27,VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 +28,VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 +29,VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 +30,VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 +31,VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 +32,VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 +33,VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 +34,VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 +35,VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 +36,VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 +37,VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 +38,VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 +39,VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 +40,VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 +41,VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 +42,VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 +43,VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 +44,VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 +45,VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 +46,VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 +47,VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 +48,VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 +49,VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 +50,VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 +51,VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 +52,VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 +53,VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 +54,VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 +56,VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 +57,VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 +58,VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 +59,VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 +60,VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 +61,VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 +62,VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 +63,VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 +64,VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 +65,VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 +66,VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 +67,VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 +68,VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 +69,VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 +70,VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 +71,VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 +72,VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 +73,VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 +74,VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 +75,VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 +76,VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 +77,VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 +79,VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 +80,VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 +81,VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 +82,VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 +83,VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 +84,VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 +85,VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 +86,VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 +87,VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 +88,VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 +89,VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 +90,VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 +91,VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 +92,VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 +93,VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 +94,VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 +95,VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 +96,VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 +97,VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 +98,VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 +99,VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 +100,VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 +101,VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 +102,VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 +103,VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 +104,VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 +105,VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 +106,VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 +107,VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 +108,VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 +109,VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 +110,VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 +111,VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 +112,VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 +113,VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 +114,VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 +115,VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 +116,VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 +117,VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 +118,VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 +119,VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 +120,VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 +121,VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 +122,VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 +123,VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 +124,VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 +125,VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 +126,VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 +127,VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 +128,VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 +129,VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 +130,VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 +131,VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 +132,VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 +133,VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 +134,VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 +135,VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 +136,VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 +137,VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 +138,VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 +139,VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 +140,VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 +141,VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 +142,VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 +143,VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 +144,VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 +145,VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 +146,VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 +147,VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 +148,VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 +149,VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 +150,VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 +151,VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 +152,VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 +153,VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 +154,VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 +155,VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 +156,VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 +157,VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 +158,VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 +159,VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 +160,VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 +161,VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 +162,VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 +163,VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 +164,VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 +165,VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 +166,VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 +167,VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 +168,VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 +169,VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 +170,VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 +171,VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 +172,VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 +173,VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 +174,VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 +175,VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 +176,VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 +177,VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 +178,VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 +179,VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 +180,VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 +181,VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 +182,VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 +183,VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 +184,VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 +185,VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 +186,VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 +187,VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 +188,VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 +189,VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 +190,VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 +191,VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 +192,VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 +193,VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 +194,VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 +195,VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 +196,VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 +197,VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 +198,VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 +199,VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 +200,VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 +201,VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 +202,VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 +203,VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 +204,VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 +205,VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 +206,VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 +207,VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 +208,VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 +209,VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 +210,VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 +211,VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 +212,VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 +213,VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 +214,VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 +215,VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 +216,VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 +217,VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 +218,VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 +219,VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 +220,VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 +221,VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 +222,VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 +223,VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 +224,VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 +225,VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 +226,VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 +227,VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 +228,VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 +229,VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 +230,VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 +231,VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 +232,VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 +233,VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 +234,VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 +235,VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 +236,VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 +237,VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 +238,VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 +239,VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 +240,VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 +241,VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 +242,VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 +243,VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 +244,VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 +245,VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 +246,VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 +247,VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 +248,VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 +249,VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 +250,VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 +251,VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 diff --git a/tests/anoph/fixture/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..d6c6cebde --- /dev/null +++ b/tests/anoph/fixture/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 +1,VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 +2,VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 +3,VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 +5,VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 +6,VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 +7,VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 +8,VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 +9,VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 +10,VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 +11,VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 +12,VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 +13,VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 +14,VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 +15,VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 +16,VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 +17,VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 +18,VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 +19,VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 +20,VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 +21,VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 +22,VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 +23,VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 +24,VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 +25,VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 +26,VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 +27,VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 +28,VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 +29,VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 +30,VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 +31,VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 +32,VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 +33,VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 +34,VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 +35,VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 +36,VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 +37,VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 +38,VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 +39,VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 +40,VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 +41,VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 +42,VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 +43,VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 +44,VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 +45,VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 +46,VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 +47,VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 +48,VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 +49,VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 +50,VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 +51,VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 +52,VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 +53,VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 +54,VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 +55,VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 +56,VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 +57,VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 +58,VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 +59,VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 +60,VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 +61,VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 +62,VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 +63,VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 +64,VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 +65,VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 +66,VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 +67,VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 +68,VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 +69,VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 +70,VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 +71,VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 +72,VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 +73,VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 +74,VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 +75,VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 +77,VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 +78,VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 +79,VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 +81,VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 +82,VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 +83,VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 +84,VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 +85,VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 +86,VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 +87,VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 +88,VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 +89,VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 +90,VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 +91,VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 +92,VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 +93,VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 +94,VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 +95,VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 +96,VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 +97,VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 +98,VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 +99,VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 +100,VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 +101,VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 +102,VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 +103,VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 +104,VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 +105,VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 +106,VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 +107,VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 +108,VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 +109,VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 +110,VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 +111,VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 +112,VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 +113,VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 +114,VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 +115,VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 +116,VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 +117,VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 +118,VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 +119,VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 +120,VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 +121,VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 +122,VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 +123,VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 +124,VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 +125,VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 +126,VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 +127,VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 +128,VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 +129,VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 +130,VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 +131,VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 +132,VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 +133,VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 +134,VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 +135,VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 +136,VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 +137,VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 +138,VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 +139,VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 +140,VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 +141,VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 +142,VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 +143,VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 +144,VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 +145,VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 +146,VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 +147,VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 +148,VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 +149,VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 +150,VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 +151,VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 +152,VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 +153,VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 +154,VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 +155,VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 +156,VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 +157,VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 +158,VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 +159,VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 +160,VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 +161,VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 +162,VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 +163,VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 +164,VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 +165,VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 +166,VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 +167,VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 +168,VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 +169,VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 +170,VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 +171,VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 +172,VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 +173,VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 +174,VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 +175,VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 +176,VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 +178,VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 +179,VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 +180,VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 +181,VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 +182,VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 +183,VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 +184,VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 +185,VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 +186,VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 +187,VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 +188,VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 +189,VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 +190,VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 +191,VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 +192,VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 +193,VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 +194,VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 +195,VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 +196,VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 +197,VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 +198,VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 +199,VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 +200,VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 +201,VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 +202,VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 +203,VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 +204,VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 +205,VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 +206,VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 +207,VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 +208,VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 +209,VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 +210,VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 +211,VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 +212,VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 +213,VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 +214,VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 +215,VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 +216,VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 +217,VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 +218,VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 +219,VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 +220,VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 +221,VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 +222,VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 diff --git a/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv new file mode 100644 index 000000000..9eee7704b --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv @@ -0,0 +1,48 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,taxon,sex_call +VBS46299-6321STDY9453299,VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,dirus,UKN +VBS46307-6321STDY9453307,VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46315-6321STDY9453315,VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,dirus,UKN +VBS46323-6321STDY9453323,VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,dirus,UKN +VBS46331-6321STDY9453331,VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,dirus,UKN +VBS46339-6321STDY9453339,VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288,dirus,UKN +VBS46300-6321STDY9453300,VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,dirus,UKN +VBS46308-6321STDY9453308,VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46316-6321STDY9453316,VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,dirus,UKN +VBS46324-6321STDY9453324,VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,dirus,UKN +VBS46332-6321STDY9453332,VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,dirus,UKN +VBS46340-6321STDY9453340,VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203,dirus,UKN +VBS46301-6321STDY9453301,VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,dirus,UKN +VBS46309-6321STDY9453309,VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46317-6321STDY9453317,VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,dirus,UKN +VBS46325-6321STDY9453325,VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,dirus,UKN +VBS46333-6321STDY9453333,VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,dirus,UKN +VBS46341-6321STDY9453341,VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,dirus,UKN +VBS46302-6321STDY9453302,VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,dirus,UKN +VBS46310-6321STDY9453310,VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282,dirus,UKN +VBS46318-6321STDY9453318,VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,dirus,UKN +VBS46326-6321STDY9453326,VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203,dirus,UKN +VBS46334-6321STDY9453334,VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,dirus,UKN +VBS46342-6321STDY9453342,VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,dirus,UKN +VBS46303-6321STDY9453303,VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,dirus,UKN +VBS46311-6321STDY9453311,VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194,dirus,UKN +VBS46319-6321STDY9453319,VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,dirus,UKN +VBS46327-6321STDY9453327,VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,dirus,UKN +VBS46335-6321STDY9453335,VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,dirus,UKN +VBS46343-6321STDY9453343,VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,dirus,UKN +VBS46304-6321STDY9453304,VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46312-6321STDY9453312,VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,dirus,UKN +VBS46320-6321STDY9453320,VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,dirus,UKN +VBS46328-6321STDY9453328,VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,dirus,UKN +VBS46336-6321STDY9453336,VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,dirus,UKN +VBS46344-6321STDY9453344,VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,dirus,UKN +VBS46305-6321STDY9453305,VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46313-6321STDY9453313,VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,dirus,UKN +VBS46321-6321STDY9453321,VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,dirus,UKN +VBS46329-6321STDY9453329,VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288,dirus,UKN +VBS46337-6321STDY9453337,VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,dirus,UKN +VBS46345-6321STDY9453345,VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,dirus,UKN +VBS46306-6321STDY9453306,VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,dirus,UKN +VBS46314-6321STDY9453314,VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,dirus,UKN +VBS46322-6321STDY9453322,VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,dirus,UKN +VBS46330-6321STDY9453330,VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,dirus,UKN +VBS46338-6321STDY9453338,VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,dirus,UKN diff --git a/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..77f36bdc5 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672491,median_cov_KB672491,mode_cov_KB672491,mean_cov_KB672492,median_cov_KB672492,mode_cov_KB672492,mean_cov_KB672503,median_cov_KB672503,mode_cov_KB672503,mean_cov_KB672514,median_cov_KB672514,mode_cov_KB672514,mean_cov_KB672525,median_cov_KB672525,mode_cov_KB672525,mean_cov_KB672536,median_cov_KB672536,mode_cov_KB672536,mean_cov_KB672547,median_cov_KB672547,mode_cov_KB672547,mean_cov_KB672558,median_cov_KB672558,mode_cov_KB672558,mean_cov_KB672569,median_cov_KB672569,mode_cov_KB672569,mean_cov_KB672580,median_cov_KB672580,mode_cov_KB672580,mean_cov_KB672591,median_cov_KB672591,mode_cov_KB672591,mean_cov_KB672602,median_cov_KB672602,mode_cov_KB672602,mean_cov_KB672603,median_cov_KB672603,mode_cov_KB672603,mean_cov_KB672614,median_cov_KB672614,mode_cov_KB672614,mean_cov_KB672625,median_cov_KB672625,mode_cov_KB672625,mean_cov_KB672636,median_cov_KB672636,mode_cov_KB672636,mean_cov_KB672647,median_cov_KB672647,mode_cov_KB672647,mean_cov_KB672658,median_cov_KB672658,mode_cov_KB672658,mean_cov_KB672680,median_cov_KB672680,mode_cov_KB672680,mean_cov_KB672691,median_cov_KB672691,mode_cov_KB672691,mean_cov_KB672702,median_cov_KB672702,mode_cov_KB672702,mean_cov_KB672713,median_cov_KB672713,mode_cov_KB672713,mean_cov_KB672714,median_cov_KB672714,mode_cov_KB672714,mean_cov_KB672725,median_cov_KB672725,mode_cov_KB672725,mean_cov_KB672736,median_cov_KB672736,mode_cov_KB672736,mean_cov_KB672747,median_cov_KB672747,mode_cov_KB672747,mean_cov_KB672758,median_cov_KB672758,mode_cov_KB672758,mean_cov_KB672769,median_cov_KB672769,mode_cov_KB672769,mean_cov_KB672780,median_cov_KB672780,mode_cov_KB672780,mean_cov_KB672788,median_cov_KB672788,mode_cov_KB672788,mean_cov_KB672789,median_cov_KB672789,mode_cov_KB672789,mean_cov_KB672790,median_cov_KB672790,mode_cov_KB672790,mean_cov_KB672791,median_cov_KB672791,mode_cov_KB672791,mean_cov_KB672792,median_cov_KB672792,mode_cov_KB672792,mean_cov_KB672793,median_cov_KB672793,mode_cov_KB672793,mean_cov_KB672794,median_cov_KB672794,mode_cov_KB672794,mean_cov_KB672795,median_cov_KB672795,mode_cov_KB672795,mean_cov_KB672796,median_cov_KB672796,mode_cov_KB672796,mean_cov_KB672797,median_cov_KB672797,mode_cov_KB672797,mean_cov_KB672798,median_cov_KB672798,mode_cov_KB672798,mean_cov_KB672799,median_cov_KB672799,mode_cov_KB672799,mean_cov_KB672800,median_cov_KB672800,mode_cov_KB672800,mean_cov_KB672801,median_cov_KB672801,mode_cov_KB672801,mean_cov_KB672802,median_cov_KB672802,mode_cov_KB672802,mean_cov_KB672803,median_cov_KB672803,mode_cov_KB672803,mean_cov_KB672804,median_cov_KB672804,mode_cov_KB672804,mean_cov_KB672805,median_cov_KB672805,mode_cov_KB672805,mean_cov_KB672806,median_cov_KB672806,mode_cov_KB672806,mean_cov_KB672807,median_cov_KB672807,mode_cov_KB672807,mean_cov_KB672808,median_cov_KB672808,mode_cov_KB672808,mean_cov_KB672809,median_cov_KB672809,mode_cov_KB672809,mean_cov_KB672810,median_cov_KB672810,mode_cov_KB672810,mean_cov_KB672811,median_cov_KB672811,mode_cov_KB672811,mean_cov_KB672812,median_cov_KB672812,mode_cov_KB672812,mean_cov_KB672813,median_cov_KB672813,mode_cov_KB672813,mean_cov_KB672814,median_cov_KB672814,mode_cov_KB672814,mean_cov_KB672815,median_cov_KB672815,mode_cov_KB672815,mean_cov_KB672816,median_cov_KB672816,mode_cov_KB672816,mean_cov_KB672817,median_cov_KB672817,mode_cov_KB672817,mean_cov_KB672818,median_cov_KB672818,mode_cov_KB672818,mean_cov_KB672819,median_cov_KB672819,mode_cov_KB672819,mean_cov_KB672820,median_cov_KB672820,mode_cov_KB672820,mean_cov_KB672821,median_cov_KB672821,mode_cov_KB672821,mean_cov_KB672823,median_cov_KB672823,mode_cov_KB672823,mean_cov_KB672824,median_cov_KB672824,mode_cov_KB672824,mean_cov_KB672825,median_cov_KB672825,mode_cov_KB672825,mean_cov_KB672826,median_cov_KB672826,mode_cov_KB672826,mean_cov_KB672827,median_cov_KB672827,mode_cov_KB672827,mean_cov_KB672828,median_cov_KB672828,mode_cov_KB672828,mean_cov_KB672829,median_cov_KB672829,mode_cov_KB672829,mean_cov_KB672830,median_cov_KB672830,mode_cov_KB672830,mean_cov_KB672832,median_cov_KB672832,mode_cov_KB672832,mean_cov_KB672833,median_cov_KB672833,mode_cov_KB672833,mean_cov_KB672835,median_cov_KB672835,mode_cov_KB672835,mean_cov_KB672837,median_cov_KB672837,mode_cov_KB672837,mean_cov_KB672838,median_cov_KB672838,mode_cov_KB672838,mean_cov_KB672839,median_cov_KB672839,mode_cov_KB672839,mean_cov_KB672843,median_cov_KB672843,mode_cov_KB672843,mean_cov_KB672845,median_cov_KB672845,mode_cov_KB672845,mean_cov_KB672846,median_cov_KB672846,mode_cov_KB672846,mean_cov_KB672849,median_cov_KB672849,mode_cov_KB672849,mean_cov_KB672851,median_cov_KB672851,mode_cov_KB672851,mean_cov_KB672855,median_cov_KB672855,mode_cov_KB672855,mean_cov_KB672857,median_cov_KB672857,mode_cov_KB672857,mean_cov_KB672859,median_cov_KB672859,mode_cov_KB672859,mean_cov_KB672861,median_cov_KB672861,mode_cov_KB672861,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672869,median_cov_KB672869,mode_cov_KB672869,mean_cov_KB672871,median_cov_KB672871,mode_cov_KB672871,mean_cov_KB672873,median_cov_KB672873,mode_cov_KB672873,mean_cov_KB672877,median_cov_KB672877,mode_cov_KB672877,mean_cov_KB672880,median_cov_KB672880,mode_cov_KB672880,mean_cov_KB672884,median_cov_KB672884,mode_cov_KB672884,mean_cov_KB672891,median_cov_KB672891,mode_cov_KB672891,mean_cov_KB672892,median_cov_KB672892,mode_cov_KB672892,mean_cov_KB672894,median_cov_KB672894,mode_cov_KB672894,mean_cov_KB672900,median_cov_KB672900,mode_cov_KB672900,mean_cov_KB672901,median_cov_KB672901,mode_cov_KB672901,mean_cov_KB672902,median_cov_KB672902,mode_cov_KB672902,mean_cov_KB672905,median_cov_KB672905,mode_cov_KB672905,mean_cov_KB672907,median_cov_KB672907,mode_cov_KB672907,mean_cov_KB672913,median_cov_KB672913,mode_cov_KB672913,mean_cov_KB672914,median_cov_KB672914,mode_cov_KB672914,mean_cov_KB672915,median_cov_KB672915,mode_cov_KB672915,mean_cov_KB672924,median_cov_KB672924,mode_cov_KB672924,mean_cov_KB672930,median_cov_KB672930,mode_cov_KB672930,mean_cov_KB672932,median_cov_KB672932,mode_cov_KB672932,mean_cov_KB672935,median_cov_KB672935,mode_cov_KB672935,mean_cov_KB672946,median_cov_KB672946,mode_cov_KB672946,mean_cov_KB672954,median_cov_KB672954,mode_cov_KB672954,mean_cov_KB672957,median_cov_KB672957,mode_cov_KB672957,mean_cov_KB672964,median_cov_KB672964,mode_cov_KB672964,mean_cov_KB672968,median_cov_KB672968,mode_cov_KB672968,mean_cov_KB672975,median_cov_KB672975,mode_cov_KB672975,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB672980,median_cov_KB672980,mode_cov_KB672980,mean_cov_KB672991,median_cov_KB672991,mode_cov_KB672991,mean_cov_KB673001,median_cov_KB673001,mode_cov_KB673001,mean_cov_KB673002,median_cov_KB673002,mode_cov_KB673002,mean_cov_KB673013,median_cov_KB673013,mode_cov_KB673013,mean_cov_KB673024,median_cov_KB673024,mode_cov_KB673024,mean_cov_KB673027,median_cov_KB673027,mode_cov_KB673027,mean_cov_KB673028,median_cov_KB673028,mode_cov_KB673028,mean_cov_KB673035,median_cov_KB673035,mode_cov_KB673035,mean_cov_KB673044,median_cov_KB673044,mode_cov_KB673044,mean_cov_KB673046,median_cov_KB673046,mode_cov_KB673046,mean_cov_KB673057,median_cov_KB673057,mode_cov_KB673057,mean_cov_KB673068,median_cov_KB673068,mode_cov_KB673068,mean_cov_KB673070,median_cov_KB673070,mode_cov_KB673070,mean_cov_KB673079,median_cov_KB673079,mode_cov_KB673079,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673091,median_cov_KB673091,mode_cov_KB673091,mean_cov_KB673102,median_cov_KB673102,mode_cov_KB673102,mean_cov_KB673113,median_cov_KB673113,mode_cov_KB673113,mean_cov_KB673124,median_cov_KB673124,mode_cov_KB673124,mean_cov_KB673130,median_cov_KB673130,mode_cov_KB673130,mean_cov_KB673135,median_cov_KB673135,mode_cov_KB673135,mean_cov_KB673138,median_cov_KB673138,mode_cov_KB673138,mean_cov_KB673146,median_cov_KB673146,mode_cov_KB673146,mean_cov_KB673157,median_cov_KB673157,mode_cov_KB673157,mean_cov_KB673168,median_cov_KB673168,mode_cov_KB673168,mean_cov_KB673179,median_cov_KB673179,mode_cov_KB673179,mean_cov_KB673187,median_cov_KB673187,mode_cov_KB673187,mean_cov_KB673190,median_cov_KB673190,mode_cov_KB673190,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,mean_cov_KB673202,median_cov_KB673202,mode_cov_KB673202,mean_cov_KB673213,median_cov_KB673213,mode_cov_KB673213,mean_cov_KB673224,median_cov_KB673224,mode_cov_KB673224,mean_cov_KB673235,median_cov_KB673235,mode_cov_KB673235,mean_cov_KB673246,median_cov_KB673246,mode_cov_KB673246,mean_cov_KB673257,median_cov_KB673257,mode_cov_KB673257,mean_cov_KB673268,median_cov_KB673268,mode_cov_KB673268,mean_cov_KB673279,median_cov_KB673279,mode_cov_KB673279,mean_cov_KB673290,median_cov_KB673290,mode_cov_KB673290,mean_cov_KB673301,median_cov_KB673301,mode_cov_KB673301,mean_cov_KB673312,median_cov_KB673312,mode_cov_KB673312,mean_cov_KB673313,median_cov_KB673313,mode_cov_KB673313,mean_cov_KB673324,median_cov_KB673324,mode_cov_KB673324,mean_cov_KB673335,median_cov_KB673335,mode_cov_KB673335,mean_cov_KB673346,median_cov_KB673346,mode_cov_KB673346,mean_cov_KB673357,median_cov_KB673357,mode_cov_KB673357,mean_cov_KB673368,median_cov_KB673368,mode_cov_KB673368,mean_cov_KB673379,median_cov_KB673379,mode_cov_KB673379,mean_cov_KB673390,median_cov_KB673390,mode_cov_KB673390,mean_cov_KB673401,median_cov_KB673401,mode_cov_KB673401,mean_cov_KB673412,median_cov_KB673412,mode_cov_KB673412,mean_cov_KB673423,median_cov_KB673423,mode_cov_KB673423,mean_cov_KB673424,median_cov_KB673424,mode_cov_KB673424,mean_cov_KB673435,median_cov_KB673435,mode_cov_KB673435,mean_cov_KB673446,median_cov_KB673446,mode_cov_KB673446,mean_cov_KB673457,median_cov_KB673457,mode_cov_KB673457,mean_cov_KB673468,median_cov_KB673468,mode_cov_KB673468,mean_cov_KB673479,median_cov_KB673479,mode_cov_KB673479,mean_cov_KB673490,median_cov_KB673490,mode_cov_KB673490,mean_cov_KB673501,median_cov_KB673501,mode_cov_KB673501,mean_cov_KB673512,median_cov_KB673512,mode_cov_KB673512,mean_cov_KB673523,median_cov_KB673523,mode_cov_KB673523,mean_cov_KB673534,median_cov_KB673534,mode_cov_KB673534,mean_cov_KB673535,median_cov_KB673535,mode_cov_KB673535,mean_cov_KB673546,median_cov_KB673546,mode_cov_KB673546,mean_cov_KB673557,median_cov_KB673557,mode_cov_KB673557,mean_cov_KB673568,median_cov_KB673568,mode_cov_KB673568,mean_cov_KB673579,median_cov_KB673579,mode_cov_KB673579,mean_cov_KB673590,median_cov_KB673590,mode_cov_KB673590,mean_cov_KB673601,median_cov_KB673601,mode_cov_KB673601,mean_cov_KB673612,median_cov_KB673612,mode_cov_KB673612,mean_cov_KB673623,median_cov_KB673623,mode_cov_KB673623,mean_cov_KB673634,median_cov_KB673634,mode_cov_KB673634,mean_cov_KB673645,median_cov_KB673645,mode_cov_KB673645,mean_cov_KB673646,median_cov_KB673646,mode_cov_KB673646,mean_cov_KB673657,median_cov_KB673657,mode_cov_KB673657,mean_cov_KB673668,median_cov_KB673668,mode_cov_KB673668,mean_cov_KB673679,median_cov_KB673679,mode_cov_KB673679,mean_cov_KB673690,median_cov_KB673690,mode_cov_KB673690,mean_cov_KB673701,median_cov_KB673701,mode_cov_KB673701,mean_cov_KB673712,median_cov_KB673712,mode_cov_KB673712,mean_cov_KB673723,median_cov_KB673723,mode_cov_KB673723,mean_cov_KB673734,median_cov_KB673734,mode_cov_KB673734,mean_cov_KB673745,median_cov_KB673745,mode_cov_KB673745,frac_gen_cov,divergence +0,VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,43.79,44,45,60.55,27,250,16.23,11,4,38.94,39,42,44.94,45,43,54.29,35,9,45.56,42,2,52.79,54,2,34.42,29,5,55.21,47,5,47.0,48,50,40.02,40,41,26.22,26,4,36.38,27,2,39.86,25,8,40.5,42,44,37.91,20,11,59.17,38,35,30.22,30,47,87.41,72,250,99.45,56,250,40.2,41,42,78.14,49,30,38.88,37,37,83.94,34,12,66.36,21,250,38.76,40,37,39.03,38,39,59.96,28,250,156.93,227,250,198.16,249,250,97.68,64,250,39.5,40,41,41.69,42,42,41.74,38,41,41.35,32,33,30.58,28,13,65.33,35,250,44.28,41,40,49.37,38,44,24.49,23,22,30.33,31,15,36.77,39,39,40.66,41,42,30.6,31,41,26.96,26,23,36.19,24,3,32.29,22,23,35.4,38,41,41.02,23,2,39.73,34,43,81.5,66,21,53.69,38,5,34.67,36,40,41.7,42,43,33.54,35,37,28.07,26,13,77.45,27,250,38.85,42,45,54.61,39,3,28.84,18,2,35.55,36,38,134.14,139,250,64.91,24,2,42.47,43,43,62.35,29,250,13.41,14,13,114.89,51,250,55.01,38,250,46.89,35,14,101.41,72,250,39.55,25,10,86.38,50,250,40.47,41,41,40.24,34,10,49.96,38,7,29.04,29,28,52.07,21,3,104.64,54,250,39.58,41,41,73.95,43,6,138.3,127,250,92.6,44,250,42.19,42,43,35.91,36,35,94.91,64,250,41.69,42,42,40.46,41,41,44.44,27,9,29.76,29,2,73.41,93,10,40.08,41,41,70.99,61,250,42.22,41,42,52.12,28,3,48.28,26,3,54.92,44,29,21.33,15,2,39.97,41,41,47.79,27,2,131.4,123,250,40.01,40,41,38.28,29,4,50.06,46,39,38.71,40,40,28.73,28,28,36.66,32,15,42.06,40,41,40.04,40,41,83.07,33,250,37.81,39,40,42.39,43,45,41.88,41,42,50.39,45,5,43.08,43,43,40.01,40,42,38.86,40,42,60.32,60,8,40.04,40,41,40.55,41,41,41.0,38,40,52.51,32,3,101.08,61,250,41.7,42,42,40.63,34,26,43.94,44,43,40.55,41,42,40.81,41,41,22.44,11,6,44.21,45,45,39.73,40,41,41.93,41,42,40.24,41,42,38.84,39,41,44.91,41,41,35.1,37,37,42.02,43,42,232.25,250,250,38.77,39,39,40.06,41,41,36.63,37,40,40.41,41,42,2.45,2,2,41.75,42,42,41.48,42,42,40.0,41,41,39.07,40,41,41.43,39,41,70.47,29,250,40.79,39,38,39.76,41,40,39.15,35,42,41.15,40,40,42.83,42,43,76.39,32,250,42.02,42,42,45.23,39,40,39.8,39,40,45.23,42,40,39.32,40,42,42.4,39,38,41.98,39,41,57.08,29,250,40.08,40,40,37.03,38,41,44.01,41,43,42.85,43,43,40.93,38,37,70.11,50,250,50.12,32,25,83.34,64,250,32.28,29,2,42.77,36,41,40.47,41,41,39.04,37,37,72.68,26,250,55.31,53,3,40.12,41,42,69.35,34,250,51.5,32,3,41.52,42,45,55.5,39,250,49.38,28,250,41.06,22,2,38.34,36,37,41.41,39,42,70.15,35,250,40.96,39,38,41.08,41,42,44.65,34,4,62.66,46,4,42.0,41,42,51.54,18,250,105.22,76,250,69.42,34,250,42.66,39,41,24.68,18,2,33.62,31,4,66.75,52,7,0.946,0.03433 +1,VBS46300-6321STDY9453300,52.17,53,53,53.0,54,54,55.48,56,56,75.61,40,250,27.9,21,2,48.46,50,51,58.59,56,50,67.28,41,250,101.45,69,250,52.44,39,5,41.34,33,15,84.55,66,15,57.66,59,62,50.13,51,52,32.54,33,5,44.01,33,2,50.52,41,2,51.84,54,55,44.1,25,250,79.53,48,250,37.46,31,25,110.62,91,250,118.04,80,250,50.65,52,54,122.63,88,250,46.91,46,49,91.77,74,2,67.97,39,250,48.13,49,47,45.75,47,48,77.52,36,250,160.03,223,250,127.56,131,131,101.74,72,250,49.78,51,53,54.64,54,51,51.32,49,53,48.8,41,44,37.18,35,12,77.18,45,250,42.32,41,49,56.41,47,47,30.18,30,36,38.52,39,55,45.84,50,51,50.56,51,53,39.03,39,41,34.74,34,24,40.26,32,32,48.64,34,2,44.22,48,51,42.33,22,2,49.0,43,51,109.61,82,250,66.17,54,3,42.26,44,50,52.61,54,54,43.24,46,47,33.99,32,29,74.41,35,250,50.92,53,51,103.89,99,6,44.47,29,4,44.69,46,45,141.24,171,250,75.33,30,250,53.68,54,56,75.21,35,250,6.37,4,2,115.58,71,250,60.85,44,250,41.06,25,19,101.74,71,250,52.25,32,9,91.08,43,250,50.72,51,53,42.43,29,24,75.23,58,2,34.28,33,31,61.49,32,250,116.94,77,250,49.66,51,53,68.06,37,3,131.88,137,250,103.57,50,250,53.15,54,54,44.3,45,47,115.65,79,250,52.56,53,54,50.65,51,53,55.69,24,2,34.59,38,2,139.03,184,250,50.47,51,52,91.42,79,250,53.06,52,53,54.54,32,2,59.11,36,2,110.93,95,250,29.28,16,3,50.36,52,53,57.87,32,24,129.38,76,250,50.54,51,52,45.42,34,4,61.98,55,42,48.82,50,51,46.88,45,18,44.56,41,33,52.15,51,50,49.46,50,52,79.16,39,250,47.39,49,52,82.82,56,47,52.26,52,52,50.27,45,39,54.34,55,55,50.36,51,52,49.82,51,51,92.16,105,6,50.28,51,51,51.0,51,53,50.28,48,49,58.91,34,13,119.93,103,250,52.12,52,53,51.06,46,4,55.19,56,58,50.19,51,52,51.0,51,52,30.93,16,10,56.05,56,56,49.91,51,52,51.76,51,52,50.49,51,52,49.52,49,51,55.79,52,54,44.73,48,48,53.72,55,54,227.09,250,250,48.17,49,50,50.25,52,54,45.5,47,51,51.22,52,54,4.23,4,2,52.44,52,53,52.35,53,53,50.43,51,53,48.65,50,50,51.75,50,52,85.26,41,250,52.02,50,52,49.92,51,52,47.06,43,49,50.34,50,50,49.83,51,52,81.73,43,250,52.88,53,54,54.08,48,52,50.04,50,49,56.56,53,55,48.65,50,50,51.85,50,49,50.3,49,48,66.83,34,250,50.51,51,53,46.15,49,51,52.94,51,50,54.02,54,54,50.9,49,50,92.23,75,250,58.63,40,2,91.35,76,250,48.03,43,4,51.05,45,49,50.84,51,50,48.7,47,49,84.9,37,250,76.67,85,3,50.6,52,53,73.6,38,250,68.06,41,2,52.49,52,53,68.0,51,2,54.88,34,250,48.54,26,3,47.54,45,48,53.87,49,48,87.34,48,250,51.48,50,52,51.67,53,53,66.04,54,2,79.52,59,250,52.38,52,54,61.88,36,250,115.86,104,250,62.48,37,250,54.35,49,49,34.01,25,6,40.94,40,4,87.3,66,4,0.946,0.03436 +2,VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,71.02,72,72,73.54,39,250,28.38,18,12,60.78,64,71,72.67,74,75,82.42,51,4,111.85,91,250,53.46,33,24,51.9,44,2,95.56,105,250,76.59,77,78,64.76,66,68,41.06,41,4,51.7,42,3,60.86,58,3,67.5,70,75,54.61,31,250,88.06,63,250,51.55,52,6,133.29,148,250,132.9,116,250,65.09,67,69,121.71,78,250,57.62,56,5,121.34,102,250,92.74,31,250,63.85,66,70,63.91,62,63,76.97,44,250,154.72,193,250,191.05,219,250,109.5,66,250,63.64,66,68,68.84,70,67,66.0,64,69,58.17,54,250,44.44,43,17,81.76,54,250,53.71,54,63,66.52,59,250,41.34,40,42,47.12,45,31,56.99,64,65,65.59,67,68,46.78,47,35,44.91,44,31,53.77,42,4,53.52,36,35,56.81,62,69,52.79,30,3,57.93,49,4,112.18,104,250,83.16,73,2,55.46,59,63,67.92,69,70,54.63,58,60,43.31,41,67,84.58,44,250,66.05,69,68,82.62,75,250,48.47,28,3,60.37,64,68,142.35,174,250,80.68,34,250,68.8,70,71,82.5,46,250,4.57,3,3,111.68,65,250,72.6,60,250,75.79,58,21,128.85,130,250,63.22,39,250,107.06,67,250,65.47,67,68,60.86,55,18,63.06,50,2,47.64,47,46,62.29,35,250,121.73,86,250,64.94,67,68,83.08,44,250,151.59,181,250,110.05,65,250,68.62,69,70,53.38,54,72,112.13,81,250,67.76,69,69,65.31,67,67,74.43,43,250,47.2,55,2,107.89,117,2,65.06,67,68,113.94,121,250,67.98,67,68,66.66,38,2,72.11,38,250,82.47,62,32,36.24,25,2,64.78,67,69,72.51,37,19,147.92,173,250,65.52,67,68,61.01,49,6,79.85,73,65,63.23,65,67,45.4,48,60,47.86,45,2,66.97,66,67,63.72,66,67,94.79,55,250,60.71,64,67,50.62,55,63,67.19,67,67,75.74,67,4,70.22,71,71,65.13,67,67,64.6,67,68,85.51,91,30,65.04,66,67,65.68,66,66,64.01,63,66,88.49,53,250,131.69,155,250,67.81,68,68,60.69,62,2,70.8,71,72,65.72,67,68,65.7,67,68,35.61,21,14,72.21,73,73,64.45,66,68,65.58,66,71,65.18,67,68,61.86,63,68,70.81,67,68,57.23,61,68,68.21,70,71,226.32,250,250,63.48,65,65,65.43,67,67,58.41,61,66,66.45,68,70,4.08,3,2,67.92,68,69,67.48,69,70,64.53,66,66,63.37,65,65,65.43,65,65,88.13,51,250,66.04,65,66,64.08,67,68,60.11,56,67,65.37,65,65,64.31,67,69,103.44,49,250,68.29,69,70,68.83,64,250,64.21,65,67,70.24,68,70,62.98,65,65,63.85,65,70,62.4,63,68,75.59,47,250,65.16,66,68,60.05,63,68,66.81,66,65,69.75,70,70,64.37,62,63,109.88,94,250,75.8,58,250,111.92,92,250,47.65,41,3,65.01,60,250,66.34,68,70,62.83,63,67,96.86,46,250,93.39,89,5,65.34,67,68,82.38,50,250,68.6,43,2,66.04,67,68,70.91,54,250,67.99,44,250,64.82,36,2,58.33,59,63,70.34,67,67,95.68,55,250,65.85,65,68,66.39,68,69,74.81,55,250,100.29,70,250,66.99,67,69,61.16,28,250,136.51,138,250,75.25,42,250,68.41,64,62,40.71,33,3,52.48,48,4,94.22,70,250,0.948,0.03442 +3,VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,66.29,67,66,76.23,39,250,27.97,21,10,58.09,60,60,69.48,69,73,68.46,47,2,79.75,55,2,59.53,41,23,49.67,39,3,95.15,94,250,71.28,72,68,59.33,61,61,37.78,38,4,48.06,39,3,54.06,41,3,62.73,65,68,48.81,30,6,79.52,52,250,45.08,41,3,120.06,107,250,128.8,108,250,59.84,61,63,111.5,82,250,55.31,53,54,108.91,74,250,78.26,34,250,57.83,60,61,67.75,56,56,78.55,42,250,168.15,249,250,181.46,196,250,112.61,70,250,59.05,61,63,66.13,67,66,55.38,54,59,55.34,50,55,44.01,41,9,75.47,49,250,47.25,46,50,63.37,54,250,39.25,39,32,44.41,45,67,53.01,57,61,60.06,61,63,45.52,46,32,41.05,40,32,48.25,37,20,46.37,32,32,53.6,59,65,52.7,28,2,58.06,48,4,113.67,93,250,73.77,58,3,49.11,51,60,62.59,64,64,50.28,54,57,41.16,39,24,82.03,40,250,59.76,62,66,63.85,44,250,44.95,22,8,52.82,55,57,151.04,234,250,80.43,35,250,64.0,65,67,78.3,46,250,7.88,3,2,123.41,69,250,82.37,59,250,69.36,50,23,114.72,120,250,59.16,39,250,92.34,44,250,60.0,61,62,58.52,54,59,88.15,78,5,43.18,43,47,63.96,35,250,133.95,121,250,59.93,62,62,93.5,60,250,149.35,176,250,107.32,60,250,63.12,64,65,49.56,52,58,110.53,85,250,62.5,63,64,60.06,61,62,74.06,44,250,54.73,50,51,128.92,174,250,59.48,61,61,111.51,114,250,62.93,62,62,57.16,36,2,71.23,46,4,84.9,55,250,41.46,32,3,59.77,61,63,61.27,30,16,142.06,171,250,59.32,60,61,53.27,49,20,73.52,65,54,58.08,59,60,72.33,78,29,45.84,47,53,61.34,60,60,58.51,60,63,88.64,41,250,55.48,58,61,83.63,55,47,61.15,61,61,67.9,55,27,64.97,65,65,59.6,61,62,59.44,61,63,83.85,86,27,59.16,60,62,59.4,60,60,58.75,57,59,87.05,56,6,135.19,154,250,62.58,63,64,63.51,57,58,66.34,67,67,59.35,61,63,59.64,60,62,33.07,14,14,66.92,67,65,59.1,61,62,61.66,61,62,59.62,61,61,57.15,58,60,63.05,61,63,52.26,56,57,63.81,65,65,224.74,250,250,57.14,58,59,60.28,62,62,54.19,56,61,60.29,61,62,5.31,4,3,62.11,62,60,62.21,63,64,59.13,60,61,57.52,59,62,59.02,58,59,89.76,49,250,60.47,59,59,58.21,60,61,57.98,53,59,58.65,58,61,59.2,61,61,93.09,45,250,63.07,64,64,63.99,58,60,58.85,59,61,64.87,63,63,58.13,60,59,62.58,58,57,58.73,57,57,68.58,38,250,58.14,59,60,54.39,58,62,61.31,61,61,64.26,65,65,58.09,57,58,97.23,76,250,67.72,52,250,101.61,75,250,43.39,37,2,61.17,55,250,61.97,63,60,57.34,56,60,83.01,35,250,116.87,135,250,60.11,62,63,81.43,47,250,63.84,48,2,60.7,62,61,73.92,54,250,58.98,37,250,70.78,53,250,53.44,53,57,61.14,58,58,87.87,53,250,61.1,59,58,61.13,62,63,82.47,67,2,98.72,70,250,61.97,63,67,68.69,49,250,130.84,125,250,82.41,39,250,64.13,60,62,60.15,44,2,43.93,41,6,88.46,70,250,0.947,0.03441 +4,VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,46.41,47,47,66.42,29,250,21.5,15,3,42.14,43,45,49.5,49,48,50.85,34,2,103.98,58,250,39.9,31,8,35.31,31,2,79.6,79,14,49.03,50,54,42.54,43,44,26.17,25,20,41.08,32,4,30.13,22,3,43.9,45,49,39.44,21,15,68.3,42,250,32.86,30,19,91.85,73,250,106.34,72,250,42.71,44,44,93.23,51,250,41.04,42,45,103.59,62,250,64.92,24,250,42.07,43,43,41.43,40,41,68.04,30,250,87.1,99,45,185.44,235,250,95.32,54,250,42.13,43,44,45.3,46,45,44.4,41,45,44.87,36,37,39.6,36,10,74.21,38,250,37.06,34,35,52.07,41,44,25.57,26,31,32.1,30,18,37.03,39,43,43.37,44,45,31.69,33,40,29.3,28,22,34.54,29,5,39.43,24,15,36.72,40,41,29.51,21,2,41.43,35,44,105.06,85,250,55.27,41,5,36.84,38,39,44.36,45,45,37.24,40,46,28.17,27,19,74.16,27,250,39.82,43,47,101.43,86,250,36.78,21,2,40.91,43,45,141.85,191,250,61.77,18,6,44.99,46,46,68.52,31,250,7.99,4,2,107.13,68,250,54.58,39,250,55.25,29,20,98.25,77,250,42.92,27,36,82.72,55,250,43.18,44,44,47.22,45,45,67.08,55,2,30.88,30,27,52.68,25,4,107.7,62,250,42.52,44,45,63.53,30,9,151.21,161,250,98.73,47,250,44.89,45,46,35.44,36,41,88.09,61,250,44.25,45,45,43.0,43,44,47.51,29,23,33.45,37,2,105.86,126,3,42.87,43,44,78.48,74,250,45.46,44,44,46.0,24,2,46.78,28,4,64.59,60,48,20.29,14,6,42.63,43,44,44.24,23,15,91.96,96,2,43.25,44,44,78.08,43,250,54.12,49,40,41.61,42,43,22.71,23,23,32.01,32,37,45.21,43,44,42.32,43,44,83.43,33,250,39.85,41,43,53.2,46,2,44.62,44,44,47.78,42,17,45.88,46,46,43.54,44,44,42.03,43,43,85.61,96,6,42.69,43,44,43.47,44,44,43.56,41,42,71.54,35,6,112.9,72,250,44.46,44,44,39.56,40,45,46.53,46,47,43.2,44,44,43.29,44,44,34.9,25,3,47.05,47,48,42.03,43,44,44.53,43,44,43.13,44,44,42.03,42,42,47.73,44,44,38.84,41,44,44.75,46,47,229.83,250,250,41.64,43,44,42.38,43,46,37.02,38,43,43.55,44,44,3.3,3,2,44.58,45,45,44.14,45,45,43.1,44,45,42.16,43,42,44.87,43,43,80.52,43,250,44.07,43,45,42.64,44,46,41.85,37,41,43.66,43,42,41.83,43,45,81.71,40,250,44.63,45,45,48.52,42,43,43.39,44,46,48.22,44,43,42.56,43,44,43.86,42,43,46.83,43,42,69.97,34,250,43.2,44,46,40.49,42,45,45.95,43,44,45.51,46,46,44.14,42,43,74.34,52,250,52.81,36,31,74.73,62,250,40.37,31,3,46.13,38,44,44.44,46,50,41.34,40,40,84.39,42,250,61.76,66,73,42.81,44,45,66.01,32,250,47.25,30,2,43.96,44,48,51.44,35,4,48.07,28,250,53.64,39,3,42.36,40,47,46.31,43,44,77.5,40,250,44.31,43,45,43.64,44,45,61.32,38,3,65.4,46,11,45.48,45,45,67.83,23,250,103.02,82,250,54.57,34,3,46.5,44,44,32.37,25,6,35.41,32,8,62.61,51,6,0.947,0.03424 +5,VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,66.94,67,67,79.63,40,250,26.99,21,7,58.06,59,62,71.97,71,71,75.27,55,250,115.12,97,250,73.85,68,250,47.24,38,6,95.45,97,250,74.23,75,79,60.16,61,62,42.97,42,3,52.94,45,9,63.2,31,25,61.93,65,67,46.23,29,5,86.5,57,250,64.12,53,2,124.93,117,250,125.3,72,250,60.8,62,64,119.09,83,250,64.14,56,3,111.9,73,250,93.48,33,250,58.33,60,63,68.1,57,250,79.27,45,250,167.63,249,250,222.33,250,250,109.33,67,250,60.0,62,62,66.09,66,67,61.58,56,58,57.22,50,250,52.81,47,43,84.18,57,250,50.68,49,50,65.35,57,250,37.02,37,38,44.46,43,29,53.41,57,60,61.28,62,64,45.39,47,56,42.44,42,30,53.84,43,13,56.44,37,250,51.64,56,65,62.34,30,3,62.76,52,58,130.3,102,250,81.82,70,250,49.77,53,62,63.38,64,64,52.13,55,59,40.34,39,39,84.92,41,250,59.06,62,66,105.89,90,250,56.37,34,31,56.09,57,56,146.38,193,250,83.34,35,250,64.82,65,65,81.82,48,250,5.91,4,3,128.26,85,250,70.11,52,250,64.3,47,41,131.64,127,250,69.82,38,250,111.7,74,250,60.78,61,62,45.52,31,25,81.26,61,250,41.68,42,37,75.82,41,250,141.93,135,250,60.07,62,62,90.01,72,250,131.24,150,250,104.39,61,250,63.72,64,64,57.31,57,56,114.96,92,250,63.19,64,65,60.99,61,63,83.08,44,250,54.55,52,2,112.64,128,9,60.67,62,63,115.6,101,250,63.07,62,62,70.07,44,4,75.08,46,250,116.31,97,250,52.49,33,2,60.72,62,64,92.76,56,250,140.01,122,250,60.45,61,62,77.65,51,29,76.08,69,62,58.57,60,61,50.99,52,81,64.33,59,36,63.02,61,62,60.31,61,61,93.56,52,250,56.84,59,61,48.67,50,49,62.53,62,63,72.55,53,250,65.51,66,66,60.38,61,63,59.02,61,61,131.64,144,250,60.7,61,61,60.73,61,62,60.03,58,58,94.67,47,250,117.55,65,250,62.85,63,63,62.34,53,3,67.03,67,67,60.49,61,62,61.05,61,62,47.01,28,2,67.54,68,67,59.98,61,63,62.52,62,62,60.52,61,62,58.63,58,59,64.95,61,62,56.58,55,60,64.07,65,64,230.34,250,250,58.3,59,59,60.35,62,64,54.74,56,60,61.52,62,61,5.35,5,2,63.18,63,63,63.0,64,65,60.24,61,62,57.66,59,62,61.19,59,60,93.71,54,250,62.31,60,63,58.87,60,60,59.12,54,64,59.53,60,59,59.5,62,62,107.19,53,250,63.63,64,65,64.34,58,63,62.42,61,63,67.16,63,64,60.9,62,65,65.0,59,61,64.14,59,59,83.67,51,250,59.39,60,60,55.53,58,62,62.46,60,61,65.02,65,65,59.07,57,59,111.53,91,250,72.73,50,250,101.11,77,250,50.75,44,9,65.06,55,250,63.94,65,68,59.86,56,56,118.04,64,250,95.8,88,250,60.92,62,64,88.96,52,250,66.77,43,250,65.61,63,65,85.09,61,250,68.17,44,250,78.11,58,2,57.28,53,60,65.41,60,61,103.21,62,250,60.84,58,57,61.96,63,63,79.73,55,250,88.15,67,250,62.7,63,64,72.07,46,250,140.52,138,250,84.57,44,250,66.28,62,66,49.52,46,27,56.32,51,52,95.21,83,4,0.948,0.03448 +6,VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,71.5,72,71,60.43,42,250,27.14,22,3,59.42,62,66,74.83,76,84,74.68,50,250,50.94,49,3,66.4,51,12,53.34,47,2,97.93,106,250,78.77,78,78,62.61,64,65,40.13,41,2,52.34,42,2,43.67,31,2,66.59,69,71,65.31,31,250,84.42,58,250,45.71,47,30,122.54,125,250,129.02,90,250,63.45,65,67,117.51,87,250,58.91,58,65,127.47,124,250,78.41,30,250,60.6,62,61,58.05,57,54,79.83,42,250,160.73,216,250,214.67,249,250,107.41,74,250,62.3,64,66,68.81,68,66,61.56,59,61,56.44,50,250,43.23,41,6,82.78,58,250,48.59,47,54,64.59,56,250,38.96,38,17,47.0,46,30,56.32,61,65,63.77,65,66,49.07,50,51,43.61,42,28,51.56,41,6,58.33,42,33,54.89,60,63,66.77,34,7,59.58,54,66,132.36,127,250,73.53,62,250,51.2,52,63,67.03,68,69,50.99,55,55,43.44,41,32,85.78,44,250,66.92,70,70,58.53,54,2,48.79,27,8,54.48,58,60,141.48,168,250,86.66,31,250,68.3,69,70,73.93,41,250,5.7,5,2,119.45,70,250,70.67,55,250,68.48,50,22,118.04,109,250,62.61,36,2,105.5,76,250,62.92,64,64,58.15,54,58,87.83,62,2,47.75,46,41,68.78,35,250,126.09,90,250,63.5,65,67,101.37,67,250,169.75,193,250,113.7,71,250,67.06,68,68,55.31,57,60,119.24,78,250,66.65,68,67,63.09,64,66,76.12,43,250,42.59,47,4,124.81,153,3,62.29,64,66,92.72,79,250,65.07,65,66,46.73,28,2,81.09,48,3,82.59,70,50,35.89,18,2,63.35,65,65,66.94,42,11,134.4,134,250,62.08,63,64,67.1,40,4,75.7,67,54,61.07,62,65,92.11,91,22,52.1,52,52,64.44,63,64,61.45,63,64,98.32,53,250,58.51,61,63,83.78,68,69,65.21,65,66,67.82,61,4,69.32,70,69,62.29,63,66,62.51,64,66,107.65,114,27,62.22,63,65,61.71,62,63,60.86,59,60,77.89,39,250,122.77,131,250,66.41,67,66,51.3,39,31,71.12,71,73,63.32,65,64,61.84,63,64,36.36,19,6,71.89,72,69,62.55,64,66,64.71,64,66,62.87,64,64,58.99,59,60,67.95,64,64,58.57,59,67,67.81,69,69,229.48,250,250,58.74,60,62,63.74,65,65,56.18,58,60,64.13,65,66,3.32,3,4,65.67,65,65,66.17,67,68,61.36,63,64,60.4,61,61,61.35,60,61,101.0,60,250,62.05,61,64,60.65,63,64,58.22,54,65,60.71,60,62,62.21,64,66,93.54,63,250,66.84,68,68,66.47,61,250,63.23,64,64,68.11,66,67,61.31,63,64,63.03,61,62,61.42,60,61,77.53,48,250,60.2,61,59,56.79,60,67,64.27,63,61,68.69,69,69,60.92,60,61,106.46,84,250,71.55,52,250,100.6,89,250,46.75,43,3,62.76,56,250,68.03,71,74,59.64,59,63,98.79,52,250,85.07,78,91,63.81,66,67,84.58,50,250,71.11,46,250,64.92,65,67,73.03,58,250,67.01,42,250,53.91,32,2,54.94,54,58,64.7,60,58,95.92,59,250,59.02,58,59,64.76,66,67,68.93,52,250,104.32,85,250,65.26,65,64,62.1,36,250,131.8,135,250,78.48,46,250,60.55,59,69,31.93,25,4,51.39,47,4,83.57,65,2,0.947,0.03441 +7,VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,59.29,59,59,69.36,30,250,22.03,17,6,52.93,53,55,62.22,62,57,70.71,43,250,35.91,38,3,74.99,60,8,43.41,36,3,80.78,72,250,66.33,67,66,52.42,53,55,35.62,38,2,46.37,36,3,47.67,29,9,54.7,57,58,49.94,30,250,72.85,46,250,44.71,41,2,103.47,98,250,116.18,64,250,52.92,54,55,117.67,83,250,48.18,46,50,120.93,72,250,96.83,38,250,51.57,53,53,49.05,49,50,74.39,34,250,158.75,217,250,201.14,249,250,100.57,52,250,52.25,54,55,57.46,57,58,50.58,48,49,50.07,43,52,40.03,38,6,74.47,45,250,42.12,40,44,57.37,48,50,32.21,31,32,40.54,39,20,44.48,48,51,53.13,54,54,40.41,42,51,34.89,34,26,43.97,32,11,44.24,26,28,47.35,52,54,48.07,26,3,50.68,42,8,131.16,122,250,79.87,72,250,44.54,47,55,55.63,57,56,43.85,47,53,34.03,33,46,79.59,36,250,52.38,57,59,91.22,64,250,41.76,28,23,47.6,49,52,131.16,123,250,76.91,33,250,56.65,57,58,76.22,38,250,13.7,14,4,114.63,109,250,67.17,50,250,58.51,33,14,104.48,82,250,51.89,33,6,104.68,63,250,52.71,53,54,40.9,31,21,82.32,70,4,38.16,37,32,60.45,27,13,121.1,90,250,52.92,54,55,82.77,43,250,146.94,155,250,116.84,74,250,55.61,56,56,45.66,49,56,99.79,81,250,55.26,56,57,53.06,54,55,70.55,39,250,38.8,41,3,137.07,181,250,52.53,54,55,109.72,117,250,55.22,54,55,52.76,20,2,58.7,41,14,77.55,62,29,35.42,30,2,52.71,54,55,64.07,33,21,153.64,206,250,52.49,53,54,67.96,45,6,65.85,61,54,50.77,52,53,78.82,86,102,46.34,44,45,54.9,53,54,51.93,53,54,93.1,50,250,49.03,51,55,98.0,56,49,54.7,54,56,62.58,54,2,57.67,58,58,52.62,53,54,52.02,53,55,110.92,126,250,52.75,53,54,51.24,52,52,51.46,50,52,83.39,42,250,115.55,104,250,54.59,55,55,55.89,48,2,59.02,59,59,53.38,54,56,52.07,53,55,31.94,17,14,60.15,60,59,52.19,54,55,55.24,54,53,53.44,54,56,50.88,51,53,59.13,54,54,42.55,48,50,57.1,58,59,230.65,250,250,49.36,50,50,52.75,54,56,47.56,49,51,53.93,55,55,5.16,5,6,55.0,55,55,54.9,56,57,51.76,53,53,50.88,52,51,52.61,51,51,91.55,60,250,53.48,52,52,51.07,53,54,49.22,44,50,51.99,51,52,52.12,54,53,103.04,47,250,55.56,56,56,57.19,51,55,52.99,54,56,56.0,56,58,51.47,52,53,54.61,50,50,54.52,51,50,77.6,44,250,51.48,52,53,48.18,50,54,54.34,52,53,57.05,57,58,51.32,49,49,98.81,78,250,65.85,46,250,102.68,81,250,41.5,37,2,55.95,48,53,58.18,60,64,49.62,49,47,98.41,61,250,81.96,88,90,53.0,54,55,76.95,40,250,63.95,40,250,55.43,55,56,61.99,46,3,60.22,37,250,60.4,36,2,47.4,47,52,54.03,51,52,81.59,48,250,52.65,50,51,54.06,55,56,55.63,47,7,88.66,69,250,54.29,54,55,78.6,55,250,107.76,95,250,77.16,51,250,53.72,50,48,20.73,19,4,42.64,40,48,68.22,59,3,0.946,0.03434 +8,VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,51.58,52,51,63.28,25,250,21.94,15,3,44.29,44,46,54.87,55,56,55.33,36,4,58.62,52,5,46.75,31,14,40.38,33,2,63.31,54,8,57.57,58,59,45.18,46,46,30.53,32,3,39.55,30,5,31.5,25,4,47.09,48,48,38.42,21,250,69.59,41,250,40.32,35,28,103.91,90,250,103.98,64,250,46.13,47,48,98.72,52,250,41.45,40,41,79.84,41,2,68.6,23,250,43.37,45,46,54.93,42,40,68.48,30,250,145.07,186,250,100.49,86,84,86.4,42,250,45.02,46,47,50.56,51,52,44.66,41,43,45.07,37,40,33.15,25,2,62.56,34,250,37.25,35,38,51.82,41,40,27.46,27,29,32.4,31,14,39.0,42,45,45.92,47,48,34.01,36,37,32.43,31,25,30.9,25,22,34.62,22,19,40.16,43,44,36.92,23,2,43.31,35,49,94.0,77,24,59.33,45,250,37.04,38,41,48.09,49,49,38.53,40,39,28.76,27,16,74.69,28,250,46.61,48,53,77.64,55,7,34.88,26,2,40.44,42,42,138.09,133,250,57.45,22,3,49.36,50,50,69.23,34,250,13.15,14,2,89.76,60,250,56.5,41,250,38.09,26,9,94.27,84,250,45.74,27,2,87.31,37,250,45.62,46,47,38.96,22,17,64.95,52,2,34.33,34,33,51.66,24,3,116.86,119,250,45.58,47,48,69.44,40,2,118.65,121,21,100.61,53,250,48.37,49,49,38.3,39,45,88.68,63,250,47.96,48,49,45.55,46,47,58.12,30,28,34.61,36,43,117.1,141,6,45.26,46,46,79.35,74,250,47.59,47,47,44.9,26,4,45.21,28,5,84.8,63,250,33.05,29,2,45.49,46,47,48.58,35,3,97.85,85,24,45.0,45,46,57.18,41,9,56.31,51,45,43.88,44,46,26.96,27,18,29.47,31,34,47.08,45,45,44.57,45,46,83.84,31,250,42.34,44,45,36.04,37,35,47.05,46,48,44.65,39,2,49.81,50,49,45.27,46,46,45.23,46,47,65.98,65,22,45.09,45,45,44.4,45,44,45.15,43,43,51.31,20,8,127.74,134,250,47.49,48,49,42.65,37,2,51.63,51,52,45.46,46,47,45.37,45,45,25.98,15,3,51.7,52,52,45.08,46,48,48.81,46,46,45.38,46,48,43.74,43,45,49.76,45,45,39.77,42,47,49.75,50,52,230.2,250,250,42.47,43,43,46.09,47,47,40.61,41,43,46.63,47,47,5.13,4,4,47.25,47,47,47.73,48,49,44.48,45,48,43.28,44,45,45.87,44,44,73.95,35,250,45.93,44,44,43.53,45,45,41.45,38,47,44.02,44,43,45.25,47,47,83.47,36,250,48.26,49,49,49.68,43,47,46.48,45,45,50.65,48,48,45.18,46,46,46.87,42,44,45.25,43,47,63.68,32,250,43.89,44,43,40.32,42,42,48.66,46,46,49.42,50,49,45.84,44,42,76.6,61,250,52.43,36,36,78.34,54,250,30.33,27,4,46.87,39,45,49.23,49,46,43.13,41,41,84.52,40,250,55.56,51,50,45.89,47,47,71.14,36,250,56.12,35,4,46.46,46,45,52.77,38,3,51.4,28,250,55.23,43,4,40.99,38,38,46.54,43,46,82.38,39,250,44.56,42,43,46.83,48,48,47.02,39,2,71.31,50,3,46.64,46,43,57.2,30,250,101.56,79,250,61.6,34,3,46.65,43,45,31.1,27,3,35.15,32,3,67.06,57,7,0.947,0.03415 +9,VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,65.06,65,65,73.45,41,250,24.55,16,3,55.53,58,61,65.99,67,68,64.8,43,250,79.95,44,3,69.82,57,3,47.67,40,10,94.2,90,250,69.96,70,64,57.55,59,59,35.28,36,3,47.54,34,2,51.53,30,5,61.93,64,67,48.23,28,2,73.24,54,250,40.43,38,3,115.01,108,250,127.92,101,250,58.21,60,61,102.08,59,250,53.01,53,2,104.8,49,250,80.65,34,250,56.45,58,58,62.69,54,55,75.84,37,250,165.24,246,250,215.02,249,250,109.94,75,250,57.13,59,60,62.3,63,65,56.28,54,59,55.54,49,51,57.81,41,250,81.24,53,250,46.5,45,50,62.08,54,250,34.72,33,32,42.29,40,33,49.8,54,55,58.48,59,60,43.21,43,27,40.77,41,29,46.52,38,4,45.67,31,25,51.58,56,62,43.33,24,2,53.93,47,4,124.74,114,250,70.79,53,250,49.03,51,62,61.22,62,63,48.47,52,56,39.17,38,23,80.18,34,250,56.14,60,60,111.6,100,250,42.01,25,26,51.27,53,53,146.36,210,250,76.49,29,250,62.41,63,65,73.08,37,250,6.38,5,2,109.95,79,250,69.83,54,250,63.33,41,9,102.81,76,250,51.81,33,3,98.03,57,250,58.35,59,60,44.21,28,19,68.3,45,12,41.48,40,34,58.12,29,2,122.62,85,250,58.44,60,61,78.21,48,250,139.26,151,250,111.3,73,250,61.48,62,62,49.04,52,59,102.98,76,250,60.85,62,62,57.94,59,60,70.33,41,250,44.6,46,3,137.52,167,250,57.66,59,60,97.64,93,250,60.51,60,60,60.3,43,4,63.31,32,6,99.82,87,250,39.92,30,6,57.86,59,61,58.32,32,27,137.55,149,250,57.49,58,60,62.35,40,29,70.25,63,54,56.14,57,60,43.34,33,20,44.04,47,55,59.51,58,59,56.63,58,58,91.92,47,250,54.1,57,60,79.83,86,6,59.79,59,60,62.98,51,22,63.53,64,63,57.88,59,59,57.15,59,59,124.56,132,250,57.58,58,59,57.01,58,59,57.09,56,58,75.22,38,6,107.53,80,2,60.73,61,62,59.25,55,3,64.64,65,66,57.8,59,60,57.86,58,59,33.89,19,10,65.46,66,65,57.36,59,60,60.48,59,61,58.15,59,60,55.18,56,58,63.67,59,60,52.63,55,58,61.36,62,63,221.8,250,250,54.67,56,57,57.98,59,59,51.95,54,57,58.87,59,61,5.0,4,2,60.07,60,61,60.56,62,62,57.05,58,58,55.38,56,58,58.68,57,58,91.29,57,250,58.09,57,60,57.02,59,61,53.13,50,56,56.84,57,56,56.77,59,59,89.43,48,250,61.3,62,62,60.24,55,57,57.33,58,60,63.98,62,64,56.74,59,57,58.64,55,54,57.9,55,57,71.5,41,250,56.36,57,58,52.25,55,59,61.11,59,59,62.82,63,63,57.09,56,57,98.81,84,250,71.19,50,250,92.49,63,250,43.79,39,2,59.42,53,59,61.24,64,65,55.21,55,56,100.47,44,250,61.45,58,3,58.45,60,61,79.27,42,250,58.6,40,2,59.15,60,65,66.26,48,2,60.18,37,250,59.27,33,28,53.55,53,59,60.89,58,57,93.47,54,250,56.82,55,54,59.52,61,62,66.27,47,2,76.03,61,250,60.17,60,60,69.59,30,250,133.62,134,250,63.04,40,250,48.99,49,57,31.46,27,3,47.89,45,59,101.38,76,250,0.947,0.03438 +10,VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,59.12,60,60,65.99,33,250,27.44,23,6,52.68,54,57,60.05,59,59,69.2,43,250,88.26,59,5,67.49,52,34,49.04,43,19,91.79,83,250,62.9,64,68,54.51,56,57,32.79,34,4,41.52,32,3,47.63,33,10,56.64,58,58,56.75,24,5,77.65,52,250,38.9,38,31,101.21,83,250,126.09,101,250,54.61,56,57,111.11,73,250,54.94,51,54,87.18,42,8,89.93,34,250,52.06,53,53,63.36,54,56,75.22,39,250,129.82,143,60,97.84,98,95,103.75,64,250,54.22,56,57,56.72,57,57,53.07,50,55,51.35,44,45,50.39,43,3,78.23,48,250,48.07,47,50,61.58,51,250,34.44,33,31,41.37,40,30,48.36,53,55,55.03,56,57,39.76,40,49,39.7,39,32,45.52,36,5,51.28,30,28,48.29,53,54,46.95,25,3,55.79,43,52,132.51,129,250,69.27,49,250,45.75,47,50,56.98,58,59,47.55,51,54,37.74,36,29,78.77,36,250,56.23,59,63,70.37,51,11,44.83,27,18,50.6,53,56,140.26,191,250,70.59,18,5,57.6,59,59,75.51,38,250,7.08,5,3,113.56,52,250,73.35,55,250,59.43,24,7,114.89,106,250,52.49,31,7,90.18,58,250,55.13,56,57,53.37,40,250,90.94,85,7,38.27,38,49,64.21,31,250,126.7,88,250,54.65,56,57,86.96,55,250,163.96,177,250,104.83,58,250,57.44,58,58,46.66,46,42,107.35,83,250,56.96,58,58,54.99,56,56,73.31,40,250,50.72,53,3,131.38,159,250,54.62,55,57,103.31,98,250,57.22,56,58,61.39,38,4,66.87,41,6,118.53,107,250,37.86,29,2,54.6,56,57,63.45,31,16,141.06,169,250,54.55,55,55,64.72,49,19,66.83,60,53,52.93,54,56,34.73,37,41,45.6,48,50,56.76,55,56,54.15,55,57,90.16,43,250,51.51,54,56,57.42,52,37,56.41,56,56,68.91,53,2,58.55,59,59,54.63,56,56,53.9,55,57,109.66,117,32,54.41,55,55,55.32,55,55,54.63,53,54,87.52,48,250,127.7,104,250,57.04,57,58,52.91,51,5,58.85,59,59,55.44,56,57,55.51,56,55,36.56,22,8,59.18,60,61,54.33,56,57,57.35,57,59,54.89,56,56,52.67,53,55,61.32,56,57,47.73,50,50,56.76,58,59,224.15,250,250,52.86,54,55,54.56,56,58,49.78,51,54,54.93,56,57,5.64,5,3,56.9,57,57,56.72,58,58,54.32,55,56,53.43,54,55,55.44,54,54,87.34,52,250,56.36,55,57,54.08,56,55,51.3,48,54,54.27,54,55,54.6,56,60,102.36,49,250,57.1,58,58,59.1,54,57,56.01,55,55,61.35,59,59,54.6,55,54,53.76,53,58,54.74,53,55,73.42,45,250,54.17,55,55,50.44,53,55,57.7,55,56,58.27,59,59,54.0,52,53,94.42,73,250,70.33,50,250,102.26,72,250,45.97,39,3,58.74,50,250,53.82,55,57,52.91,51,51,108.38,74,250,72.49,64,40,55.02,56,57,74.3,41,250,69.35,40,250,56.08,54,57,66.1,45,250,59.68,36,250,62.66,33,30,50.39,49,53,58.31,54,54,93.48,57,250,54.77,52,50,55.67,57,58,68.32,55,4,87.94,65,250,56.85,56,56,77.96,54,250,126.62,118,250,72.39,45,250,63.26,55,58,29.23,26,2,45.14,42,54,79.02,64,5,0.949,0.03429 +11,VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.5,64,65,76.37,39,250,34.98,30,22,63.59,65,69,68.18,65,66,79.36,54,250,87.1,41,250,98.06,85,250,55.03,49,7,96.08,88,250,64.09,66,67,62.85,64,65,42.06,41,2,49.68,35,2,40.76,27,3,65.92,69,73,55.4,32,14,91.78,70,250,45.15,41,3,131.78,128,250,135.58,89,250,61.74,63,63,118.27,82,250,65.4,66,75,114.14,49,250,91.05,34,250,62.67,64,62,79.46,68,250,84.08,48,250,171.29,249,250,223.15,250,250,121.53,82,250,61.87,63,64,60.21,61,61,66.92,67,70,62.96,58,250,51.9,49,10,94.99,61,250,59.27,61,69,70.19,64,250,36.54,35,33,43.04,43,55,58.69,65,69,62.82,63,64,43.75,44,33,45.05,45,64,56.82,47,5,52.78,35,250,51.84,56,56,51.28,30,2,62.52,52,250,138.31,149,250,77.93,59,249,50.71,55,63,63.34,64,65,61.21,65,74,42.95,43,21,84.1,42,250,58.04,61,67,93.76,73,250,53.62,29,2,62.47,66,65,142.72,187,250,79.5,29,2,62.51,63,64,82.24,49,250,9.56,7,5,124.02,96,250,84.86,70,250,82.06,57,250,122.79,124,250,65.28,46,250,87.36,61,250,63.55,64,65,45.61,34,35,121.74,103,250,42.7,40,31,68.77,40,250,129.99,98,250,61.72,63,64,81.83,53,250,196.49,249,250,106.82,62,250,63.92,64,64,57.15,58,60,120.85,87,250,63.43,64,65,62.74,63,64,84.84,56,250,55.37,57,67,138.86,181,250,63.94,65,66,106.36,100,250,65.99,65,66,87.41,55,250,60.0,37,5,112.34,107,250,41.31,27,6,62.43,64,63,67.65,39,12,142.35,177,250,65.18,66,67,99.62,62,250,79.4,74,64,61.43,63,64,77.06,84,107,54.8,52,58,66.65,65,65,62.12,63,62,93.37,51,250,59.47,62,65,66.22,67,69,66.52,66,66,88.58,72,3,64.99,65,65,64.23,65,66,61.43,62,62,121.18,123,250,63.85,64,64,67.62,68,69,63.88,63,66,84.46,33,250,110.76,73,250,63.59,63,64,69.55,63,250,64.04,64,65,64.15,65,66,66.46,67,68,56.17,38,2,63.41,64,63,61.5,63,63,66.25,64,65,64.53,66,66,62.34,62,65,68.89,65,65,64.61,68,71,64.21,65,63,228.38,250,250,65.38,66,69,62.54,64,63,58.26,60,64,62.88,64,64,5.76,4,2,66.57,67,68,63.23,64,64,65.91,67,66,65.07,66,66,67.27,66,68,99.28,66,250,66.47,66,67,64.55,67,70,60.49,55,68,68.41,68,67,62.27,64,65,96.89,58,250,64.14,64,64,68.04,61,250,65.02,64,63,68.19,66,67,66.19,66,67,69.23,69,74,67.68,67,68,91.24,54,250,67.02,68,71,61.89,66,69,66.84,65,69,64.61,65,65,64.75,64,62,110.27,94,250,87.17,63,250,113.7,95,250,55.57,43,2,62.71,56,250,56.76,59,58,62.59,62,66,89.36,48,250,71.33,48,37,61.98,63,64,85.98,52,250,69.81,52,250,64.93,64,66,86.03,64,250,69.8,46,250,71.63,58,3,61.35,61,58,71.9,68,65,101.1,69,250,70.72,69,69,62.67,63,64,78.94,60,250,104.45,80,250,67.37,68,69,69.04,30,250,130.69,117,250,76.12,43,250,79.98,67,61,47.79,41,3,60.37,56,68,95.33,83,250,0.948,0.03447 +12,VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,67.23,67,67,70.04,35,250,28.87,25,30,56.5,59,62,72.27,72,73,73.36,47,250,50.72,40,5,60.12,42,30,47.81,39,3,113.13,102,250,77.16,77,70,57.98,59,60,38.16,42,2,53.07,43,2,50.7,31,9,62.56,65,65,58.01,28,8,81.12,50,250,45.99,41,2,127.56,135,250,114.77,73,250,58.96,60,61,121.53,85,250,54.71,57,63,79.61,78,2,86.99,30,250,56.38,58,58,55.6,53,54,75.32,33,250,167.07,249,250,203.06,250,250,115.32,88,250,57.94,60,61,66.59,65,64,56.43,55,60,54.37,48,55,70.88,53,9,86.86,57,250,43.98,42,49,63.15,54,56,36.82,36,35,43.46,44,60,51.34,56,59,59.18,60,61,45.48,46,51,40.55,40,35,49.72,38,7,48.82,29,13,51.82,57,61,53.94,29,6,54.89,43,7,118.95,113,250,78.39,65,250,49.44,52,62,62.22,63,63,48.32,51,49,37.66,36,22,81.99,40,250,62.18,66,69,77.13,69,8,40.69,22,3,51.53,53,60,133.56,95,250,85.69,42,250,63.99,65,65,80.63,42,250,4.06,4,4,119.54,63,250,69.55,52,250,62.47,37,26,121.29,103,250,58.57,33,250,110.14,67,250,58.3,59,60,49.28,34,26,54.01,40,7,42.96,43,36,66.25,33,250,127.12,103,250,58.96,61,62,87.62,51,250,165.4,180,250,107.79,64,250,62.34,63,62,48.01,51,55,105.84,89,250,61.86,63,63,58.65,59,60,73.54,44,250,43.14,47,3,138.58,173,250,57.97,59,60,113.65,103,250,60.69,60,61,64.69,51,5,72.48,43,4,84.03,66,250,36.07,28,8,58.71,60,62,68.3,45,2,159.93,222,250,57.85,58,59,65.92,42,6,70.92,64,63,56.28,57,58,30.62,32,36,49.92,50,64,60.41,58,61,57.1,58,60,87.04,42,250,54.17,57,60,87.24,65,7,60.17,60,61,79.61,65,2,64.63,65,65,57.61,59,59,58.12,60,62,137.82,163,250,57.72,58,60,56.24,57,57,56.72,55,56,67.01,29,11,127.09,84,250,61.49,62,61,58.24,55,62,67.03,67,67,58.33,59,60,57.3,58,57,41.26,24,24,67.8,68,68,57.85,59,61,60.85,60,61,57.57,59,60,55.71,56,58,62.74,59,59,46.44,52,61,62.92,64,66,231.34,250,250,53.83,55,56,58.8,60,60,52.33,54,55,59.95,61,61,8.71,5,3,61.24,61,60,61.49,62,62,56.46,57,56,54.22,55,58,57.1,56,58,92.16,56,250,57.71,57,59,55.94,58,60,54.44,50,57,54.85,55,58,58.02,60,61,99.98,51,250,62.21,63,63,62.25,56,250,59.2,59,61,61.51,61,59,57.22,58,59,61.25,54,51,55.42,53,55,79.44,52,250,56.05,57,58,52.17,54,53,60.05,58,60,63.97,64,64,56.08,55,57,91.79,70,250,72.27,46,250,118.22,107,250,46.16,41,2,59.19,53,250,63.31,65,69,55.85,55,56,109.94,58,250,89.38,78,71,59.14,61,62,79.9,43,250,61.5,42,250,61.99,62,63,73.34,52,250,69.72,41,250,64.26,49,5,52.17,51,58,58.76,55,57,94.67,53,250,55.02,53,52,60.37,61,62,67.86,51,250,95.82,68,250,59.58,59,58,66.48,44,250,121.8,109,250,81.7,43,250,61.31,56,58,31.68,24,15,48.22,44,5,82.25,62,35,0.947,0.03439 +13,VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,76.49,77,78,87.35,54,250,31.26,23,5,68.96,71,75,80.5,77,75,96.64,67,250,79.46,75,9,88.87,68,250,61.93,51,5,118.61,131,250,83.69,84,82,70.74,72,74,49.4,51,2,56.6,49,2,73.94,47,250,71.23,73,76,59.91,36,250,93.1,71,250,64.05,51,250,133.48,110,250,133.72,86,250,70.74,73,75,130.17,97,250,69.35,70,250,130.59,137,250,107.25,49,250,70.23,73,73,82.2,72,250,90.8,58,250,169.71,249,250,220.69,250,250,120.05,91,250,70.11,72,73,74.41,76,75,71.79,71,71,65.46,61,250,56.49,54,2,86.71,61,250,61.23,60,62,74.61,68,72,43.85,42,42,51.73,50,34,62.7,69,72,71.52,73,75,52.98,55,64,49.91,49,35,60.98,54,55,58.79,35,250,61.78,68,72,62.38,27,250,70.68,59,250,147.88,145,250,75.12,47,250,59.96,65,74,73.65,75,75,63.68,68,70,46.15,44,34,94.29,58,250,69.44,73,73,136.98,114,250,62.24,48,250,67.4,70,70,149.17,224,250,83.61,41,250,74.31,76,78,86.14,55,250,9.07,7,3,131.43,92,250,92.03,76,250,73.8,50,250,143.63,165,250,69.55,44,250,108.31,73,250,71.44,73,74,51.71,36,34,90.96,88,5,52.02,49,47,68.73,39,250,142.94,115,250,70.87,73,75,95.73,65,250,130.03,129,250,116.09,74,250,74.25,75,75,61.95,61,72,139.89,141,250,73.41,75,76,71.19,73,74,84.95,52,250,60.75,59,2,154.13,248,250,71.13,73,74,113.48,96,250,73.85,73,73,93.41,86,250,77.9,52,2,107.48,81,250,45.85,29,2,70.77,73,75,81.91,44,37,139.86,149,250,71.49,73,74,85.2,62,12,89.7,81,76,68.79,71,71,42.53,38,22,54.98,58,60,73.66,72,74,70.45,72,75,99.8,61,250,66.55,70,72,105.7,84,69,73.47,73,74,95.19,81,4,75.79,76,76,71.67,73,74,69.99,72,72,134.44,132,250,71.17,72,74,72.85,73,74,70.33,70,71,82.91,51,8,129.4,98,250,73.47,74,76,69.33,62,4,76.44,77,78,71.22,73,74,72.7,73,75,48.99,29,3,77.12,78,78,69.98,72,74,73.4,73,73,71.51,73,74,68.48,69,73,77.13,73,75,66.58,70,69,73.85,76,77,228.56,250,250,70.1,71,73,70.78,73,76,64.33,68,71,71.56,73,72,4.39,4,4,73.76,74,74,73.31,75,75,71.05,73,73,69.22,71,73,71.85,71,71,105.56,75,250,72.25,71,71,69.69,72,73,66.42,63,70,70.56,71,71,71.13,74,74,112.99,65,250,74.06,75,76,74.65,70,250,72.0,72,76,77.09,75,74,70.53,72,73,77.21,73,75,73.73,72,74,85.17,58,250,70.7,72,74,66.9,70,72,72.82,71,69,75.46,76,77,70.46,70,72,127.02,122,250,85.13,64,250,126.11,120,250,62.46,56,3,71.47,66,250,73.99,76,81,71.9,70,69,113.23,67,250,116.54,103,250,71.23,73,74,91.06,59,250,82.0,49,250,74.4,73,77,94.61,69,250,77.63,50,250,82.7,66,250,65.56,66,69,75.64,71,68,110.61,75,250,72.28,71,72,72.02,74,75,89.26,78,250,106.38,80,250,74.66,75,77,72.43,46,250,149.42,159,250,102.34,64,250,75.74,70,74,39.83,32,2,62.07,58,56,104.45,79,250,0.949,0.0345 +14,VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,56.71,57,57,74.45,37,250,31.45,23,3,47.68,49,49,59.22,59,60,58.69,43,11,81.97,69,3,64.06,51,41,48.38,41,29,112.91,76,250,61.96,62,64,50.64,51,52,31.76,32,4,45.0,36,4,36.75,29,8,53.93,56,57,42.43,25,2,79.27,50,250,42.63,35,2,95.1,84,250,119.34,90,250,51.11,52,53,108.6,65,250,48.17,46,49,99.32,84,5,79.57,32,250,50.41,52,53,48.47,48,49,71.51,32,250,162.28,249,250,190.92,210,250,96.85,55,250,50.16,52,53,55.16,55,49,50.37,48,54,48.52,41,39,35.15,27,9,79.56,50,250,41.36,39,44,55.14,45,49,31.55,31,23,37.63,38,56,44.84,49,49,51.24,52,53,38.29,39,46,36.57,36,21,42.68,35,9,48.52,30,27,45.61,49,56,45.77,24,3,47.81,41,6,112.67,97,250,75.07,64,250,42.5,45,57,53.32,54,55,42.6,45,45,35.04,33,27,82.28,38,250,51.83,55,62,69.09,66,3,45.47,31,3,44.87,47,47,148.2,211,250,62.44,18,2,54.48,55,55,73.44,37,250,14.57,14,5,113.71,75,250,63.96,47,250,49.99,35,18,107.76,83,250,53.9,33,10,99.52,62,250,51.05,52,52,45.81,31,18,89.63,56,250,36.52,35,33,59.53,30,250,113.48,83,250,50.89,52,53,82.17,50,250,149.62,155,250,112.42,57,250,53.67,54,54,45.71,47,48,108.84,82,250,53.13,54,54,51.0,52,53,63.11,34,250,38.86,42,3,101.49,126,2,50.79,52,53,80.82,74,250,53.34,52,52,55.93,40,4,69.53,36,8,73.6,57,20,31.63,16,4,50.93,52,52,58.98,37,24,130.39,99,250,50.61,51,52,79.72,41,250,62.82,56,48,49.22,50,51,47.98,49,2,34.83,36,49,52.67,51,53,49.86,51,52,88.0,44,250,47.22,49,51,80.83,54,50,52.63,52,52,64.66,55,29,55.22,55,55,50.53,51,52,50.17,51,52,99.24,107,10,50.49,51,52,50.81,51,51,50.83,49,49,79.91,38,250,135.53,168,250,53.22,53,54,53.52,51,56,57.07,57,57,51.18,52,53,50.87,51,50,42.63,23,2,56.94,57,58,49.87,51,53,52.36,52,53,51.07,52,52,49.43,49,50,56.0,51,53,46.52,50,55,53.82,55,55,230.83,250,250,48.49,49,49,50.69,52,52,46.28,47,50,51.57,52,53,6.11,6,7,52.73,53,54,52.85,54,53,50.37,51,51,49.09,50,52,50.6,49,51,78.95,39,250,50.86,50,52,49.17,51,52,48.03,44,50,50.43,50,52,50.25,52,55,102.12,44,250,53.61,54,55,54.7,48,50,50.63,51,49,57.4,54,52,50.5,51,51,51.84,49,49,52.63,50,54,69.11,35,250,49.26,50,49,46.76,49,53,52.58,51,51,54.77,55,55,52.03,50,50,88.25,67,250,61.73,45,250,98.63,74,250,39.71,33,2,53.67,46,250,55.0,56,59,49.6,48,52,114.34,53,250,52.42,41,39,51.18,52,52,76.24,36,250,59.21,36,250,53.39,52,49,53.89,40,19,54.82,33,250,59.65,47,2,47.96,45,46,52.29,49,49,89.37,45,250,50.38,49,49,52.16,53,54,65.83,44,3,73.5,55,8,52.73,53,55,71.67,37,250,130.42,114,250,63.4,35,250,56.83,52,52,38.19,35,5,42.55,39,4,74.18,59,5,0.947,0.03427 +15,VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,50.2,50,49,62.97,30,250,21.16,15,4,42.95,44,45,51.77,53,55,55.21,31,4,46.38,49,5,45.13,30,15,37.64,31,8,72.73,63,11,53.32,54,58,44.52,45,46,29.18,31,3,37.86,23,2,36.1,27,19,46.05,48,49,36.12,17,11,70.63,42,250,33.75,34,4,99.51,86,250,113.83,60,250,45.01,46,47,106.89,67,250,41.08,40,45,91.51,67,5,75.05,26,250,43.32,44,44,44.01,41,41,65.25,29,250,80.38,88,44,220.24,250,250,94.27,54,250,44.18,45,46,49.89,50,47,46.2,43,47,43.89,37,40,30.94,28,4,69.4,43,250,37.93,35,40,52.43,41,40,27.36,26,24,31.61,32,13,38.93,42,47,45.28,46,46,34.16,34,30,31.14,31,29,37.12,28,23,35.4,24,18,39.83,42,43,28.23,19,3,42.8,35,7,83.48,74,250,80.08,66,4,37.73,41,48,47.37,48,48,37.47,39,41,29.41,27,19,78.95,33,250,46.16,48,48,65.85,36,6,33.05,18,19,40.15,42,44,136.78,135,250,65.91,23,10,47.97,48,49,68.87,31,250,23.87,16,3,86.04,66,250,57.13,37,250,55.83,41,11,95.18,94,250,46.46,25,9,88.65,36,250,45.08,46,46,48.7,35,11,54.99,44,14,32.42,32,31,52.14,24,3,118.14,91,250,44.73,46,46,75.36,40,2,154.79,145,250,101.2,46,250,47.38,48,48,38.34,39,41,89.34,63,250,46.97,47,48,44.9,45,47,54.09,29,26,35.47,34,43,90.11,112,8,44.99,46,47,74.89,65,250,47.13,46,47,43.92,26,6,62.84,34,4,77.65,63,11,23.34,20,4,44.87,46,47,46.17,28,17,131.03,87,250,44.78,45,46,32.96,30,11,54.5,49,45,42.99,44,45,50.99,52,80,34.93,35,37,46.14,45,45,44.2,44,45,83.83,33,250,41.72,43,45,58.31,45,5,46.81,46,46,39.91,36,34,48.91,49,49,44.78,45,46,44.62,45,44,87.45,97,32,44.9,45,46,44.09,44,45,44.43,43,43,52.27,23,6,107.48,85,250,46.47,47,48,42.27,43,48,50.06,50,50,45.04,46,47,44.96,45,47,25.65,14,7,50.91,51,50,43.98,45,46,46.6,46,46,44.76,45,45,43.38,43,46,49.99,46,46,36.86,39,39,47.92,49,48,229.4,250,250,42.3,43,44,45.08,46,48,39.98,41,43,45.89,46,47,3.52,3,2,46.79,47,46,46.76,47,48,44.38,45,46,42.99,44,43,45.08,43,43,76.34,34,250,44.81,43,44,43.97,45,46,42.4,39,43,44.6,43,43,44.33,46,49,77.41,35,250,47.23,48,48,46.82,43,43,44.68,45,49,50.48,47,48,43.28,45,44,46.91,44,45,46.41,43,45,58.44,25,250,43.71,44,45,41.29,43,45,47.08,45,45,48.47,49,48,44.23,43,46,72.47,57,250,55.6,36,250,79.93,54,250,34.21,29,6,47.93,40,44,47.44,50,51,42.71,42,44,82.04,31,250,50.8,47,42,45.08,46,47,69.61,34,250,53.28,34,2,46.11,47,44,57.44,45,10,55.21,29,250,52.28,41,2,41.22,39,42,48.28,45,46,75.14,37,250,44.54,43,42,46.13,47,47,46.4,33,5,77.23,59,5,46.66,46,46,56.82,21,250,102.77,93,250,58.44,32,24,45.85,43,43,25.62,25,2,36.78,34,5,73.79,55,3,0.947,0.03424 +16,VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,42.76,42,42,67.81,27,250,21.09,17,3,36.49,36,35,43.72,43,43,55.07,34,3,51.29,50,2,58.14,48,17,35.03,31,3,70.87,63,8,45.51,45,46,38.49,39,39,25.62,25,2,39.5,29,2,36.48,29,3,38.72,39,40,49.68,21,2,60.12,35,35,37.08,29,4,89.35,71,250,108.53,60,250,38.69,39,40,104.97,68,250,37.09,35,41,90.78,77,6,76.89,26,250,37.04,38,40,39.05,35,39,67.67,28,250,134.86,179,42,180.49,208,250,89.48,52,250,38.14,39,39,42.62,42,40,40.04,35,38,39.15,31,31,36.72,35,7,59.3,34,30,34.51,31,32,47.5,35,39,24.83,23,20,28.78,29,21,33.98,37,41,38.94,39,39,29.32,30,36,26.98,27,23,32.61,25,6,39.27,27,14,32.69,35,39,37.21,21,4,37.0,31,33,83.18,75,2,57.79,37,2,31.9,32,42,40.14,40,41,32.32,34,31,24.45,25,14,72.51,27,250,37.28,39,40,45.73,31,5,32.97,21,20,33.69,35,33,132.26,118,250,68.81,24,2,41.29,41,42,72.16,38,250,3.98,3,2,79.42,54,250,52.86,34,250,52.07,31,14,98.95,91,250,45.46,25,250,89.14,54,250,38.8,39,40,46.47,37,34,63.06,46,9,27.42,26,23,49.69,21,5,112.96,82,250,38.42,39,40,70.15,33,250,179.93,217,250,104.06,42,250,40.72,41,40,34.55,35,34,81.2,56,21,40.18,40,40,38.78,39,39,51.59,31,14,27.35,28,2,77.32,96,11,38.47,39,39,81.12,83,250,41.08,39,39,49.38,27,3,60.2,36,3,74.85,53,14,22.72,21,5,38.47,39,40,44.55,29,16,120.43,129,250,38.34,38,39,56.4,37,7,48.2,44,34,36.94,37,38,26.07,28,33,24.53,18,5,40.66,38,38,38.15,38,38,79.13,28,250,35.87,37,39,32.5,34,34,40.08,39,39,52.36,49,16,41.62,41,41,38.24,38,39,38.0,38,38,84.66,90,15,38.24,38,38,38.28,38,38,39.19,36,37,77.13,33,250,124.54,91,250,40.04,40,40,40.79,36,38,43.16,43,42,38.91,39,40,38.66,38,39,34.37,20,2,43.16,43,42,38.19,39,39,40.16,39,39,38.24,38,38,37.2,36,36,43.9,39,39,32.0,35,43,40.19,41,41,226.4,250,250,36.98,37,38,38.6,39,40,35.76,36,38,39.36,39,40,5.96,3,4,39.32,39,39,40.06,40,40,37.96,38,39,37.23,37,38,39.65,38,37,76.96,37,250,39.67,38,38,38.07,39,39,39.15,33,36,38.77,37,37,38.53,40,42,88.49,44,250,40.37,40,40,44.16,37,39,38.83,37,38,44.65,40,39,37.68,38,39,40.48,37,37,39.95,36,36,70.17,40,250,37.72,38,37,35.05,36,36,40.87,38,38,41.2,41,41,38.03,36,36,71.79,56,250,57.99,37,250,96.44,75,250,34.04,28,2,42.71,35,35,40.92,43,46,38.07,36,38,82.36,34,250,36.64,21,18,38.75,39,40,69.9,31,250,41.51,27,3,41.6,40,43,56.15,36,250,45.89,25,250,47.34,37,4,35.43,33,34,41.12,37,39,74.33,36,250,39.54,37,38,39.4,40,39,53.87,39,4,74.94,54,250,40.41,39,39,67.05,44,250,95.58,75,3,69.74,35,14,40.62,39,40,25.24,21,20,31.71,29,4,77.59,54,4,0.946,0.03426 +17,VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,53.76,54,55,62.92,25,250,23.23,21,21,47.17,48,51,55.75,56,57,57.71,33,10,75.42,40,250,60.24,54,3,40.09,35,2,70.9,65,250,61.18,61,58,47.82,49,50,31.85,33,4,38.95,29,2,40.83,20,4,48.71,50,48,46.05,24,250,62.28,45,250,34.84,30,2,108.38,93,250,120.22,86,250,48.19,49,50,101.01,53,250,45.83,45,50,104.42,61,250,86.29,34,250,46.03,47,50,48.65,46,48,64.36,31,250,149.97,185,250,191.8,221,250,101.84,63,250,47.58,49,49,52.81,53,54,47.71,45,48,45.53,38,39,52.95,32,6,58.75,41,38,39.85,38,42,53.88,42,42,30.93,30,28,34.21,32,20,43.22,47,47,48.69,49,50,37.26,38,25,33.09,33,28,37.67,30,13,34.39,25,25,42.41,47,50,40.47,24,2,46.64,38,40,79.9,64,250,103.17,108,3,38.7,41,44,50.68,52,52,41.68,44,47,30.36,28,22,80.01,31,250,49.35,52,52,47.32,38,22,32.33,19,16,42.88,45,45,139.53,177,250,71.13,28,2,51.7,52,52,71.3,33,250,8.75,3,2,79.1,50,250,60.53,42,250,41.08,30,20,107.44,106,250,47.86,34,2,90.16,47,250,48.2,49,49,47.5,45,47,53.62,40,7,33.91,32,26,55.52,26,8,111.02,66,250,48.24,49,50,65.17,40,4,126.7,121,250,101.66,52,250,51.02,51,51,40.55,42,47,85.52,60,250,50.34,51,51,48.17,49,50,62.41,37,22,33.58,33,4,96.96,124,12,48.01,49,49,75.48,62,250,50.43,50,50,49.19,37,3,60.68,34,2,60.92,57,44,28.21,22,2,47.95,49,50,45.98,28,15,120.73,72,250,47.88,48,49,30.96,30,10,58.81,51,37,46.35,47,49,24.04,25,25,36.3,36,44,49.45,48,50,47.37,48,48,88.88,43,250,45.05,47,48,35.96,39,43,49.85,49,49,55.54,39,2,52.46,53,53,47.84,49,49,47.28,49,49,56.71,60,6,47.8,48,48,47.45,48,47,47.45,46,48,52.66,30,7,72.28,62,4,50.49,51,51,45.59,44,5,53.82,54,52,48.44,49,50,48.28,49,50,25.73,14,9,54.62,55,56,47.63,49,50,50.41,49,49,47.57,48,49,46.34,46,49,52.48,49,49,41.82,45,51,51.39,52,51,229.21,250,250,45.43,46,46,48.08,49,50,42.68,44,47,48.96,49,49,4.46,4,4,49.73,50,49,50.25,51,51,47.47,48,50,46.13,47,48,48.79,47,48,77.78,33,250,48.76,47,49,46.8,48,49,44.16,41,42,47.18,47,48,47.47,49,50,84.46,41,250,50.84,51,52,51.56,46,46,47.52,47,47,53.68,51,51,47.41,49,50,49.66,46,47,51.23,48,47,56.7,27,250,47.13,47,48,43.78,46,48,50.09,48,49,51.95,52,52,46.62,46,49,86.3,65,250,59.07,38,250,96.15,71,250,40.02,30,3,50.69,43,46,51.86,53,53,45.91,45,47,83.87,32,250,52.13,47,47,48.34,49,50,69.29,34,250,52.03,36,2,49.24,50,53,57.22,40,5,54.02,29,250,57.22,42,2,42.55,41,43,50.41,48,52,81.47,44,250,48.06,46,48,49.43,50,50,52.48,35,10,79.02,58,250,50.37,50,50,57.35,23,250,109.24,85,250,60.83,33,26,43.97,42,45,28.84,25,2,38.22,36,44,56.02,47,23,0.946,0.03433 +18,VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,60.51,61,61,68.86,30,250,33.45,27,17,53.29,54,54,61.17,61,57,68.3,41,2,58.8,46,2,50.32,40,40,44.39,38,2,128.84,102,250,66.67,67,65,53.55,54,55,36.76,39,2,46.55,38,2,45.53,33,7,57.33,59,60,43.1,25,3,68.89,48,250,39.95,36,3,106.42,99,250,120.99,65,250,53.96,55,56,112.36,66,250,52.3,51,2,129.45,115,250,87.69,30,250,52.57,54,53,58.71,50,250,72.13,33,250,159.36,248,250,169.05,184,250,110.5,63,250,53.0,55,55,58.03,58,57,53.25,51,55,50.48,44,49,38.47,35,3,80.76,47,250,43.8,42,48,57.6,48,250,34.66,33,28,39.14,37,25,45.7,51,57,53.98,55,57,39.12,39,41,38.63,40,52,47.11,32,7,40.68,25,26,46.84,51,50,49.09,24,2,50.45,42,3,115.84,82,250,76.37,66,250,44.42,45,53,56.92,58,58,44.47,47,47,34.95,33,21,77.75,33,250,56.49,59,60,81.78,60,250,43.08,25,26,46.84,49,52,128.21,128,250,81.13,42,250,58.1,59,59,73.8,36,250,16.11,8,3,123.79,117,250,63.99,49,250,57.6,29,17,108.22,76,250,50.33,30,9,101.91,67,250,53.59,54,55,50.14,41,25,84.99,78,3,38.54,38,36,61.77,31,3,120.75,79,250,53.83,55,57,84.23,46,250,116.13,116,250,106.48,52,250,57.02,58,58,41.85,43,48,100.05,75,250,56.45,57,57,53.77,55,56,66.59,34,250,42.99,41,53,124.57,146,10,53.54,55,55,89.63,72,250,55.91,55,56,59.52,30,2,60.07,47,4,117.81,116,72,28.1,17,2,53.8,55,55,52.47,31,17,127.61,95,250,53.36,54,53,34.85,31,21,65.46,60,48,51.83,53,55,27.37,28,25,44.14,45,47,55.32,54,55,52.21,53,54,88.1,43,250,50.09,52,54,63.14,52,50,55.64,55,55,64.44,51,20,58.84,59,59,53.28,54,55,52.86,54,55,105.71,119,28,53.2,54,55,53.08,53,54,52.9,51,51,76.41,38,250,122.28,130,250,56.27,57,57,54.42,50,7,60.38,61,59,54.03,55,56,52.97,53,52,29.1,14,2,61.47,62,61,52.81,54,56,55.65,55,55,53.67,55,55,51.12,51,54,57.43,54,56,46.57,47,46,57.49,59,57,227.09,250,250,50.06,51,52,54.29,56,57,47.19,49,53,54.71,55,56,6.35,6,4,55.84,56,56,56.17,57,57,52.68,54,53,51.64,52,54,52.95,51,52,80.55,36,250,53.35,52,55,52.12,54,56,47.89,43,26,52.02,52,54,53.18,55,56,101.21,49,250,56.76,57,58,57.65,52,53,54.05,55,56,59.13,56,58,51.06,53,55,56.3,52,54,53.36,52,54,66.04,34,250,52.52,53,54,47.68,51,54,56.47,54,53,58.29,59,59,53.6,52,54,80.66,55,250,63.42,42,250,100.24,69,250,39.79,36,3,54.59,49,54,57.39,58,64,51.1,50,50,95.16,44,250,74.67,77,4,54.25,56,57,76.12,42,250,58.88,39,2,56.87,57,56,60.63,43,2,56.02,35,250,66.39,52,3,48.03,45,44,54.3,49,48,80.38,52,250,53.54,51,51,55.19,56,57,60.78,51,3,78.85,63,250,55.47,56,55,79.12,57,250,126.15,110,250,77.43,40,250,51.22,49,51,27.09,24,2,40.19,38,51,61.75,57,4,0.947,0.0343 +19,VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,65.19,65,66,75.63,39,250,31.49,26,24,54.22,56,57,65.75,66,66,71.05,42,250,53.54,29,2,62.17,55,3,44.15,33,21,101.69,89,250,72.44,72,71,56.91,58,59,37.16,40,2,48.94,36,2,47.99,30,4,59.84,62,62,49.38,27,250,82.31,51,250,41.98,40,2,120.69,114,250,124.14,95,250,57.73,59,61,122.0,93,250,52.36,51,52,127.33,113,250,90.4,30,250,54.9,57,59,52.42,51,51,73.57,39,250,123.35,140,58,227.29,250,250,108.66,74,250,56.54,58,59,63.27,63,64,56.3,51,54,54.07,47,47,39.84,36,12,76.04,51,250,44.44,43,46,61.66,53,56,35.25,35,33,40.99,41,58,49.01,54,60,57.84,59,60,42.91,44,30,39.26,40,46,43.39,34,7,49.9,32,2,50.72,55,58,45.87,25,2,52.81,46,59,127.94,108,250,77.72,61,3,50.46,53,58,60.98,62,62,45.93,50,55,38.74,37,30,82.71,39,250,58.25,63,63,62.89,46,5,43.24,24,2,50.95,53,57,145.7,200,250,78.84,33,250,62.3,63,63,73.98,37,250,26.38,18,3,103.59,55,250,74.15,55,250,76.99,58,15,110.56,96,250,57.21,30,11,98.57,61,250,57.47,58,59,43.53,24,2,78.13,59,2,41.42,41,36,61.69,35,250,126.27,101,250,57.67,59,60,90.34,46,250,177.31,204,250,107.2,57,250,60.91,61,62,46.97,49,55,106.04,86,250,60.39,61,61,57.37,58,61,70.31,42,250,40.14,43,3,107.18,134,6,57.09,58,58,97.02,87,250,59.98,59,59,54.37,37,2,73.31,41,250,103.77,93,250,41.01,28,4,57.21,59,60,62.95,30,10,143.97,173,250,57.04,58,58,70.73,44,15,67.68,61,52,54.94,56,58,34.48,36,43,45.02,44,27,58.52,57,58,56.24,57,59,89.92,42,250,53.07,55,58,101.23,66,50,59.41,59,58,67.2,56,20,62.89,63,63,56.89,58,58,56.42,58,60,112.32,127,250,56.72,57,59,55.82,56,55,55.96,55,57,72.95,23,7,121.24,101,250,59.91,60,60,56.52,53,60,64.83,65,66,57.14,59,61,56.82,57,58,42.8,27,3,66.02,66,66,56.35,58,59,59.69,59,59,57.03,58,59,54.96,55,58,62.92,59,61,47.53,50,51,62.22,63,63,231.21,250,250,53.59,55,56,58.01,59,59,50.65,53,56,58.62,59,60,6.18,4,2,59.82,60,60,60.12,61,62,56.34,57,57,54.86,56,58,56.58,55,54,90.23,54,250,56.63,55,58,54.9,57,57,53.49,50,57,55.86,55,57,56.96,59,62,106.34,53,250,60.8,61,62,59.49,54,55,56.58,57,60,64.19,61,61,56.48,58,62,58.6,54,54,56.05,54,55,77.99,45,250,55.11,56,55,52.2,55,56,59.04,57,58,62.41,63,63,55.04,54,54,98.49,80,250,69.44,47,250,100.84,73,250,42.51,39,2,59.41,51,55,61.73,63,69,53.52,53,52,107.37,61,250,75.89,72,2,57.76,59,60,80.1,42,250,63.99,42,250,58.92,60,61,69.66,55,250,60.19,37,250,69.5,54,2,50.13,49,51,58.16,54,54,88.18,50,250,55.53,53,52,59.0,60,61,65.12,50,7,100.44,76,250,58.43,59,61,59.75,28,250,120.26,115,250,78.7,45,250,56.16,53,57,31.22,29,2,43.27,40,30,78.34,60,27,0.95,0.03434 +20,VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,60.45,60,60,77.62,41,250,21.59,15,6,51.32,52,54,63.23,62,59,67.31,38,250,48.27,38,2,51.51,29,22,41.05,32,6,87.98,82,250,67.89,66,60,52.57,53,54,35.94,39,5,45.58,39,2,48.2,28,2,54.43,56,59,44.36,26,7,69.5,46,250,37.71,31,2,120.92,114,250,117.76,88,250,53.23,54,56,113.9,71,250,48.01,45,51,89.05,71,21,90.91,26,250,50.17,51,54,49.51,47,50,72.51,32,250,155.91,203,250,223.37,250,250,103.67,61,250,52.21,54,55,60.46,60,57,52.42,49,54,48.62,41,250,48.31,36,3,73.62,45,250,43.69,41,44,57.54,47,51,34.4,33,32,37.25,36,26,45.25,49,50,53.52,54,55,39.75,39,40,36.85,37,26,40.79,32,12,47.43,31,3,47.96,51,57,43.39,28,3,50.58,42,54,115.52,88,250,71.67,58,249,43.71,46,52,56.02,57,57,43.69,47,49,34.59,33,21,79.43,34,250,57.18,58,58,63.71,41,2,38.11,24,27,47.36,49,48,142.97,197,250,75.35,32,250,57.73,58,60,71.31,33,250,2.21,2,2,125.74,78,250,66.42,51,250,61.69,41,15,109.79,106,250,53.3,31,22,91.76,50,250,52.92,54,53,51.45,47,50,68.73,59,10,40.72,41,40,60.89,33,250,125.52,103,250,53.32,55,56,77.45,44,250,151.04,164,250,97.16,56,250,56.25,57,57,45.82,48,49,111.55,89,250,55.8,56,57,53.02,54,55,69.24,37,250,35.7,39,5,153.31,249,250,52.63,54,55,96.2,70,250,54.83,54,54,58.22,40,6,66.5,39,7,93.13,63,250,36.77,28,3,52.97,54,56,49.45,30,3,133.42,135,250,52.2,53,54,65.99,41,40,65.37,59,53,50.75,52,54,27.03,27,24,38.42,41,46,54.6,53,54,51.79,52,53,91.73,43,250,48.99,51,55,64.11,59,48,54.69,54,54,70.96,56,5,58.31,58,58,53.24,54,53,52.5,54,55,100.18,100,12,52.43,53,53,52.1,52,54,52.71,50,50,55.39,40,4,102.77,92,2,55.4,56,56,51.09,45,3,60.12,60,61,53.08,54,55,52.7,53,54,35.0,20,5,61.48,61,58,52.45,54,55,54.59,54,55,52.77,53,54,50.07,50,53,58.31,54,54,45.08,48,49,57.08,58,59,224.33,250,250,49.48,50,50,53.61,55,54,47.72,49,53,53.68,54,55,2.52,2,2,54.93,55,57,55.54,56,56,51.71,53,53,49.96,51,52,52.18,51,52,83.24,43,250,53.23,52,50,51.57,53,53,51.42,46,56,51.49,51,51,52.98,55,56,100.54,48,250,56.23,57,57,56.04,51,54,53.43,53,57,59.16,56,56,51.87,53,55,53.62,50,50,51.9,50,52,74.49,43,250,50.83,52,52,47.37,50,54,53.95,52,55,57.7,58,59,51.63,50,52,86.59,67,250,63.34,48,250,100.45,86,250,41.67,36,4,55.16,48,55,58.21,60,60,49.96,49,53,88.87,55,250,112.55,131,250,53.47,55,56,76.59,39,250,64.98,41,250,55.15,55,58,67.67,50,30,60.5,37,250,61.79,41,2,48.41,46,49,53.84,50,48,82.86,49,250,51.13,49,49,54.68,56,56,65.92,51,250,84.57,62,250,54.52,54,55,58.8,25,250,132.0,135,250,71.07,45,250,54.3,50,53,44.34,30,3,41.15,39,50,86.18,51,250,0.947,0.03435 +21,VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,56.54,57,57,71.09,38,250,20.1,14,5,51.95,52,50,59.66,59,53,61.48,38,2,60.79,49,2,55.96,42,2,47.65,42,27,75.51,74,250,61.23,61,61,50.98,52,53,32.32,34,2,46.15,38,8,47.35,35,2,54.64,57,57,49.44,26,250,69.98,49,250,36.35,35,2,120.37,112,250,108.28,70,250,51.28,52,53,111.51,72,250,48.7,48,54,51.94,45,6,76.65,28,250,49.75,52,57,49.63,50,56,75.03,36,250,163.07,228,250,134.8,134,250,104.6,77,250,50.55,52,52,56.01,55,49,53.48,49,50,51.35,44,44,40.29,38,14,70.49,49,250,41.89,40,51,55.16,44,48,32.9,32,28,37.97,37,57,45.11,49,49,51.9,53,54,37.5,36,31,36.41,37,30,47.8,32,9,47.37,30,29,43.45,46,54,39.57,23,4,45.94,40,48,108.93,102,250,80.27,73,250,41.99,44,48,53.75,55,55,42.7,47,49,33.98,32,25,79.13,36,250,50.16,53,55,69.87,49,250,45.61,34,5,47.63,50,50,147.41,217,250,78.2,32,250,54.38,55,55,70.6,32,250,7.49,4,4,125.4,107,250,68.74,50,250,64.8,39,16,108.17,90,250,52.49,32,250,90.18,42,250,51.42,52,52,53.5,49,48,76.91,73,2,37.96,37,40,62.09,33,4,121.64,79,250,51.37,53,53,70.24,36,250,148.36,181,250,102.45,51,250,53.87,54,55,42.0,41,45,101.91,79,250,53.38,54,55,51.57,52,53,64.76,37,2,37.09,41,5,82.43,101,12,51.27,52,53,81.41,66,250,53.67,53,54,59.3,35,6,76.15,32,250,123.13,124,141,33.43,24,2,51.08,52,54,58.52,30,5,100.99,89,250,51.25,52,52,64.56,36,9,63.32,59,50,49.57,51,53,25.57,26,29,48.11,45,44,53.38,52,53,50.69,51,52,92.2,45,250,47.6,50,52,88.55,64,3,53.29,53,53,68.6,47,3,55.44,56,55,51.51,52,53,50.29,52,52,89.88,97,21,51.21,52,53,51.82,52,52,51.06,49,51,81.88,38,4,135.45,169,250,53.02,53,54,48.81,47,2,56.12,56,58,51.63,53,54,51.12,52,52,39.65,28,3,57.24,57,56,50.6,52,53,53.85,53,52,50.98,52,53,49.67,49,52,55.74,52,52,43.55,48,50,53.95,55,54,223.33,250,250,49.05,50,51,51.27,53,54,46.23,47,50,52.33,53,55,4.71,4,2,53.54,54,53,53.18,54,55,50.89,52,53,49.79,50,51,51.89,51,51,85.28,49,250,52.12,51,51,50.5,52,52,47.84,43,48,52.3,51,52,50.77,53,55,96.43,48,250,53.71,54,55,54.94,49,47,50.65,51,53,56.19,53,54,50.94,52,54,56.2,50,52,53.71,50,48,75.2,42,250,50.26,51,53,47.1,49,50,53.44,52,54,54.99,55,55,51.46,50,50,82.8,55,250,68.78,46,250,111.66,100,250,43.87,35,4,53.56,46,47,51.14,51,50,49.27,48,50,81.27,34,250,60.96,53,47,51.34,53,53,72.97,37,250,65.18,39,2,52.97,54,54,66.34,44,250,56.68,35,250,59.55,40,3,47.47,45,51,54.89,51,50,85.24,44,250,51.36,50,51,52.45,53,54,62.62,46,4,83.78,59,250,52.92,52,50,64.57,35,250,124.0,119,250,69.25,43,250,56.38,50,50,43.3,31,2,42.72,39,5,77.39,60,11,0.947,0.03434 +22,VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,75.06,75,75,73.57,38,250,33.61,25,13,64.11,67,72,80.6,81,74,76.33,47,250,83.46,82,4,59.61,40,3,52.82,44,5,97.0,97,250,84.15,87,93,64.86,66,67,40.07,41,3,52.58,44,6,46.46,36,4,68.09,70,69,47.86,29,21,91.27,59,250,48.8,49,5,136.75,123,250,129.47,101,250,65.68,68,69,142.76,126,250,59.77,58,65,130.52,120,250,92.13,46,250,60.92,63,65,61.18,59,63,78.18,42,250,166.17,246,250,212.77,249,250,101.34,54,250,64.68,67,68,72.49,72,73,61.48,61,66,57.52,52,52,65.71,48,9,84.94,53,250,49.58,49,54,67.38,60,250,38.61,37,38,49.37,47,68,55.71,61,65,66.11,67,69,51.38,52,72,46.68,46,40,44.37,35,5,57.05,37,250,56.76,62,72,45.11,27,3,58.39,48,7,130.11,102,250,113.93,107,250,53.9,57,63,69.89,71,71,51.63,55,63,43.82,41,26,90.31,56,250,65.67,72,73,93.28,65,250,48.93,32,5,58.13,60,59,145.68,207,250,88.06,47,250,71.53,73,74,79.72,45,250,16.25,8,2,129.68,76,250,75.32,58,250,71.61,47,250,123.13,117,250,63.85,44,250,103.96,55,250,65.21,67,67,59.55,55,67,90.6,89,3,49.39,48,42,66.77,35,250,132.48,125,250,65.86,68,70,98.19,56,250,141.65,166,250,109.98,65,250,70.11,71,71,49.24,52,54,134.87,118,250,69.19,70,71,65.43,67,69,91.66,42,250,46.07,50,2,129.38,170,250,64.67,66,69,98.35,91,250,67.41,67,67,70.58,56,3,76.04,51,4,113.63,95,250,37.36,26,3,65.63,67,69,74.39,38,22,141.47,155,250,64.56,66,66,66.76,47,19,82.05,74,66,62.68,64,65,47.86,50,61,51.4,53,50,66.18,65,67,63.89,65,66,97.21,48,250,60.66,63,65,69.38,61,5,67.0,67,69,73.45,71,2,72.5,73,73,64.91,66,69,64.82,66,68,121.28,123,250,64.18,66,70,63.43,64,65,62.75,61,62,80.64,33,250,126.73,114,250,68.77,69,71,66.23,58,2,74.65,75,75,65.54,67,69,64.48,65,66,41.33,26,4,76.17,76,79,64.38,67,69,67.38,67,67,64.34,66,67,61.42,62,63,69.02,66,66,54.55,55,3,71.09,72,72,226.04,250,250,60.91,62,61,66.17,68,70,57.62,60,66,67.1,68,70,5.99,5,3,67.89,68,71,68.95,70,71,64.11,65,66,61.58,63,62,63.39,62,63,91.99,54,250,64.91,64,65,63.19,65,65,60.83,56,67,62.56,62,64,64.9,68,69,105.68,56,250,69.78,70,70,67.25,62,250,65.48,65,70,72.81,70,68,63.5,65,66,67.16,62,65,63.67,62,61,75.69,45,250,62.65,63,62,59.55,62,64,67.14,65,66,71.88,72,73,61.44,61,63,100.29,82,250,80.51,58,250,105.17,87,250,46.96,38,2,64.87,60,63,72.17,73,72,63.56,63,69,116.21,73,250,103.42,118,8,66.33,68,70,83.43,47,250,56.52,44,250,67.26,70,67,78.65,55,250,61.58,39,250,66.17,40,250,55.59,54,56,65.12,62,64,94.42,60,250,62.99,60,61,67.45,69,70,77.32,68,3,101.18,79,250,65.7,66,67,84.01,60,250,138.24,129,250,79.2,49,250,65.47,63,62,49.86,41,2,47.9,46,3,103.09,98,250,0.949,0.03429 +23,VBS46322-6321STDY9453322,75.5,77,78,77.0,78,79,81.13,82,82,79.93,39,250,39.99,31,12,70.1,72,76,84.1,84,85,87.38,56,250,77.91,67,6,59.39,42,40,64.51,61,3,148.27,184,250,91.63,92,85,72.47,74,76,45.03,46,2,56.15,44,4,60.07,47,6,72.63,75,74,58.96,36,2,92.15,68,250,52.1,48,3,148.25,161,250,137.06,113,250,72.67,75,77,143.12,110,250,67.97,70,78,111.28,89,250,102.22,56,250,70.68,74,76,72.47,68,70,76.97,46,250,171.61,248,250,222.27,249,250,126.23,94,250,72.24,75,77,79.63,82,85,70.85,70,73,63.09,60,250,72.79,66,11,84.99,63,250,59.56,59,62,72.62,67,250,46.18,44,45,56.08,55,35,62.27,70,76,73.61,75,77,56.57,58,72,51.56,53,78,63.09,51,6,48.02,37,5,64.1,70,79,63.37,32,8,65.89,56,8,129.57,125,250,104.25,96,2,61.15,66,75,76.6,78,79,61.85,66,67,47.72,44,34,86.62,51,250,72.71,76,75,95.75,75,250,56.83,37,250,64.42,68,70,149.4,236,250,79.91,31,2,77.98,79,80,82.18,48,250,4.42,2,2,125.31,84,250,82.76,69,250,72.82,57,21,143.2,165,250,61.15,42,250,115.27,83,250,73.11,75,76,64.28,63,14,114.23,96,250,53.54,54,65,73.01,41,250,145.07,130,250,73.19,76,78,101.99,63,250,196.18,250,250,117.57,74,250,77.07,78,77,60.47,64,74,116.29,101,250,76.25,78,78,73.25,75,75,101.63,62,250,55.1,63,4,148.11,227,250,72.42,74,77,118.63,107,250,74.92,75,77,84.21,48,250,64.64,38,250,123.26,122,92,43.87,32,4,72.92,75,77,80.29,46,7,146.7,180,250,72.78,74,76,70.55,57,12,88.12,79,62,69.91,72,73,63.2,64,2,51.23,54,71,73.97,74,76,71.28,73,75,101.29,53,250,67.89,72,74,45.26,43,27,75.07,75,76,98.5,77,37,79.39,80,80,72.6,74,76,72.24,75,78,151.38,195,250,72.2,74,73,72.88,73,72,70.25,70,72,86.31,29,250,135.65,155,250,75.48,76,77,70.13,65,13,80.65,81,81,73.25,75,76,72.43,73,74,46.67,28,4,82.55,83,82,72.09,75,76,75.48,75,77,72.7,74,75,68.69,70,76,77.88,75,78,58.94,65,67,77.31,79,79,227.39,250,250,69.24,71,73,73.37,76,78,65.0,68,71,73.24,75,77,4.32,4,2,76.38,77,77,76.0,78,78,71.96,74,74,71.0,72,73,71.98,71,72,98.77,63,250,72.58,72,75,70.82,74,76,64.94,61,71,72.8,72,74,72.04,75,78,109.22,60,250,76.98,78,78,75.09,71,250,72.63,73,74,80.84,79,80,70.81,73,77,74.31,71,73,70.54,71,73,84.48,59,250,71.57,73,75,65.59,70,75,72.75,73,76,78.82,79,79,70.64,70,71,107.83,90,250,83.12,64,250,128.01,125,250,61.62,53,4,75.19,70,250,77.04,79,76,69.02,69,72,105.59,56,250,111.31,130,12,73.41,76,77,86.77,54,250,75.24,55,250,74.2,76,82,84.31,66,250,64.56,45,250,68.4,38,250,64.28,65,71,78.1,73,69,96.62,62,250,69.96,69,72,74.41,76,77,78.88,59,2,116.86,103,250,74.44,75,79,79.68,57,250,146.34,142,250,79.97,56,250,76.8,70,70,49.08,37,3,58.43,54,5,117.72,98,250,0.948,0.03438 +24,VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,54.02,54,55,66.06,29,250,20.95,14,10,47.92,49,48,57.96,57,57,59.72,42,3,48.97,34,5,47.53,37,7,39.13,34,7,66.14,61,250,60.8,61,57,47.96,49,50,30.94,33,4,42.31,27,2,45.37,28,5,48.43,49,49,39.18,20,2,71.94,47,250,36.19,34,3,108.85,95,250,116.51,76,250,48.44,49,51,102.38,54,250,45.05,46,50,110.29,65,250,76.34,29,250,46.48,48,49,57.83,47,50,76.6,36,250,144.97,182,250,205.56,250,250,95.58,52,250,47.65,49,50,52.51,52,49,49.1,45,48,48.79,42,47,34.45,32,7,75.01,42,250,41.19,39,46,54.36,44,45,28.13,27,25,36.27,36,21,43.48,46,51,48.93,49,51,36.63,37,40,33.98,32,30,36.27,29,25,36.52,24,29,45.02,49,52,33.06,16,6,47.06,38,3,91.79,76,250,69.8,57,2,41.36,43,46,50.85,52,53,40.07,42,45,33.34,32,24,75.48,33,250,48.88,51,52,69.34,62,2,34.28,20,2,43.39,46,49,139.72,143,250,68.73,20,250,51.8,52,52,70.28,34,250,15.07,15,14,123.62,107,250,60.12,43,250,62.48,42,14,107.2,99,250,45.34,23,8,98.17,59,250,48.47,49,50,60.53,57,71,69.92,56,2,34.33,33,31,49.97,23,8,116.31,78,250,48.32,50,50,73.01,42,5,170.06,185,250,100.9,52,250,51.04,51,52,43.19,43,43,87.87,60,250,50.51,51,51,48.34,49,49,52.05,33,3,41.91,43,50,134.04,174,250,48.22,49,50,91.35,90,250,50.95,50,50,41.52,12,3,60.33,32,2,124.48,118,250,27.83,22,2,48.32,49,50,49.58,32,18,127.41,94,250,48.18,49,50,50.47,38,37,62.2,59,55,46.49,48,49,79.4,87,107,27.93,20,13,49.77,48,50,47.35,48,50,89.13,43,250,44.79,47,49,30.75,29,28,50.0,49,50,55.29,49,32,52.64,53,53,48.24,49,49,47.65,49,51,79.96,94,3,48.22,49,50,47.87,48,49,47.73,46,48,48.29,27,6,134.59,159,250,49.95,50,51,47.0,43,3,53.73,54,53,48.5,49,52,48.34,49,50,31.22,19,9,54.68,55,55,47.38,49,50,50.99,49,50,48.44,49,49,46.74,47,49,53.73,49,51,40.21,42,40,51.82,52,52,228.05,250,250,46.43,47,48,49.02,50,53,42.45,44,47,49.46,50,51,7.64,6,3,50.7,51,51,50.14,51,51,47.92,49,49,46.79,48,50,48.15,47,46,78.02,33,250,49.5,48,50,47.71,49,50,48.19,43,51,47.81,48,47,47.3,49,51,93.22,38,250,50.77,51,51,52.14,46,47,48.36,49,52,53.85,51,51,47.88,49,47,47.6,46,48,49.06,47,47,61.18,29,250,47.89,49,49,44.31,46,51,50.25,48,48,52.04,52,52,48.71,47,46,81.48,62,250,54.47,39,250,87.29,55,250,37.57,30,3,49.9,43,45,52.03,54,57,46.95,46,47,94.87,45,250,80.87,91,97,48.7,50,50,67.64,29,250,57.15,40,2,49.04,51,57,57.07,42,250,56.51,34,250,56.51,43,4,44.67,43,49,51.36,48,49,83.12,41,250,47.8,46,44,49.5,50,51,54.19,36,5,85.06,71,3,50.5,50,52,70.41,28,250,117.92,86,250,69.21,31,250,49.36,45,46,33.66,26,7,39.87,39,48,81.25,64,7,0.947,0.03426 +25,VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,50.36,50,49,62.09,30,250,26.69,22,3,43.77,45,46,53.11,51,49,53.14,32,3,79.49,40,250,49.61,40,15,35.91,29,2,67.21,66,85,55.84,57,57,44.89,46,46,27.1,27,3,39.95,29,4,38.64,29,9,45.03,46,49,38.53,20,11,63.11,43,250,30.31,30,4,102.37,88,250,113.6,85,250,45.24,46,47,103.94,64,250,42.18,42,45,88.47,73,3,83.42,27,250,43.1,44,45,52.34,43,44,70.95,30,250,161.81,249,250,177.9,196,250,98.22,58,250,44.8,46,47,48.32,49,55,46.22,42,45,43.78,36,37,58.12,36,3,73.95,41,250,39.08,37,46,52.22,42,250,28.2,27,25,33.74,32,21,36.75,40,40,45.94,46,47,34.31,34,38,32.19,32,21,33.66,28,3,40.67,22,17,39.32,43,50,37.13,20,2,44.88,35,3,104.89,90,250,66.23,57,2,38.31,40,44,47.46,48,49,37.2,39,43,30.46,29,25,75.88,31,250,46.29,49,49,71.06,56,2,34.31,19,4,40.95,42,44,137.88,164,250,64.41,26,2,48.59,49,50,63.9,28,250,3.2,3,2,111.34,61,250,56.88,40,250,39.94,29,13,106.12,64,250,43.94,26,2,85.66,36,250,45.45,46,47,33.21,20,17,81.58,69,2,32.0,32,32,52.81,19,4,109.76,71,250,45.24,46,47,73.34,39,2,120.4,111,250,100.19,62,250,47.69,48,48,37.85,39,45,84.76,57,250,47.28,48,48,45.43,46,48,55.93,32,2,37.89,37,5,115.73,134,2,44.98,46,46,82.71,82,250,47.51,47,47,54.96,33,2,46.69,29,5,98.19,95,79,32.39,18,3,45.18,46,46,47.03,21,8,89.47,69,3,44.74,45,46,62.37,37,11,56.12,53,46,43.51,44,46,33.47,35,34,41.42,41,3,47.05,45,46,44.54,45,46,82.28,35,250,42.2,44,45,58.13,48,42,46.64,46,47,62.72,54,30,49.09,49,49,44.98,45,47,44.4,46,47,98.1,101,4,45.0,45,46,45.14,45,45,45.66,43,44,66.88,35,2,119.6,90,250,47.29,47,48,46.06,45,52,50.16,50,50,45.19,46,46,45.36,46,47,31.21,19,3,50.53,51,50,44.91,46,47,47.28,46,46,44.9,46,47,43.83,43,45,50.26,46,45,38.68,41,46,47.97,49,49,224.88,250,250,43.31,44,43,45.34,46,48,41.05,42,45,45.86,46,47,4.0,4,2,46.95,47,47,47.01,48,48,44.46,45,46,43.15,44,44,45.46,44,43,82.19,45,250,46.14,44,45,44.5,46,46,43.06,38,44,45.04,44,44,44.42,46,49,93.97,41,250,47.64,48,48,50.92,44,46,45.03,45,46,48.19,47,49,45.29,45,45,45.56,43,42,45.41,43,44,70.15,36,250,43.58,44,43,40.43,42,45,48.25,45,45,48.74,49,49,45.37,43,46,80.81,58,250,60.0,41,250,81.55,59,250,37.61,30,3,46.39,40,40,47.23,48,47,42.6,41,46,93.38,46,250,97.22,111,116,45.71,47,47,69.8,39,250,48.61,35,2,46.44,46,51,54.93,41,2,51.43,30,250,50.25,25,2,41.38,40,44,45.72,44,45,85.2,41,250,45.1,43,42,46.28,47,48,59.94,45,7,84.4,68,250,47.04,47,49,55.38,29,250,95.25,70,250,55.1,36,10,44.9,41,38,33.24,23,3,36.95,33,2,81.23,59,250,0.946,0.0343 +26,VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,70.03,70,70,74.56,34,250,26.94,25,26,56.4,59,67,73.55,72,64,73.73,45,2,99.94,88,3,63.26,52,4,49.16,40,5,90.18,93,250,78.05,80,78,60.27,62,63,38.02,38,3,50.0,39,2,37.67,30,4,61.54,64,66,47.63,29,11,77.54,56,250,47.29,42,2,124.67,113,250,123.24,82,250,61.41,63,64,93.56,62,250,55.55,56,59,105.74,67,250,94.33,33,250,57.54,60,62,70.66,58,58,74.18,38,250,164.19,249,250,201.9,250,250,100.5,54,250,60.12,62,63,67.71,68,68,60.38,56,58,53.94,47,52,58.99,43,3,79.74,54,250,47.95,47,57,63.87,55,250,35.74,34,36,46.29,44,34,50.97,56,64,61.48,63,64,46.63,46,37,39.18,38,28,44.98,34,28,39.13,28,4,53.22,58,64,64.36,36,6,54.93,45,4,97.28,84,250,59.37,45,2,48.08,51,62,65.11,66,66,48.75,52,56,39.72,38,26,79.2,32,250,64.86,68,77,72.8,46,29,37.6,25,2,54.37,58,62,143.76,175,250,80.33,37,2,66.54,67,67,76.99,44,250,5.79,5,2,117.2,69,250,69.44,53,250,58.61,38,20,120.22,122,250,50.65,32,32,92.28,45,250,60.93,62,63,59.0,55,55,61.07,49,14,42.6,42,42,64.82,35,3,131.52,125,250,61.14,63,64,88.77,51,250,146.67,161,250,108.8,68,250,64.95,66,66,46.53,48,51,108.8,86,250,64.38,65,66,60.87,62,64,88.43,46,250,52.7,51,69,121.79,146,10,60.53,62,63,97.42,87,250,63.25,63,62,54.45,20,3,62.99,38,2,118.71,112,250,39.82,28,5,60.91,62,63,47.27,28,22,149.49,168,250,60.36,61,61,58.94,47,4,74.52,69,59,58.53,60,62,46.93,48,27,40.79,42,23,61.79,61,63,59.3,61,62,92.05,45,250,56.15,59,60,66.02,65,64,62.9,62,63,63.91,52,12,67.53,68,68,60.39,61,61,60.51,62,65,101.62,106,6,60.57,62,63,59.53,59,59,58.69,57,59,78.94,28,5,129.78,122,250,63.86,64,63,56.79,53,5,69.83,70,70,60.86,62,64,59.93,61,60,39.95,24,2,71.02,71,68,60.2,62,63,62.64,63,65,61.1,62,65,57.5,58,62,65.03,62,64,49.92,54,53,66.2,67,66,229.1,250,250,56.65,58,59,60.98,63,65,53.67,56,56,62.43,63,61,5.63,4,4,63.93,64,64,63.97,65,65,59.53,61,61,57.55,59,60,59.25,58,60,90.74,47,250,59.58,59,62,58.96,61,63,55.99,51,62,58.8,58,59,60.05,62,64,103.24,50,250,64.83,66,66,62.45,58,61,59.89,61,61,65.99,64,66,58.8,61,63,63.6,59,59,56.02,56,57,74.32,40,250,59.12,60,60,55.87,58,62,63.12,62,63,66.84,67,67,59.91,59,62,97.81,82,250,65.05,50,250,107.58,99,250,45.48,38,2,60.18,55,60,65.28,67,69,58.03,58,59,99.76,52,250,62.5,48,28,61.57,63,64,76.63,47,250,76.2,47,250,62.4,64,66,77.43,57,250,60.36,38,250,70.67,55,2,52.84,52,56,61.46,58,59,91.5,54,250,59.53,57,57,62.83,64,65,70.45,51,2,95.74,75,250,62.62,62,64,71.55,30,250,131.51,124,250,72.19,40,250,63.95,56,60,43.94,39,6,42.77,41,6,112.52,87,250,0.947,0.03439 +27,VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,62.65,62,62,70.16,39,250,27.55,24,4,50.73,52,53,66.37,65,67,70.08,41,250,63.95,55,8,59.95,38,3,51.34,41,28,101.25,104,250,70.18,70,71,54.25,55,56,35.09,36,2,46.98,41,2,35.47,22,5,56.11,58,59,46.68,27,250,71.51,49,250,42.48,40,26,95.98,80,250,123.51,79,250,55.17,56,58,114.54,70,250,48.24,49,53,119.57,55,250,84.44,29,250,52.26,54,54,49.14,49,54,70.6,35,250,117.75,139,61,201.74,245,250,108.62,80,250,54.0,55,56,60.76,60,57,52.58,50,49,51.22,45,46,36.16,28,7,78.6,47,250,41.37,40,44,58.94,50,57,33.09,33,28,40.75,38,26,48.25,53,56,54.96,56,57,40.86,40,34,36.89,36,33,36.83,33,3,59.97,51,2,47.9,53,54,41.77,29,4,49.8,41,61,105.82,92,250,70.79,57,3,44.52,47,51,58.1,59,59,42.71,46,49,36.67,34,29,79.19,31,250,54.69,60,66,93.2,77,250,42.38,27,10,47.36,50,52,145.99,193,250,72.03,34,11,59.93,60,61,72.35,40,250,21.98,18,2,121.62,65,250,63.5,45,250,50.77,37,11,108.88,95,250,51.91,28,13,85.36,49,250,54.7,55,57,37.31,24,24,71.34,63,5,40.53,39,38,56.01,29,6,127.39,100,250,55.17,57,58,90.79,54,250,153.01,188,250,109.83,58,250,58.28,59,59,42.42,43,43,99.3,72,250,57.73,58,58,54.51,55,57,63.24,36,250,39.9,44,7,107.49,133,4,54.02,55,56,98.44,85,250,56.94,56,56,62.31,44,2,50.98,31,3,72.82,62,2,30.01,21,6,54.75,56,56,60.31,44,12,150.26,156,250,53.61,54,55,91.8,53,250,66.74,61,55,52.42,53,54,59.82,67,2,37.2,37,37,56.24,55,56,53.72,54,55,92.43,44,250,50.81,53,55,97.01,57,50,56.14,56,55,62.48,49,3,60.27,60,60,53.82,55,55,54.32,55,55,78.28,73,9,53.46,54,55,52.81,53,53,52.97,51,51,79.74,41,3,123.34,125,250,57.57,58,57,54.45,49,2,62.57,62,61,54.21,55,56,53.42,54,54,50.39,34,7,63.05,63,62,53.65,55,57,56.84,56,57,53.7,55,56,51.91,52,53,59.87,55,54,44.06,49,53,58.75,60,60,231.15,250,250,50.46,51,52,55.2,56,58,48.48,50,54,55.96,56,58,4.05,4,4,57.17,57,58,57.48,58,59,52.58,53,53,51.88,53,53,53.08,52,53,88.41,54,250,54.5,53,55,52.05,54,54,49.07,44,50,52.26,52,50,53.92,55,57,88.22,54,250,58.08,58,59,58.76,53,57,55.04,55,58,57.99,57,57,55.24,55,54,53.17,51,52,54.97,51,55,79.88,43,250,52.24,53,50,49.56,52,52,56.11,53,53,59.74,60,60,52.62,52,52,81.06,59,250,68.26,49,250,91.9,64,250,42.26,31,2,55.72,48,250,59.88,62,68,51.39,50,49,82.07,37,250,60.28,49,43,55.13,56,58,75.38,39,250,53.47,37,250,55.86,56,60,65.28,45,250,58.71,34,250,53.4,31,2,46.83,46,50,55.66,53,56,78.21,44,250,51.56,50,51,56.32,57,58,61.1,51,5,84.67,62,250,54.31,54,53,60.44,34,250,122.47,108,250,71.8,46,250,59.76,52,48,28.3,24,4,42.76,42,47,94.8,88,5,0.948,0.03432 +28,VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,67.23,68,66,77.4,42,250,32.86,30,32,59.59,60,61,68.58,67,59,65.36,48,250,93.51,72,250,79.12,75,4,49.01,39,3,79.66,67,250,75.98,77,75,59.7,61,61,39.29,39,2,52.36,42,3,55.15,31,3,61.73,64,67,45.74,25,250,83.34,57,250,52.66,40,4,129.43,135,250,128.78,87,250,60.21,62,64,91.57,56,250,55.79,55,56,122.96,106,250,95.52,44,250,57.12,59,61,56.88,55,55,77.82,40,250,168.86,249,250,182.81,219,250,107.62,69,250,59.37,61,63,63.77,64,63,57.45,55,56,55.19,49,250,65.06,48,3,79.55,54,250,46.75,45,48,65.02,57,60,36.43,35,26,45.3,43,37,52.16,56,62,60.53,62,63,46.78,47,61,41.11,40,27,54.27,40,3,54.65,45,8,50.27,55,59,51.43,32,2,57.79,47,6,126.69,104,250,67.85,56,249,50.1,53,59,63.36,65,65,51.98,56,63,40.1,38,24,83.96,41,250,63.52,67,68,59.79,44,3,48.59,33,5,52.92,55,56,139.94,156,250,78.35,18,2,64.62,65,65,79.96,43,250,5.01,4,3,127.47,107,250,79.35,59,250,64.41,32,250,120.6,103,250,59.16,34,250,92.19,61,250,59.99,61,62,64.88,57,58,86.17,54,11,45.24,44,27,62.15,29,3,127.83,93,250,60.35,62,63,97.02,54,250,137.9,146,250,108.72,53,250,63.53,64,65,49.6,51,58,104.96,82,250,62.97,64,64,60.07,61,64,70.45,49,8,41.27,48,2,139.49,186,250,59.77,61,62,122.49,130,250,62.54,62,64,69.33,45,4,65.85,45,5,139.4,133,250,36.03,22,2,60.11,62,63,68.05,41,17,125.99,122,250,59.61,60,61,72.09,40,2,73.47,68,54,58.02,60,61,55.58,61,80,47.47,50,22,61.62,60,61,58.44,60,61,91.67,48,250,55.69,58,60,78.48,67,67,62.04,62,62,78.48,61,3,65.63,66,66,59.62,61,60,59.18,61,63,112.35,121,2,59.65,60,62,58.79,59,59,59.07,57,60,102.41,73,250,123.65,112,250,63.0,63,64,61.14,60,3,66.99,68,67,60.33,62,63,59.73,60,63,48.05,28,2,67.84,69,69,59.43,61,63,62.85,62,62,59.82,61,63,57.45,58,61,65.81,61,62,49.17,55,58,63.99,65,65,223.86,250,250,57.03,58,60,60.58,62,62,53.99,56,60,61.35,62,65,4.89,5,5,62.58,62,62,62.83,64,64,59.17,60,61,57.92,59,60,59.02,58,58,89.61,48,250,60.0,59,59,58.89,61,61,57.37,53,58,57.73,58,58,60.09,62,64,94.06,51,250,63.7,64,65,62.25,57,250,59.61,60,61,68.38,65,65,60.33,61,60,59.14,57,58,58.12,58,59,82.53,47,250,58.28,59,60,55.52,58,60,62.79,61,61,65.09,66,65,57.36,59,60,102.13,86,250,69.38,53,250,117.91,104,250,48.78,41,3,63.31,56,250,63.1,65,71,57.65,56,60,102.7,51,250,103.08,107,116,60.58,62,63,84.02,45,250,57.42,36,250,61.52,62,70,78.96,65,6,68.06,43,250,72.03,55,5,55.27,54,58,61.54,57,54,93.64,56,250,57.81,56,58,61.62,63,65,81.35,60,250,96.15,72,250,61.15,61,61,68.77,45,250,133.33,136,250,76.24,48,250,60.39,55,57,36.24,34,3,45.92,40,57,117.93,88,250,0.948,0.0344 +29,VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,60.81,61,60,72.23,36,250,28.84,22,3,53.21,53,56,65.6,64,58,64.13,44,250,101.1,84,250,57.09,41,39,40.39,31,21,76.19,71,13,67.9,67,65,53.04,54,54,34.9,35,2,46.74,38,2,47.67,35,4,56.52,58,59,57.98,32,250,73.43,46,250,39.72,33,3,112.32,99,250,120.86,70,250,53.6,55,57,122.35,83,250,47.34,46,50,117.01,104,250,79.73,31,250,51.62,53,53,65.5,51,250,75.9,36,250,129.16,150,51,152.05,146,250,110.57,75,250,53.0,54,56,59.63,58,50,52.87,49,49,50.74,43,45,40.15,31,6,66.75,50,250,44.66,42,47,58.19,48,250,34.22,33,31,40.02,38,23,46.27,50,53,54.07,55,55,39.55,40,36,36.35,36,32,49.17,34,2,50.93,32,250,46.09,50,58,44.53,26,2,53.42,42,27,113.34,106,250,55.05,35,250,42.71,44,48,56.68,58,58,44.3,47,51,35.8,33,29,77.76,32,250,56.24,58,60,54.53,41,8,41.02,25,2,47.91,50,52,140.44,138,250,65.72,21,2,58.14,59,58,74.74,38,250,5.98,4,2,119.65,96,250,69.32,52,250,57.71,33,20,118.45,117,250,57.01,35,2,103.94,57,250,53.48,54,55,54.96,51,52,79.78,62,3,38.66,38,35,58.54,30,250,123.5,91,250,53.76,55,56,80.51,44,250,187.88,236,250,109.24,59,250,56.85,57,57,41.53,41,47,102.21,77,250,56.29,57,58,53.5,54,56,69.5,37,250,52.32,47,2,143.34,186,250,53.42,54,55,108.03,104,250,55.75,55,56,55.37,22,2,80.59,47,250,87.63,63,250,29.48,20,2,53.25,54,54,53.29,28,9,113.88,75,250,52.98,53,55,75.41,43,12,64.63,57,54,51.73,53,54,54.28,60,7,42.03,43,58,55.33,53,53,52.63,53,55,91.3,42,250,49.57,52,54,30.83,28,27,55.13,55,55,69.41,53,2,58.57,59,59,53.05,54,54,52.71,54,54,90.2,100,10,53.45,54,55,52.19,52,52,52.69,51,51,82.72,43,250,145.74,182,250,56.2,56,57,51.4,47,2,61.03,61,62,53.95,55,57,52.98,53,53,44.15,27,3,61.84,62,61,52.63,54,55,55.89,55,55,53.04,54,55,50.84,51,52,59.58,54,54,48.34,48,48,57.47,58,60,232.11,250,250,50.4,51,52,53.56,55,55,48.07,49,52,54.67,55,56,3.31,3,4,55.71,56,54,55.95,57,57,52.18,53,55,50.96,52,54,52.83,51,50,81.38,41,250,52.99,52,53,51.31,53,55,50.25,46,54,52.21,52,51,53.01,55,53,103.47,50,250,56.59,57,57,57.82,52,52,55.63,55,55,57.07,57,59,53.02,53,53,54.39,51,53,56.76,51,54,74.51,37,250,51.9,53,52,48.83,52,55,54.35,52,53,58.1,58,58,52.98,51,50,93.99,76,250,64.87,44,250,108.3,92,250,43.09,36,3,55.73,49,250,58.42,60,64,52.4,51,53,104.63,52,250,63.72,49,40,54.25,55,56,74.64,40,250,62.97,39,3,55.06,55,60,59.63,44,2,62.09,37,250,57.97,49,3,49.83,48,50,55.22,51,52,88.79,50,250,53.59,51,51,54.9,56,57,70.08,45,250,75.58,57,250,54.85,54,57,74.34,38,250,129.31,116,250,75.11,38,250,55.46,50,49,39.22,28,3,43.4,40,53,98.31,61,250,0.948,0.03423 +30,VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,66.67,67,66,69.96,41,250,26.84,19,13,59.47,61,63,70.89,71,72,68.56,48,250,87.54,47,250,49.31,37,2,54.47,47,33,87.5,97,250,73.96,75,75,59.05,60,61,39.9,45,2,50.14,44,3,55.88,27,5,61.34,63,63,51.15,31,2,75.87,56,250,45.35,41,36,129.44,131,250,121.5,73,250,59.82,61,63,117.92,85,250,57.83,56,60,110.41,92,250,85.85,43,250,57.76,60,64,62.29,55,60,78.07,39,250,161.28,228,250,226.86,250,250,112.65,73,250,58.83,61,61,64.61,65,67,57.51,55,57,56.08,50,250,42.8,38,11,76.03,47,250,47.47,46,50,62.24,53,250,37.98,38,40,44.28,44,25,52.89,57,60,59.94,61,62,44.2,43,30,41.61,39,33,50.15,37,8,40.89,28,32,51.12,56,60,54.27,24,2,57.4,48,3,112.43,96,250,76.98,65,250,50.69,54,60,62.88,64,65,48.11,52,57,37.72,37,24,78.73,37,250,63.06,66,70,61.94,53,250,43.47,25,2,51.83,54,56,146.9,221,250,70.4,29,250,63.88,65,66,75.96,42,250,17.76,19,2,121.42,109,250,70.74,55,250,63.93,47,15,121.25,109,250,60.92,40,250,95.84,48,250,59.75,61,63,63.03,55,52,114.66,108,250,41.71,42,42,62.32,34,3,118.66,83,250,59.78,62,63,86.27,55,250,151.84,195,250,109.76,57,250,62.9,64,63,51.79,54,54,105.16,87,250,62.48,63,64,59.74,61,62,69.92,40,250,42.0,39,3,145.88,209,250,59.13,60,62,96.16,82,250,61.63,61,63,60.77,40,250,76.98,43,250,121.79,106,250,47.62,38,2,59.45,61,61,53.99,31,3,130.19,142,250,59.68,60,61,85.52,44,250,72.9,65,64,57.43,59,60,30.07,32,35,58.84,55,2,61.07,60,60,57.87,59,60,90.63,45,250,55.72,58,62,37.93,36,42,61.68,61,60,70.38,58,99,64.93,65,65,59.32,60,63,58.72,60,63,117.28,138,250,59.67,61,62,59.17,59,58,58.3,57,60,77.04,39,5,127.39,84,250,62.0,62,63,57.66,59,63,66.65,67,67,59.8,61,62,58.84,59,59,41.98,29,5,67.02,67,66,58.89,61,62,61.6,61,62,59.68,61,60,56.76,57,59,64.47,60,60,49.33,55,60,64.24,66,68,227.66,250,250,56.47,57,58,59.64,61,63,52.2,54,58,60.5,61,63,6.24,7,8,61.88,62,63,62.05,63,63,58.72,60,59,57.36,58,60,58.94,58,58,89.03,49,250,59.7,58,58,57.71,59,59,54.66,51,63,58.35,58,57,59.12,61,62,101.94,46,250,62.77,63,64,63.33,58,250,58.98,60,60,65.73,63,64,58.62,60,62,62.07,57,57,58.76,58,62,78.33,39,250,58.33,59,59,53.24,57,60,61.13,60,65,64.28,65,65,57.36,57,59,96.18,72,250,64.76,45,250,94.7,71,250,49.04,42,2,60.54,54,250,62.41,63,75,57.09,56,58,80.12,43,250,97.61,112,5,60.16,62,63,77.48,44,250,61.01,38,250,61.95,63,67,67.14,51,250,61.57,38,250,65.19,51,2,52.33,52,60,61.5,57,55,95.1,58,250,59.14,57,57,61.13,62,64,71.32,56,4,105.91,71,250,61.18,61,58,59.66,26,250,124.34,117,250,88.05,46,250,58.72,56,55,30.56,29,2,49.62,47,3,103.41,87,250,0.947,0.03439 +31,VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,73.51,73,73,80.04,51,250,21.87,17,6,58.65,61,66,76.35,75,74,72.94,50,250,78.99,80,6,63.92,44,26,51.53,43,2,93.51,90,250,84.99,85,77,62.48,64,64,39.38,41,4,51.51,41,2,50.12,40,2,66.11,68,73,43.53,27,250,82.37,56,250,42.86,34,5,119.22,100,250,128.03,89,250,63.95,65,67,112.29,72,250,53.78,54,64,81.18,33,11,74.28,27,250,60.15,62,61,68.62,58,250,78.17,41,250,142.25,167,250,134.07,136,250,106.34,61,250,62.56,64,64,71.37,72,71,59.16,58,59,54.96,48,250,82.48,49,250,83.03,53,250,48.65,47,52,63.95,55,250,40.39,41,44,48.38,46,36,51.89,57,59,64.06,65,66,48.28,50,50,43.53,42,30,45.82,37,20,55.56,34,250,57.59,63,70,55.07,26,5,62.37,50,250,105.96,88,250,109.4,105,250,52.27,57,63,67.59,69,69,53.02,57,65,40.67,39,25,83.67,32,250,68.28,71,72,68.47,54,35,46.91,33,38,54.36,57,57,141.96,185,250,85.96,36,250,70.4,71,71,78.32,44,250,5.44,5,2,124.19,67,250,72.95,57,250,70.44,44,250,127.87,130,250,62.27,35,250,112.07,80,250,62.97,64,65,43.63,27,30,86.56,78,5,48.65,49,53,66.13,35,250,127.74,94,250,63.27,65,66,88.55,55,250,138.81,142,250,107.78,60,250,67.82,68,68,47.76,51,58,107.54,97,250,67.11,68,68,63.15,64,66,73.37,39,250,53.27,50,49,138.49,175,250,62.32,63,65,102.44,88,250,65.36,65,65,59.76,39,4,64.22,43,6,111.82,99,92,32.83,24,7,63.43,65,66,66.08,33,21,129.55,119,250,61.45,62,62,56.66,44,13,74.68,68,55,60.56,62,65,49.52,37,19,47.23,48,47,63.81,63,63,61.59,63,64,93.24,44,250,58.42,61,63,41.96,40,22,64.55,64,64,69.87,59,4,70.18,70,70,62.0,63,64,62.1,64,66,140.43,169,250,62.22,63,66,60.21,60,62,61.86,59,61,79.86,28,250,132.88,152,250,66.81,67,70,64.09,57,4,73.06,73,73,63.27,64,65,61.35,62,64,30.53,15,5,74.43,74,72,62.79,64,66,64.69,64,67,62.29,63,64,59.3,60,60,65.88,62,63,53.12,56,58,67.99,69,70,234.72,250,250,57.28,58,59,63.18,64,65,56.25,58,62,65.08,65,63,2.84,2,2,65.31,65,66,66.97,68,69,60.95,62,64,59.86,60,61,60.68,59,63,92.41,51,250,61.87,60,61,59.73,62,63,61.87,58,60,59.47,59,56,62.09,64,67,107.13,50,250,67.7,68,69,65.83,61,66,62.8,62,61,68.62,67,68,59.91,62,60,62.7,58,58,60.27,58,59,71.63,39,250,59.57,60,60,56.11,59,64,63.6,62,64,69.63,70,70,59.69,58,59,102.77,81,250,73.88,54,250,100.51,75,250,55.7,38,3,62.08,57,250,69.24,70,64,59.56,59,62,113.21,48,250,125.1,148,250,64.16,66,66,81.24,49,250,61.72,36,250,65.68,66,65,71.49,46,250,63.08,39,250,60.37,34,4,53.78,53,56,63.06,59,58,93.69,58,250,58.44,56,57,65.43,67,67,70.82,61,4,85.11,64,250,64.13,64,62,83.92,65,250,127.42,116,250,79.71,45,250,61.33,58,59,43.7,37,6,49.99,48,59,111.79,113,250,0.947,0.03445 +32,VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,58.71,58,56,73.33,30,250,26.4,20,8,48.25,49,56,62.26,60,59,62.7,40,250,85.65,61,250,71.59,67,2,38.53,30,23,84.49,88,250,67.54,66,67,49.35,50,51,31.17,31,3,50.36,46,2,51.23,30,9,51.01,54,58,47.09,26,250,69.0,46,250,41.78,36,4,93.06,79,250,124.89,91,250,50.13,51,52,112.37,69,250,44.87,43,46,108.4,71,250,95.88,30,250,47.66,49,51,46.58,44,44,69.8,32,250,133.97,167,250,212.38,250,250,92.14,47,250,49.39,50,51,55.22,54,49,48.84,47,51,46.23,38,40,35.59,32,43,56.25,37,37,38.95,36,42,54.72,44,45,30.68,29,28,37.36,36,27,41.1,45,45,50.53,51,52,39.06,39,30,36.82,37,26,42.14,29,7,41.16,31,27,43.87,47,48,35.85,22,5,45.99,36,20,112.53,99,250,63.57,51,250,40.49,41,45,53.38,54,54,40.44,43,46,32.84,31,20,77.85,33,250,48.39,52,54,57.23,35,2,36.89,23,3,42.19,45,47,136.62,138,250,71.54,28,7,55.72,56,55,75.54,38,250,12.61,7,2,109.68,99,250,59.57,42,250,48.16,34,17,105.29,94,250,49.9,30,9,94.47,64,250,49.72,50,50,40.58,28,11,80.15,66,9,37.72,38,39,55.2,26,8,115.04,75,250,50.53,52,52,76.58,44,250,142.82,155,250,102.23,53,250,53.45,54,53,38.42,39,42,95.05,63,250,53.12,54,54,49.94,50,51,67.55,38,250,36.69,35,2,131.32,160,11,49.31,50,52,85.16,70,250,51.98,51,51,54.7,32,3,53.02,33,5,81.75,65,47,27.42,12,2,49.99,51,50,57.23,34,24,141.22,148,250,48.81,49,49,47.39,41,12,59.17,53,46,47.59,48,49,28.07,30,36,34.87,37,46,50.95,49,49,48.94,49,49,88.77,40,250,45.8,48,50,27.37,24,21,51.33,51,50,59.23,43,3,55.63,56,55,49.25,50,51,49.52,51,51,148.04,186,250,49.15,49,50,47.93,47,48,48.44,46,47,70.79,56,8,131.29,143,250,52.62,53,54,46.44,42,5,58.61,58,56,49.43,50,51,48.67,49,48,33.72,18,2,59.37,59,58,49.1,50,51,51.93,51,51,48.96,50,50,47.46,47,48,54.4,50,51,39.01,42,41,54.61,55,57,228.78,250,250,45.39,46,47,50.33,51,53,44.08,45,49,50.96,51,51,2.5,2,2,51.68,51,51,52.74,53,54,48.1,48,49,46.76,47,50,48.55,46,45,83.93,44,250,48.74,47,50,47.6,49,48,45.66,40,51,46.77,46,46,49.54,51,53,84.67,45,250,53.4,54,53,54.98,48,50,50.46,50,53,56.23,53,54,46.85,48,48,49.21,45,48,48.58,45,48,69.18,38,250,46.82,47,46,44.0,46,47,50.59,48,47,55.08,55,55,47.67,46,48,81.73,60,250,65.56,43,250,99.41,75,250,41.13,33,2,53.41,44,45,58.11,59,59,47.84,46,48,90.77,41,250,38.37,25,20,50.73,52,53,74.2,38,250,53.57,39,2,52.69,51,47,51.0,35,3,56.47,33,250,64.0,49,2,44.2,42,45,48.58,46,47,85.14,43,250,46.3,43,43,51.56,52,52,60.55,40,2,81.22,57,2,50.65,51,56,62.42,37,250,104.33,93,250,70.0,41,3,50.23,47,46,30.73,28,3,39.1,34,5,78.67,60,28,0.948,0.03424 +33,VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,35.0,35,34,55.47,23,250,16.85,12,3,29.14,28,27,37.35,37,38,45.18,23,7,32.31,30,3,38.85,26,17,25.19,19,6,58.59,57,68,38.2,38,39,30.12,30,30,21.88,21,2,31.38,21,2,32.93,21,3,31.3,32,33,40.43,16,13,54.64,32,28,26.29,24,24,82.24,71,250,82.81,47,250,30.78,31,32,89.8,46,250,29.2,26,27,54.94,32,5,62.09,15,250,27.77,28,26,27.79,26,27,50.9,22,10,120.05,157,22,185.35,244,250,81.83,37,250,30.56,31,31,35.06,35,34,32.16,28,30,29.96,19,20,23.63,21,2,55.56,29,250,27.67,24,26,41.47,28,29,23.02,22,18,24.53,23,12,26.25,27,29,31.46,31,32,23.41,23,19,22.57,22,28,25.04,19,13,26.76,17,16,29.22,31,33,30.57,22,5,33.1,26,29,82.62,63,250,46.69,32,4,26.54,28,30,31.71,32,32,24.88,26,27,21.43,21,14,75.51,23,250,32.82,35,37,40.27,29,16,30.64,17,3,27.08,27,27,128.32,148,250,52.9,15,6,34.83,35,35,58.51,23,7,8.71,5,2,79.65,37,250,48.65,32,250,30.06,20,6,80.36,71,250,34.92,17,6,81.44,28,250,31.23,31,32,32.21,16,16,71.52,56,7,22.49,22,24,51.41,21,3,100.44,64,250,31.17,32,32,55.48,28,3,98.49,97,14,96.82,40,250,33.51,34,34,27.57,27,23,70.18,49,7,32.3,32,32,30.81,30,31,43.28,24,9,26.04,24,28,112.0,153,5,30.3,30,31,63.75,49,250,32.54,31,31,43.32,27,2,43.45,24,5,62.29,57,27,22.37,15,2,30.77,31,31,34.75,22,9,115.04,122,2,29.53,29,30,38.12,30,20,41.87,38,32,29.63,29,29,19.58,20,18,23.36,23,12,32.73,30,31,30.5,30,31,73.24,24,250,28.67,29,29,39.12,36,36,31.87,31,31,40.62,38,21,33.45,33,33,30.02,30,31,30.94,31,32,43.07,42,12,29.34,29,30,32.77,32,32,31.47,28,30,44.75,35,3,103.48,67,250,32.69,32,33,30.39,25,2,35.66,35,36,30.89,31,31,30.39,30,30,25.87,16,2,34.69,35,34,30.72,31,32,30.6,29,27,28.75,29,29,29.46,28,29,35.73,30,31,23.55,24,26,30.65,31,32,235.66,250,250,28.65,29,29,30.26,30,30,29.79,30,30,30.96,30,30,3.19,3,2,30.1,30,28,32.62,33,33,28.81,29,30,28.55,28,28,31.69,29,29,70.13,31,250,29.54,28,29,28.75,29,30,30.96,26,32,29.95,29,29,29.48,30,31,67.36,34,2,32.91,33,33,36.32,29,29,28.54,27,26,34.07,30,33,28.95,29,31,30.94,29,27,33.31,28,30,48.78,26,10,27.39,28,28,26.56,27,27,30.77,28,29,33.36,33,33,29.8,27,26,61.45,43,250,43.67,28,29,61.66,39,3,30.42,24,21,34.33,26,26,33.43,33,30,31.79,29,32,71.31,36,250,57.42,58,60,31.09,31,32,59.29,27,3,42.47,24,4,32.67,29,29,42.28,28,3,42.8,21,250,42.85,32,2,29.9,26,29,30.75,27,29,62.06,28,250,31.34,28,28,31.26,31,31,38.73,30,6,58.43,46,22,31.56,31,33,58.48,17,250,80.16,69,2,47.35,27,5,34.46,30,29,25.16,22,14,25.61,21,19,44.29,35,34,0.946,0.03412 +34,VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,67.22,66,65,69.81,32,250,18.59,12,2,51.3,50,53,71.78,69,68,63.41,40,250,55.2,33,4,73.02,63,4,43.27,36,15,87.02,88,249,79.46,76,72,53.98,54,54,37.06,39,4,47.02,38,2,52.89,41,3,57.73,59,58,44.71,24,250,72.39,45,250,43.67,42,2,111.29,101,250,120.51,62,250,55.88,56,57,100.34,65,250,48.21,43,42,87.63,37,4,77.23,28,250,50.88,52,51,48.54,46,50,72.17,36,250,160.72,234,250,227.19,250,250,104.44,60,250,54.47,55,56,68.34,66,66,54.12,51,56,47.98,38,40,39.86,36,9,71.71,42,250,40.07,37,41,56.25,45,47,38.1,37,26,43.62,44,32,43.55,47,53,56.07,56,56,43.06,44,49,38.37,38,25,41.71,32,4,52.47,35,250,48.14,52,58,42.18,23,5,54.09,42,3,108.21,91,250,67.62,52,250,42.87,45,52,59.54,60,61,41.31,44,46,34.74,33,27,79.74,32,250,58.27,63,72,123.71,115,250,43.94,31,27,44.86,47,46,139.51,157,250,71.55,30,250,63.93,64,63,70.38,34,250,4.43,4,4,105.28,56,250,71.2,50,250,48.78,33,11,111.03,88,250,57.88,28,10,98.67,65,250,54.11,54,55,55.6,47,250,94.18,78,250,42.01,41,37,60.95,25,250,120.58,80,250,55.7,57,57,82.9,44,250,155.46,180,250,108.09,53,250,59.69,60,60,44.5,45,49,100.31,70,250,58.94,59,59,54.55,54,54,89.18,44,250,38.98,39,2,127.22,158,6,53.63,54,54,90.95,76,250,56.13,55,53,76.79,64,2,57.35,37,4,77.09,71,2,35.54,16,2,54.91,55,57,53.02,29,9,145.59,176,250,52.12,52,51,79.84,50,250,64.39,57,56,52.18,52,50,31.43,33,39,44.4,44,2,55.26,53,54,52.62,53,53,93.14,44,250,50.31,52,53,55.06,50,49,55.27,54,53,63.16,54,36,61.85,62,61,52.79,53,52,54.16,55,57,91.81,93,15,52.56,52,54,50.31,50,48,51.44,48,49,48.57,30,8,132.14,154,250,58.67,59,60,52.67,45,3,66.77,65,64,54.18,55,55,51.23,51,50,40.42,23,3,67.37,66,61,54.62,55,56,56.82,56,58,52.76,53,53,50.31,49,51,58.12,54,54,42.06,45,51,60.06,60,58,226.35,250,250,46.79,47,47,55.4,56,56,48.32,49,51,55.7,55,57,3.2,2,2,55.85,55,53,58.97,59,59,50.56,51,50,48.6,48,48,49.92,47,48,90.75,55,250,52.67,50,48,50.38,52,52,50.99,45,45,49.17,48,49,53.68,54,56,110.0,61,250,59.45,60,60,58.12,52,54,53.16,52,53,60.33,56,55,53.13,53,55,52.48,47,45,50.7,48,48,74.43,42,250,49.82,50,52,46.53,48,47,54.26,52,50,61.45,61,61,50.07,48,49,89.49,70,250,66.29,45,250,97.24,67,250,44.58,37,2,55.27,46,250,62.98,62,49,50.75,48,52,109.49,64,250,66.55,39,2,56.18,57,57,71.24,36,250,62.45,43,250,54.98,54,53,68.77,51,250,52.46,31,250,60.95,46,4,45.82,42,46,51.79,48,51,83.84,49,250,47.71,45,48,56.99,57,58,62.47,42,2,92.89,69,250,53.6,52,52,61.1,28,250,118.29,98,250,74.62,49,250,55.93,47,50,41.89,39,3,40.87,38,45,91.12,86,250,0.947,0.03442 +35,VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,65.78,66,64,69.47,30,250,28.23,22,6,55.0,55,59,70.07,69,66,76.5,57,250,84.94,48,250,49.85,38,29,50.88,44,24,81.48,78,250,72.16,70,69,55.96,57,58,34.45,35,2,46.4,36,2,39.9,28,17,59.45,61,61,44.52,27,250,74.75,51,250,38.3,30,3,121.99,108,250,122.97,86,250,56.78,58,60,114.18,74,250,51.68,52,2,116.65,67,250,91.73,40,250,53.38,55,56,60.78,51,53,71.45,35,250,163.74,249,250,130.63,128,250,101.69,54,250,55.89,57,59,63.85,64,61,54.04,51,59,52.14,45,44,37.98,37,13,76.37,49,250,42.93,40,42,60.18,50,250,35.83,35,35,41.48,40,56,48.4,51,54,57.28,58,59,43.55,44,54,39.92,40,27,45.81,34,7,45.7,34,8,48.56,53,58,52.0,26,4,54.14,43,2,123.85,92,250,86.86,77,3,48.03,50,58,60.3,61,61,42.84,46,50,37.97,35,29,81.61,40,250,57.37,62,64,67.07,61,250,40.07,26,28,49.45,52,52,141.04,177,250,68.3,29,9,62.53,63,63,73.88,36,250,14.95,13,2,123.15,63,250,65.82,52,250,64.76,45,17,107.46,101,250,57.68,34,34,102.97,65,250,56.35,57,58,50.03,41,24,104.16,107,3,41.86,42,46,58.04,28,3,132.81,102,250,56.86,58,59,79.21,43,250,196.08,249,250,104.14,53,250,60.33,61,61,47.1,48,48,100.18,73,250,59.99,61,61,56.48,57,58,88.64,40,250,47.93,47,5,117.61,147,10,55.97,57,59,92.01,92,250,58.02,58,59,58.72,35,2,69.02,44,10,98.18,82,250,40.62,33,2,56.57,58,58,60.14,40,6,148.07,140,250,55.31,56,56,73.95,49,16,69.52,62,53,54.47,56,57,72.01,77,104,49.6,42,24,57.34,56,58,55.09,56,58,90.07,45,250,52.19,54,57,62.0,56,48,58.15,58,58,61.75,53,25,62.7,63,63,55.85,57,58,56.14,58,58,73.48,76,8,55.67,56,58,54.55,55,55,54.83,53,54,73.54,34,5,142.19,161,250,59.54,60,60,49.0,49,51,65.42,65,65,56.41,58,60,55.54,56,56,37.33,26,3,66.63,67,67,55.97,57,58,58.54,58,58,55.79,57,56,53.12,53,53,60.54,56,57,47.15,49,52,61.26,62,64,229.09,250,250,51.4,52,54,56.8,58,58,50.17,52,52,57.86,58,58,5.68,5,2,57.91,58,59,59.49,60,61,54.41,55,56,53.05,54,55,54.88,53,54,88.61,52,250,55.86,54,56,53.75,56,57,53.55,50,58,54.28,53,53,56.27,58,59,105.48,51,250,60.3,61,61,59.76,54,55,56.23,56,57,60.26,59,56,55.21,56,59,56.27,51,52,54.12,53,55,73.47,38,250,53.19,54,53,49.35,52,53,57.13,55,55,62.07,62,62,54.62,53,54,91.69,74,250,68.86,49,250,91.75,63,250,47.25,38,2,59.0,52,250,63.52,65,70,53.26,53,54,104.28,55,250,97.8,109,3,57.42,59,60,78.04,43,250,56.19,39,2,59.76,61,64,64.59,44,250,57.57,33,250,66.58,51,3,50.48,49,53,58.02,54,56,90.94,51,250,51.86,50,54,58.22,59,60,68.06,45,250,79.56,65,2,56.74,57,57,71.43,33,250,127.81,110,250,69.68,43,250,58.22,54,59,34.24,29,2,43.15,42,5,95.69,78,3,0.948,0.0343 +36,VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,71.46,72,71,70.42,34,250,30.4,26,2,62.54,64,66,73.86,75,73,79.04,53,250,127.7,115,250,50.42,38,3,50.13,40,4,103.22,111,19,82.45,83,85,62.31,64,65,43.13,45,3,52.88,45,2,42.42,30,5,65.8,69,74,52.74,31,250,113.99,113,250,51.46,54,31,122.22,115,250,118.0,83,250,63.33,65,66,122.98,85,250,55.75,57,59,114.56,55,250,76.33,28,250,60.14,62,62,58.45,56,59,79.91,45,250,156.45,196,250,195.57,248,250,119.73,97,250,62.12,64,65,68.87,69,65,60.04,58,60,57.61,53,58,46.41,43,5,76.29,53,250,50.71,50,57,65.38,57,58,39.38,39,43,46.9,47,31,55.25,59,63,63.39,65,66,45.06,46,41,45.19,44,38,50.29,35,15,46.65,32,2,54.92,60,68,51.33,24,4,59.52,50,66,125.25,99,250,66.06,44,2,52.42,55,62,66.87,68,69,52.16,56,59,43.99,43,65,87.33,47,250,63.07,68,72,120.01,106,250,47.59,27,3,55.49,58,60,149.35,233,250,84.83,37,12,68.02,69,69,81.17,48,250,16.92,11,2,132.18,129,250,74.76,59,250,67.86,47,19,128.74,126,250,52.03,34,250,101.61,62,250,62.94,64,65,57.39,53,50,84.55,74,6,47.68,47,41,67.57,42,4,130.53,94,250,63.18,65,66,97.55,65,250,161.24,175,250,104.77,64,250,66.86,68,68,56.9,62,71,104.67,76,250,66.31,67,68,63.08,64,66,68.4,37,250,45.52,46,9,93.33,110,5,62.5,64,65,99.83,90,250,65.16,65,65,49.76,18,3,58.16,35,6,95.87,70,250,28.25,18,4,63.05,65,66,63.64,42,30,137.09,143,250,62.48,64,65,79.33,50,20,77.37,71,56,60.73,62,64,58.15,61,72,61.81,56,23,64.2,63,64,61.32,63,65,98.65,62,250,58.48,61,64,76.38,64,57,64.72,65,65,67.22,53,3,69.36,70,70,62.8,64,65,61.63,64,65,99.52,109,9,62.2,63,64,61.36,62,62,61.13,60,62,77.88,44,5,123.73,80,250,65.71,66,66,65.13,60,2,71.04,71,68,63.4,65,68,62.16,63,63,39.34,20,10,77.33,75,72,61.73,64,66,64.19,64,64,63.66,65,64,59.89,61,63,66.72,63,65,52.3,58,64,68.6,70,72,233.83,250,250,59.3,60,60,62.83,65,67,55.41,58,62,64.44,66,67,9.02,9,15,65.69,66,68,65.94,67,68,61.64,63,64,59.68,61,61,61.63,60,60,83.71,40,250,63.0,62,62,60.99,63,63,56.92,54,62,61.11,61,61,62.54,65,68,101.94,47,250,66.79,68,68,66.57,61,250,91.21,96,100,68.52,67,68,61.74,63,62,61.79,60,64,59.89,59,58,75.88,39,250,61.29,62,65,56.47,60,62,65.02,63,63,68.77,69,69,60.38,60,62,97.33,81,250,66.98,52,250,107.54,83,250,45.09,39,2,63.14,58,250,69.72,73,76,60.29,60,63,92.73,33,250,162.78,195,250,63.51,65,67,83.87,51,250,65.98,41,250,64.58,65,67,67.55,54,8,70.37,43,250,66.77,52,2,52.44,53,58,62.53,59,60,94.4,59,250,60.47,59,62,64.77,66,67,72.75,49,250,103.52,77,250,64.35,65,66,68.24,44,250,138.22,143,250,82.66,43,250,66.62,60,63,46.76,37,2,45.91,43,6,81.96,68,3,0.95,0.03436 +37,VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,58.7,59,58,75.63,38,250,22.3,17,6,52.65,53,56,58.92,59,59,64.84,37,2,75.03,47,5,45.23,35,2,38.31,29,19,80.0,81,2,66.2,67,71,51.36,52,53,32.83,34,3,43.62,34,2,49.1,30,3,52.86,54,53,47.21,27,3,66.31,46,250,45.18,44,2,107.52,89,250,115.19,63,250,51.77,53,54,116.34,79,250,46.08,47,53,115.86,59,250,80.82,30,250,50.98,53,51,58.63,49,48,67.61,33,250,162.65,249,250,219.12,250,250,106.97,74,250,51.2,53,54,57.56,56,56,50.81,47,55,49.18,42,41,34.87,30,2,72.44,45,250,42.81,41,44,57.46,47,49,30.66,29,26,37.76,34,22,45.88,50,54,52.21,53,54,38.58,39,34,34.78,35,21,43.92,34,31,47.65,32,30,46.31,51,54,38.43,22,2,48.78,39,7,94.55,73,5,55.07,36,2,40.7,42,49,54.76,56,56,41.02,43,47,33.25,30,21,76.77,34,250,52.45,55,59,60.66,54,11,47.18,35,6,46.05,49,51,139.88,199,250,72.23,18,15,56.07,57,58,72.07,36,250,6.44,3,2,116.39,52,250,68.94,52,250,43.75,29,21,107.86,93,250,51.0,30,250,86.4,35,250,51.7,52,53,43.91,34,36,102.04,87,4,38.66,39,45,58.47,30,6,116.52,79,250,52.11,53,53,77.18,45,2,117.97,120,250,99.9,50,250,54.88,55,55,44.35,45,54,102.04,71,250,54.46,55,55,51.84,53,54,65.52,33,2,72.28,86,3,138.15,170,250,51.55,53,54,85.5,72,250,54.01,53,54,62.21,38,2,65.97,42,5,90.66,65,250,37.83,28,5,51.76,53,53,55.23,33,3,140.22,177,250,51.12,52,53,65.04,32,11,65.73,59,51,49.89,51,53,50.49,53,71,39.1,40,26,53.47,52,53,50.65,51,53,89.28,43,250,47.97,50,52,53.38,53,59,53.73,53,53,59.4,53,6,56.94,57,57,51.19,52,52,51.21,53,53,89.28,98,10,51.27,52,53,51.26,51,52,51.23,49,51,59.93,34,9,124.38,139,250,53.86,54,54,54.68,48,2,58.41,58,59,52.13,53,54,51.26,52,53,37.42,24,2,58.77,59,58,51.12,52,53,53.87,53,53,51.29,52,54,49.64,49,50,55.88,52,55,44.89,48,50,55.59,57,57,226.67,250,250,48.96,50,51,52.05,53,53,46.15,48,50,53.3,54,55,3.08,3,3,53.94,54,54,54.09,55,55,50.84,52,52,50.02,51,51,51.61,50,50,78.92,37,250,52.56,51,50,50.08,52,52,47.89,44,52,50.04,50,53,51.54,53,54,100.01,48,250,54.8,55,55,56.14,50,52,51.32,52,52,57.71,54,55,51.31,52,52,51.15,49,52,53.6,51,52,74.5,36,250,50.01,51,52,46.66,49,51,54.26,52,52,56.13,56,56,51.38,50,50,90.72,65,250,60.73,41,250,94.38,69,250,41.92,37,2,54.01,46,250,53.95,57,60,49.19,47,52,93.69,46,250,42.67,31,29,52.19,53,54,76.03,42,250,60.04,39,2,54.14,53,53,67.5,53,250,67.49,40,250,49.13,28,2,47.61,45,48,53.65,51,52,81.7,43,250,51.04,49,50,52.97,54,55,64.22,55,2,73.72,51,2,53.24,53,53,60.85,37,250,115.06,105,250,72.23,39,250,51.28,50,56,35.25,30,2,38.62,35,2,88.14,68,30,0.948,0.03428 +38,VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,48.85,49,49,67.09,31,250,22.73,19,6,42.55,44,44,48.18,48,42,54.01,37,10,84.24,50,3,47.79,37,2,35.53,28,13,68.37,53,3,48.94,49,48,43.61,44,45,29.96,31,2,39.98,32,2,33.98,28,5,45.71,48,50,43.61,22,5,64.74,38,250,31.56,28,15,92.11,78,250,118.76,80,250,44.34,45,46,93.92,56,250,38.78,39,45,54.08,37,3,83.76,25,250,43.02,44,47,54.73,41,41,64.88,28,250,130.56,164,42,192.92,245,250,103.26,68,250,43.67,45,45,48.51,48,45,43.88,41,45,44.43,35,31,30.09,30,5,65.72,34,250,35.67,33,37,50.6,40,43,27.72,26,26,32.86,32,31,37.58,40,41,44.65,45,46,34.15,34,36,31.19,31,27,32.55,27,4,34.43,22,19,36.36,39,43,37.65,21,5,44.02,34,43,103.79,85,250,86.76,94,9,36.42,38,16,46.49,47,46,35.43,37,39,28.12,27,28,75.32,30,250,44.75,47,48,66.57,48,6,32.11,21,20,40.58,43,44,138.48,173,250,66.58,21,5,46.71,47,47,67.13,29,250,5.41,3,2,98.43,54,250,57.53,39,250,42.93,26,11,90.34,84,250,47.37,25,8,84.9,50,250,43.98,44,45,57.66,51,62,51.67,40,8,31.56,31,28,54.17,24,4,109.3,64,250,44.28,45,46,59.34,36,5,142.67,147,250,94.65,46,250,46.44,47,47,38.62,38,36,76.62,58,30,46.16,46,47,44.34,44,45,47.8,26,5,47.41,41,2,131.85,162,250,43.96,44,45,84.24,70,250,46.07,45,46,43.91,24,2,54.09,27,3,51.26,49,32,26.04,18,4,44.23,45,46,44.8,29,2,85.86,81,4,43.91,44,44,44.73,33,2,53.96,49,42,42.08,43,44,23.0,22,21,32.96,33,44,45.91,44,44,43.01,44,45,79.94,34,250,40.93,42,44,60.14,46,41,45.7,45,45,50.17,38,4,47.99,48,47,44.0,44,45,43.52,44,44,79.24,82,2,43.87,44,44,43.61,43,43,44.11,41,41,44.97,33,4,127.89,120,250,45.84,46,46,49.36,42,43,49.15,48,47,44.48,45,46,43.49,44,44,27.38,15,2,49.72,50,51,43.58,44,46,46.09,45,45,43.88,44,43,42.58,42,43,48.85,45,47,39.09,37,39,47.67,48,48,228.55,250,250,40.93,41,42,44.11,45,45,38.93,39,43,44.34,45,45,7.42,6,4,46.33,46,45,45.98,46,47,43.24,44,44,41.99,43,44,43.8,42,42,79.07,40,250,44.69,43,43,42.05,43,44,42.49,38,42,43.07,43,45,43.94,45,46,90.26,46,250,46.46,47,47,47.65,41,44,46.09,46,47,50.27,47,47,43.64,44,43,45.18,42,41,45.11,42,44,66.35,36,250,42.89,43,44,40.56,42,42,45.78,43,41,47.51,48,47,44.16,42,45,79.46,60,250,56.75,39,3,83.2,60,250,38.93,30,28,47.79,40,42,47.96,49,48,42.77,41,40,99.22,51,250,45.2,30,31,44.45,45,46,69.27,34,250,47.31,33,2,46.48,47,48,50.99,37,34,47.39,27,250,47.8,27,2,39.98,38,40,45.68,42,43,84.57,43,250,43.8,41,41,45.15,46,46,61.48,46,3,68.24,53,250,45.45,45,47,59.44,32,250,111.29,91,250,56.86,35,11,48.97,42,45,27.36,19,6,35.31,33,40,70.67,55,2,0.946,0.03426 +39,VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,52.88,53,52,72.79,34,250,27.4,23,21,46.52,47,47,55.14,53,53,54.95,37,4,44.94,49,2,57.24,49,46,39.94,33,9,81.6,73,250,58.89,59,59,46.95,48,49,30.12,30,2,43.8,37,3,38.62,35,6,47.03,48,50,38.66,23,250,70.89,44,250,40.09,37,2,119.61,108,250,103.98,61,250,47.21,48,50,118.95,87,250,47.52,45,46,96.95,52,250,75.26,30,250,45.6,47,50,54.73,45,44,74.44,35,250,153.14,205,250,171.15,170,250,94.84,52,250,46.78,48,48,48.94,49,51,47.39,43,43,45.47,39,3,52.09,43,4,65.45,40,250,38.78,36,42,53.64,43,40,28.61,27,18,34.95,34,50,39.58,43,45,47.76,48,49,35.94,36,31,32.68,32,33,37.97,33,22,39.23,25,21,41.71,46,50,43.6,27,6,46.03,38,39,103.68,91,250,68.73,54,2,38.9,41,51,49.59,50,51,40.7,43,44,31.86,30,23,77.25,31,250,46.99,51,51,74.88,41,250,38.55,19,3,43.6,45,46,136.7,123,250,80.7,40,250,50.77,51,51,73.37,36,250,14.5,14,6,98.13,89,250,62.75,47,250,41.23,34,7,105.15,87,250,56.87,31,19,87.18,54,250,47.41,48,48,47.15,43,46,81.68,55,6,33.64,32,26,57.74,28,250,114.18,79,250,47.44,49,50,77.21,39,3,117.85,106,250,106.28,47,250,50.0,50,50,41.38,42,44,97.74,78,250,49.54,50,50,47.44,48,49,71.53,37,250,42.46,43,2,102.98,140,14,47.09,48,48,96.16,87,250,49.58,48,49,50.58,27,5,51.46,34,4,73.48,63,52,29.99,22,2,47.08,48,49,67.45,47,10,123.72,121,250,47.05,47,49,50.09,39,8,58.57,53,43,45.76,46,47,49.95,57,63,34.76,34,38,49.09,47,48,46.79,47,48,84.2,34,250,44.0,46,48,54.77,50,21,49.24,48,49,46.77,45,51,51.4,51,51,47.01,48,47,46.73,48,49,65.95,71,17,46.97,47,48,46.47,47,47,47.41,45,47,81.77,42,250,131.77,146,250,49.37,49,48,48.32,45,2,53.13,53,52,47.65,48,49,47.33,47,48,30.26,17,3,53.55,54,53,46.42,48,48,50.08,48,49,47.05,48,49,46.33,46,47,52.08,48,48,42.27,44,46,50.36,51,52,233.69,250,250,44.8,45,45,47.41,48,50,42.31,43,47,47.83,48,48,3.51,3,2,49.18,49,50,49.09,50,50,46.41,47,47,45.74,46,48,47.76,46,46,81.45,38,250,46.96,46,49,46.32,48,50,46.48,42,45,45.48,45,45,46.9,48,50,92.64,41,250,49.75,50,50,51.5,45,46,48.14,48,49,54.49,50,49,46.32,47,47,49.91,45,45,49.78,45,46,65.81,30,250,46.54,47,46,43.22,45,45,49.74,48,48,50.98,51,52,46.86,45,45,91.5,72,250,57.37,40,250,86.49,56,250,42.06,34,23,51.0,42,43,50.5,51,53,45.87,44,44,87.36,45,250,80.31,80,4,47.54,49,49,71.52,39,250,55.98,40,2,50.13,50,50,61.06,42,6,51.66,29,250,54.22,44,3,43.02,40,42,47.06,44,47,80.96,44,250,47.21,44,44,48.23,49,50,61.24,43,9,84.64,56,6,48.44,48,46,70.99,29,250,101.36,75,250,71.25,33,250,50.64,46,45,33.94,24,6,37.59,34,19,67.79,56,5,0.948,0.03421 +40,VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,65.99,65,63,70.52,31,250,21.1,14,3,51.65,53,56,71.4,69,68,59.17,39,3,86.06,75,2,48.55,31,10,45.6,40,8,87.67,71,250,80.02,79,82,53.91,55,56,37.89,39,2,46.17,36,2,47.26,31,2,57.68,59,59,42.15,24,9,75.84,49,250,49.91,40,3,112.08,99,250,121.22,96,250,55.71,57,57,85.78,56,30,48.86,46,54,125.79,89,250,85.34,34,250,51.76,53,54,50.68,47,46,73.56,35,250,148.61,189,250,200.73,227,250,100.7,50,250,53.83,55,56,63.47,61,54,50.43,47,52,50.98,43,45,34.67,31,2,66.78,40,250,41.56,39,42,58.51,48,250,33.1,33,34,41.97,40,22,44.58,48,48,55.67,56,56,42.16,42,31,37.66,37,34,39.32,31,6,45.15,27,4,48.51,52,56,50.92,25,3,53.22,46,55,112.89,82,250,77.49,65,3,43.94,45,58,59.32,60,59,42.19,44,47,36.48,33,25,80.84,32,250,56.96,63,70,73.31,66,8,38.91,23,21,46.61,49,48,145.45,239,250,78.96,31,250,62.24,62,61,78.91,41,250,5.71,4,2,111.19,92,250,68.39,53,250,45.64,31,14,117.26,116,250,48.44,29,9,90.83,45,250,54.3,55,57,39.76,26,16,68.53,57,6,39.95,40,40,62.01,32,2,123.7,90,250,55.63,57,57,77.48,37,250,132.59,139,250,105.05,50,250,59.25,59,58,47.3,47,52,95.76,67,250,58.66,59,59,54.6,55,57,55.7,32,2,38.69,41,4,138.37,180,250,54.25,55,55,82.42,53,250,56.73,56,57,49.44,20,2,55.41,33,8,116.39,108,250,27.09,15,2,54.66,56,57,64.63,40,8,128.84,140,250,53.17,53,54,64.65,45,11,64.67,60,55,52.76,53,54,34.04,35,16,43.64,44,45,55.68,54,55,52.71,53,55,91.27,45,250,50.39,52,55,38.93,36,33,56.29,56,55,67.35,57,18,61.93,62,61,54.01,55,55,54.93,56,57,70.56,76,25,53.54,54,54,51.19,51,52,52.94,50,50,50.2,25,3,128.06,141,250,57.95,58,58,53.25,48,2,66.07,65,63,55.11,56,57,52.65,53,54,36.55,22,5,67.41,67,64,54.38,55,57,55.39,55,57,53.78,55,55,51.16,51,54,59.59,55,54,44.54,48,54,60.41,61,61,229.27,250,250,48.62,49,51,55.01,56,57,46.45,48,50,56.6,57,59,5.42,5,5,56.74,56,56,58.41,59,59,52.47,53,52,50.26,51,52,51.63,49,49,81.47,43,250,53.58,52,53,50.94,52,53,53.01,48,53,50.62,50,51,54.19,56,55,86.11,42,250,58.98,59,60,57.76,52,55,54.4,54,57,60.66,57,55,52.84,54,52,51.77,48,47,52.51,49,49,65.96,32,250,50.88,51,49,47.6,49,51,55.1,53,54,61.38,62,61,52.52,50,51,90.37,66,250,60.18,40,250,92.68,68,250,34.72,31,3,55.27,48,51,65.4,66,77,52.77,51,51,94.83,39,250,59.65,53,53,55.9,57,58,75.73,40,250,59.94,37,8,59.26,59,54,61.17,43,250,74.97,42,250,61.35,50,6,45.29,44,46,55.42,52,49,88.25,47,250,49.75,48,47,57.1,58,58,55.72,36,6,81.87,63,250,54.91,55,56,72.91,31,250,108.27,87,250,70.13,37,250,54.81,47,45,34.85,31,4,40.94,40,56,75.77,61,5,0.946,0.03436 +41,VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,62.29,62,60,72.81,34,250,24.12,22,27,50.73,51,51,65.17,63,58,66.38,38,250,80.82,50,250,49.52,41,36,41.52,34,2,70.18,61,250,73.48,73,79,51.53,52,54,35.17,37,2,46.69,40,3,46.46,36,2,54.25,56,58,39.61,21,14,74.46,46,250,42.02,36,2,101.5,96,250,124.07,102,250,52.96,54,55,105.3,68,250,48.36,49,51,110.4,58,250,87.86,26,250,49.57,51,53,47.69,46,46,68.35,32,250,166.92,249,250,168.98,189,207,93.2,45,250,51.55,53,52,61.02,60,56,48.11,46,53,47.48,39,42,31.65,28,4,69.62,42,250,39.06,37,44,55.94,46,46,32.72,32,23,37.88,36,23,42.76,47,51,52.91,53,54,39.99,41,48,36.88,37,49,44.85,31,5,36.92,25,25,46.23,51,54,38.63,16,3,48.43,41,45,116.27,86,250,53.49,33,4,41.56,44,51,56.3,57,57,41.55,45,51,34.66,34,24,77.24,32,250,56.28,60,62,55.05,45,7,40.18,26,8,44.19,46,47,137.2,145,250,65.57,23,14,59.05,59,58,72.42,36,250,13.01,10,2,91.55,70,250,63.88,44,250,54.01,37,18,107.19,96,250,48.03,29,2,95.92,50,250,51.9,53,53,42.07,29,9,113.56,96,250,40.43,39,32,58.21,25,12,131.91,122,250,53.08,54,55,82.7,45,250,133.83,121,250,105.62,59,250,56.24,57,57,43.02,44,53,88.18,64,250,55.77,56,56,52.03,52,53,62.34,32,24,38.84,43,3,141.15,183,250,51.58,52,53,89.98,74,250,54.21,53,54,55.0,35,5,54.93,33,2,77.7,44,250,34.23,27,9,52.16,53,53,51.75,32,11,148.79,193,250,50.75,51,51,67.76,39,4,61.35,54,43,50.03,51,52,40.92,44,61,40.17,41,50,52.84,51,52,50.18,51,53,87.2,41,250,47.98,50,51,36.1,37,44,53.33,53,53,64.39,51,3,58.7,59,58,51.24,52,54,51.73,53,52,120.23,136,250,51.07,51,51,49.55,49,49,50.47,48,48,77.13,34,250,123.68,116,250,55.05,55,55,47.83,44,2,62.17,61,60,51.63,53,54,50.24,50,50,33.13,22,6,62.92,63,62,51.33,53,53,53.73,53,53,51.24,52,53,48.89,48,50,56.33,52,54,39.39,43,49,57.72,58,59,227.64,250,250,47.08,48,47,52.74,54,55,46.13,47,51,54.1,54,53,5.56,4,2,54.26,54,53,55.44,56,56,49.86,51,52,48.48,49,48,49.76,48,48,85.51,50,250,50.08,49,50,49.08,50,49,48.8,44,48,49.46,48,49,52.01,53,55,94.12,46,250,56.08,56,56,54.59,49,49,52.14,52,54,58.43,56,55,50.69,52,52,50.75,47,48,50.27,49,51,74.76,41,250,49.1,49,49,45.31,47,53,53.4,51,49,58.01,58,58,49.94,48,51,84.54,65,250,62.68,45,250,92.72,71,250,38.76,30,2,54.3,46,250,63.39,65,65,48.96,48,52,93.58,49,250,98.93,115,2,53.15,54,55,74.63,36,250,48.17,32,3,54.66,55,56,58.25,45,2,55.65,30,250,60.8,51,4,44.9,42,44,49.53,46,45,80.24,45,250,49.21,46,47,54.38,55,55,56.47,37,4,86.3,57,250,53.91,54,60,59.62,25,250,115.18,96,250,78.26,40,6,43.49,43,19,26.28,24,5,39.41,36,29,94.09,71,10,0.948,0.0343 +42,VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,57.22,57,57,63.95,32,250,23.36,18,5,46.62,47,54,60.28,60,58,55.3,36,2,37.02,38,3,49.84,33,20,36.71,28,13,71.46,59,250,66.41,66,65,46.56,47,48,29.16,31,2,41.45,35,2,40.34,24,8,51.05,52,52,44.79,26,250,61.71,40,250,36.43,34,2,123.36,126,250,112.6,77,250,48.26,49,49,112.66,77,250,41.69,40,43,108.15,82,250,78.72,34,250,43.5,44,42,41.43,39,38,69.62,29,250,160.53,246,250,200.41,223,250,99.52,61,250,46.2,47,48,54.61,53,51,45.5,41,43,43.49,35,35,32.18,31,6,63.73,37,250,36.56,33,34,52.89,42,48,32.72,33,33,38.3,35,18,39.45,43,46,48.05,48,48,39.01,38,29,32.87,33,40,34.09,27,25,36.77,25,23,42.62,45,54,42.17,23,4,42.29,37,41,99.39,82,250,56.75,40,250,38.83,40,44,51.46,52,52,36.07,38,38,31.96,30,17,77.55,30,250,47.02,51,56,50.81,38,21,40.98,22,2,38.42,40,39,131.58,111,250,62.15,20,2,53.94,54,54,69.57,34,250,4.02,3,2,104.79,50,250,55.22,39,250,59.91,45,6,99.28,98,250,50.0,25,24,86.93,60,250,47.08,47,48,44.72,33,13,61.26,53,3,35.9,35,20,57.04,23,2,119.62,90,250,48.0,49,49,74.38,38,2,92.96,64,250,99.26,48,250,51.23,51,51,38.13,38,44,96.93,69,250,50.85,51,51,47.32,48,48,75.27,36,250,35.8,33,2,128.78,164,250,46.72,47,47,75.0,66,250,48.86,48,47,55.13,26,2,45.85,28,6,88.62,82,57,26.92,16,2,47.27,48,49,44.65,36,13,132.85,108,250,45.56,46,46,79.54,41,250,55.92,51,43,45.0,45,45,31.6,28,21,31.43,32,24,48.05,46,46,45.88,46,46,88.17,36,250,43.4,45,47,57.25,44,31,48.6,48,49,50.56,46,29,53.54,53,53,46.0,46,46,47.58,48,50,76.92,72,5,46.36,46,47,43.55,44,46,45.95,43,44,82.8,36,250,126.15,138,250,49.85,50,49,52.51,44,2,57.16,56,56,46.88,48,49,44.92,45,46,46.43,30,3,58.35,58,55,46.94,48,49,49.29,48,49,46.15,47,47,44.54,44,45,50.82,47,46,36.84,40,43,53.08,54,56,224.92,250,250,41.7,42,41,47.76,48,48,41.47,42,45,48.72,49,50,5.45,4,3,49.0,48,47,50.45,51,51,44.86,45,46,43.18,43,43,44.76,42,44,79.15,36,250,47.15,45,45,44.33,45,44,45.14,40,41,42.07,42,39,46.58,48,49,88.45,41,250,51.03,51,51,51.14,44,47,46.74,47,49,51.97,50,49,45.09,45,46,44.39,41,44,47.01,43,44,71.45,33,250,43.51,44,45,41.48,43,43,48.62,46,46,52.92,53,52,44.38,42,42,80.59,53,250,60.13,40,250,87.05,56,250,35.72,29,2,50.6,42,46,56.11,57,62,44.62,43,45,86.82,34,250,62.33,60,58,48.25,49,49,68.66,34,250,50.56,35,6,49.33,48,47,53.48,40,250,60.39,32,250,53.99,28,2,41.16,38,44,46.81,44,43,75.08,39,250,43.27,40,43,49.47,50,50,53.87,42,2,76.13,47,250,47.79,47,47,57.15,32,250,106.96,89,250,58.63,32,250,48.64,44,42,28.34,26,2,33.97,31,41,75.89,55,3,0.947,0.03431 +43,VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,71.7,71,70,75.93,45,250,27.92,17,11,57.49,60,67,74.75,74,81,70.05,49,250,84.16,85,5,58.09,47,2,54.91,47,27,81.58,78,250,81.53,81,78,60.18,61,62,36.53,37,2,48.74,40,3,42.16,35,2,62.76,65,68,47.71,29,250,87.81,55,250,48.98,46,2,120.83,119,250,132.18,112,250,61.37,63,64,109.76,78,250,53.26,53,56,113.52,65,250,74.23,45,250,57.72,59,60,59.56,55,57,75.53,35,250,165.67,241,250,168.17,178,250,113.31,78,250,60.37,62,64,70.98,70,64,57.25,54,59,52.17,46,250,39.22,35,2,77.43,49,250,46.01,45,49,63.73,55,56,38.29,36,35,45.18,45,68,51.19,57,60,61.91,63,64,45.88,45,42,44.19,44,43,41.77,35,35,52.32,36,2,53.57,59,60,57.83,30,3,56.24,43,28,129.54,114,250,58.42,43,2,48.07,50,58,65.58,67,67,47.62,51,53,42.22,42,57,80.87,37,250,61.68,69,75,87.5,69,2,43.43,32,2,51.68,54,53,131.62,141,250,82.98,30,250,68.15,69,69,76.22,40,250,5.34,5,2,111.22,76,250,72.13,54,250,52.8,35,18,124.96,132,250,56.59,36,13,100.63,73,250,60.76,62,63,53.55,53,57,89.42,63,250,44.68,44,47,65.85,34,250,129.22,105,250,61.73,63,65,78.16,45,250,197.53,249,250,111.3,64,250,65.43,66,66,49.19,51,55,100.97,73,250,64.93,66,66,60.86,62,62,75.05,42,250,40.68,44,3,154.41,238,250,60.2,61,63,93.49,72,250,62.54,62,63,66.78,36,250,62.76,37,11,153.25,153,250,40.09,27,4,60.9,62,63,54.54,35,5,132.69,145,250,59.37,60,61,67.46,46,14,73.28,67,65,58.58,60,62,47.08,38,23,55.34,55,2,61.2,60,62,59.16,61,62,86.89,41,250,56.32,59,62,87.1,54,13,62.33,62,62,67.53,58,2,68.1,68,68,60.76,62,61,60.46,62,63,94.54,99,2,59.95,61,63,58.41,58,58,58.92,57,60,77.41,39,2,136.75,159,250,64.36,65,64,54.16,56,60,71.61,71,69,60.78,62,64,59.04,60,61,40.46,23,7,72.47,72,69,60.45,62,63,62.62,62,63,60.5,61,63,56.82,57,59,64.08,61,64,49.73,55,58,66.54,68,67,227.67,250,250,55.38,56,56,61.1,63,63,53.41,56,61,62.85,63,61,3.25,3,2,63.35,63,63,64.55,66,66,58.58,60,60,57.15,58,60,58.12,57,59,92.53,51,250,59.7,58,60,58.25,60,61,56.22,53,59,57.06,56,55,59.93,62,66,102.6,55,250,65.42,66,67,63.32,58,250,59.95,60,63,68.14,65,67,58.79,60,59,58.42,56,57,57.3,56,60,69.52,39,250,57.12,58,60,52.78,55,54,61.5,60,60,67.31,68,68,57.94,57,59,103.28,75,250,65.99,45,250,105.92,88,250,40.7,35,4,61.06,55,250,68.61,71,76,57.24,56,58,101.12,44,250,104.18,118,250,61.97,63,64,80.11,43,250,65.51,45,250,62.41,63,68,62.65,46,2,65.81,39,250,67.31,53,2,52.4,50,56,59.27,56,60,90.95,52,250,57.07,55,52,62.95,64,66,69.17,50,3,111.79,84,250,61.95,62,62,80.63,45,250,119.58,113,250,64.84,39,250,59.77,56,58,46.04,36,4,47.26,45,2,93.9,74,250,0.95,0.03433 +44,VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,60.55,60,59,79.83,36,250,28.49,23,4,46.43,47,48,67.47,65,62,66.18,39,3,110.02,81,250,61.86,34,2,43.08,37,2,93.65,92,250,67.63,66,63,48.98,49,49,35.5,37,2,44.9,38,3,61.71,29,2,53.44,55,63,51.77,27,250,72.24,44,250,53.47,35,2,131.58,134,250,107.46,73,250,50.85,51,53,115.29,71,250,40.18,37,43,116.49,94,250,74.18,23,250,44.29,45,44,47.78,42,43,75.29,37,250,150.34,202,250,218.27,249,250,109.05,69,250,49.5,50,51,62.27,61,57,48.21,44,47,40.96,31,2,61.65,44,5,69.64,43,42,37.19,34,36,53.48,42,250,34.5,34,37,41.17,41,21,41.66,45,49,51.17,51,50,40.43,42,49,37.3,38,47,45.15,32,4,49.46,35,34,46.52,50,55,53.79,24,2,51.23,39,24,114.48,78,250,56.97,38,250,41.09,42,48,53.18,54,54,39.48,41,40,33.85,33,22,77.13,32,250,57.79,60,60,106.07,103,250,50.23,27,250,39.35,41,43,143.37,156,250,81.71,39,250,59.34,59,58,72.06,32,250,4.0,4,4,97.23,56,250,68.88,45,250,50.83,36,28,122.81,112,250,52.56,30,250,120.14,69,250,50.13,50,51,57.51,45,53,71.81,59,32,40.02,40,43,64.35,33,250,119.9,89,250,51.93,53,54,99.2,51,250,142.6,169,250,99.36,54,250,55.18,55,56,43.4,43,45,101.84,82,250,53.54,54,53,49.67,49,50,65.81,43,41,39.14,42,51,129.26,173,250,48.66,49,48,88.42,69,250,51.3,50,50,69.81,45,3,66.59,38,6,90.3,71,250,30.61,18,3,50.18,51,50,74.79,52,27,145.15,186,250,46.37,46,46,90.5,52,250,60.71,56,54,48.52,49,49,56.66,58,72,42.91,45,43,51.36,48,48,49.11,49,51,90.72,45,250,46.19,48,50,55.39,48,43,50.51,49,48,79.95,53,5,56.01,56,55,47.86,48,48,50.88,51,51,100.53,110,10,47.59,47,48,48.78,48,47,49.22,45,43,93.91,50,250,124.64,110,250,53.54,54,56,53.34,40,37,61.32,61,62,49.39,50,49,47.4,47,48,51.97,34,2,60.42,60,58,49.93,51,52,50.45,49,51,46.8,47,46,47.52,46,48,53.73,48,47,36.63,37,35,52.37,53,56,229.64,250,250,43.7,44,44,50.36,51,53,47.8,48,49,51.52,51,49,,2,2,49.48,49,47,54.05,55,54,45.87,46,44,44.59,45,44,47.06,44,44,92.25,48,250,47.69,45,46,45.33,47,47,49.26,43,51,44.74,43,44,47.4,48,50,101.1,64,250,54.87,55,54,55.96,49,51,48.03,46,47,54.53,51,53,48.18,47,45,46.36,42,45,45.64,41,40,83.85,48,250,43.05,44,46,42.59,42,39,48.03,45,45,55.99,56,57,46.23,43,44,96.8,83,250,69.95,46,250,104.33,94,250,42.49,34,5,49.66,41,43,59.47,59,64,47.61,45,47,118.57,71,250,76.01,67,64,51.26,52,52,76.31,39,250,61.06,38,250,52.31,51,53,76.71,56,250,65.71,36,250,58.77,33,13,42.4,38,38,45.37,42,42,85.37,47,250,44.64,40,39,51.87,52,52,74.17,48,250,83.25,69,250,47.72,47,47,75.88,54,250,116.89,104,250,74.59,49,250,48.35,43,38,41.94,36,8,36.28,34,39,91.07,89,250,0.946,0.03425 +45,VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,43.14,43,43,64.94,26,250,25.61,20,8,38.37,39,40,42.5,43,44,54.12,29,21,47.25,52,5,53.01,37,35,32.07,27,2,62.26,53,250,43.94,44,41,38.65,39,40,26.14,26,2,39.34,33,2,32.43,21,2,40.13,41,39,40.72,20,250,61.33,36,250,33.49,30,3,85.17,70,250,112.89,84,250,39.16,40,40,88.68,54,30,35.58,34,38,83.27,41,4,68.59,23,250,37.56,38,40,37.75,34,34,54.06,24,2,117.26,145,38,149.11,162,167,92.3,60,250,38.38,39,40,41.56,41,36,39.94,36,39,39.81,31,35,27.66,26,3,60.08,33,250,32.16,29,34,47.49,35,36,23.31,22,17,30.5,29,22,34.52,37,38,39.17,39,40,29.23,28,18,27.61,27,20,29.68,25,20,33.19,22,14,32.98,35,40,33.38,16,4,39.27,30,19,87.23,68,250,54.99,38,250,30.94,32,41,41.01,42,42,31.58,32,31,25.84,25,21,72.45,26,250,38.8,41,42,47.63,35,3,33.32,20,3,35.65,36,34,130.52,128,250,68.37,23,13,41.39,41,42,64.98,26,250,5.14,4,2,94.41,73,250,52.18,32,250,39.57,19,13,93.85,91,250,49.0,28,5,92.88,48,250,38.73,39,40,40.22,33,33,57.24,48,2,28.83,28,24,52.87,22,2,99.1,54,250,39.1,40,41,77.75,43,10,131.25,135,250,96.34,39,250,41.12,41,41,31.73,32,38,74.36,48,36,40.87,41,41,39.18,39,40,52.04,27,2,33.01,31,2,128.53,152,250,38.83,39,41,74.88,56,250,40.77,40,40,40.75,28,2,49.68,26,5,49.45,41,2,21.34,12,2,39.05,40,40,38.71,24,3,129.91,144,250,38.53,39,39,44.15,30,7,49.02,45,39,37.1,38,39,73.07,83,2,29.64,30,33,40.82,39,38,38.26,38,40,79.72,30,250,36.18,37,38,29.64,31,40,40.63,40,40,49.71,38,2,42.55,42,42,38.74,39,39,38.56,39,39,95.7,106,5,38.99,39,38,38.05,38,38,39.45,36,39,52.15,25,3,121.61,133,250,40.46,40,40,41.23,34,42,43.22,43,42,39.05,39,39,38.72,39,38,27.63,17,3,43.77,44,44,38.45,39,40,40.79,40,41,39.04,39,39,38.09,37,38,44.43,39,39,31.05,35,37,42.19,43,43,228.5,250,250,36.32,37,38,39.22,40,40,34.69,35,36,39.69,40,40,4.4,3,3,40.92,41,42,40.49,41,41,38.2,39,40,37.23,37,37,39.35,37,36,75.44,35,250,39.49,38,38,37.67,39,40,37.35,33,38,38.22,37,36,38.44,39,40,80.23,37,250,41.05,41,41,43.72,37,38,40.3,40,40,44.54,41,40,38.57,39,39,39.61,37,39,39.38,36,38,60.66,31,250,37.77,38,39,35.49,36,41,41.12,38,36,42.04,42,42,38.71,36,37,72.65,53,250,52.27,35,36,78.26,58,250,28.57,26,3,44.15,34,32,40.54,41,44,38.47,36,39,84.66,45,250,79.35,84,85,39.08,40,41,64.48,30,250,49.76,32,3,41.18,40,44,47.52,35,17,50.56,27,250,42.1,22,3,35.5,33,33,40.66,38,39,66.89,33,250,37.63,35,36,40.04,40,41,47.43,38,4,56.53,44,5,40.67,40,40,65.46,44,250,106.78,85,250,60.52,33,19,39.53,37,36,30.54,25,3,31.79,31,34,54.89,47,2,0.945,0.03424 +46,VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,75.11,75,75,71.31,39,250,37.02,31,30,60.14,63,63,79.29,78,74,81.78,55,250,65.89,68,5,74.79,61,2,53.74,47,2,99.31,104,250,85.17,85,82,64.04,65,66,40.71,41,2,53.28,41,5,56.48,48,3,68.76,72,75,51.1,33,250,85.14,57,250,48.82,50,3,134.13,142,250,126.68,88,250,65.45,67,69,111.4,80,250,58.1,56,2,134.55,126,250,75.56,47,250,61.15,63,67,72.55,61,250,81.61,44,250,157.89,198,250,223.95,250,250,107.91,67,250,63.79,66,67,74.13,73,69,62.86,61,68,58.69,53,250,67.04,53,2,78.62,54,250,52.02,51,57,68.01,59,250,40.35,39,42,49.17,50,71,53.77,59,61,65.34,67,68,49.0,50,72,46.7,46,33,52.11,41,7,51.85,37,2,56.5,61,60,55.03,32,2,62.65,50,250,113.6,105,250,66.46,53,2,53.61,56,59,68.97,70,71,54.14,58,63,43.21,41,27,83.66,42,250,62.93,68,73,76.73,65,5,59.09,38,250,54.5,57,62,138.05,157,250,70.83,24,250,71.3,72,74,78.57,41,250,17.54,10,3,118.9,68,250,69.76,55,250,74.97,52,25,127.62,144,250,63.9,41,2,103.27,59,250,64.39,66,67,64.52,59,61,101.35,58,250,46.61,47,50,66.65,35,250,128.03,103,250,65.48,67,68,95.17,57,250,144.74,172,250,110.35,62,250,68.93,70,71,49.02,52,57,107.18,87,250,68.49,69,70,64.78,66,68,81.66,51,250,55.34,56,2,156.6,217,250,64.01,65,66,108.82,98,250,66.77,66,67,55.48,22,2,67.99,34,5,103.89,81,250,42.08,24,8,64.5,66,67,66.19,39,22,155.44,205,250,63.78,65,65,72.78,45,26,79.69,70,60,62.26,64,64,84.04,92,111,40.09,39,41,65.04,64,66,63.32,65,67,91.09,46,250,59.54,63,65,51.26,57,60,66.48,66,67,76.25,68,3,71.95,72,72,63.73,65,66,64.14,66,66,118.78,133,250,63.57,64,65,62.81,63,63,63.04,62,64,67.24,49,9,127.05,80,250,67.87,68,68,63.54,57,2,75.09,75,75,64.85,66,67,63.6,64,65,43.79,26,20,76.16,76,77,63.35,65,66,66.42,66,65,64.26,66,67,60.81,61,63,68.7,65,66,53.9,59,73,70.35,72,73,224.92,250,250,59.38,61,61,65.13,66,65,57.38,60,62,66.77,67,65,8.65,8,2,67.49,67,67,68.14,69,70,63.09,64,64,61.1,62,63,62.27,61,64,96.13,57,250,63.5,62,64,62.54,65,66,60.86,58,67,61.54,61,61,63.49,66,66,102.13,51,250,68.92,70,70,66.66,61,250,65.08,66,69,71.27,68,71,62.52,65,66,64.6,60,62,59.9,59,64,75.53,40,250,62.05,63,64,57.54,60,64,65.36,64,64,71.06,71,72,61.4,60,60,109.43,91,250,71.67,53,250,99.26,80,250,50.38,44,3,67.51,59,250,76.06,77,77,60.36,60,63,95.24,43,250,99.46,101,106,65.53,67,68,78.18,45,250,65.27,44,250,67.97,68,71,76.84,57,250,67.29,42,250,63.29,41,2,55.16,56,60,64.28,61,61,100.91,63,250,61.17,59,56,66.77,68,69,76.12,56,250,97.93,72,250,64.74,65,66,83.71,39,250,134.24,133,250,75.81,49,250,65.09,60,62,45.6,36,5,51.95,51,60,122.8,131,250,0.948,0.03438 diff --git a/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv new file mode 100644 index 000000000..d7514da1a --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv @@ -0,0 +1,48 @@ +sample_id,run_ena +VBS46299-6321STDY9453299,"ERR5967855, ERR5967879, ERR5967903" +VBS46300-6321STDY9453300,"ERR5967861, ERR5967885, ERR5967909" +VBS46301-6321STDY9453301,"ERR5967867, ERR5967891, ERR5967915" +VBS46302-6321STDY9453302,"ERR5967873, ERR5967897, ERR5967921" +VBS46303-6321STDY9453303,"ERR6045486, ERR6045509, ERR6045532" +VBS46304-6321STDY9453304,"ERR6045492, ERR6045515, ERR6045538" +VBS46305-6321STDY9453305,"ERR6045498, ERR6045521, ERR6045544" +VBS46306-6321STDY9453306,"ERR6045504, ERR6045527, ERR6045550" +VBS46307-6321STDY9453307,"ERR5967856, ERR5967880, ERR5967904" +VBS46308-6321STDY9453308,"ERR5967862, ERR5967886, ERR5967910" +VBS46309-6321STDY9453309,"ERR5967868, ERR5967892, ERR5967916" +VBS46310-6321STDY9453310,"ERR5967874, ERR5967898, ERR5967922" +VBS46311-6321STDY9453311,"ERR6045487, ERR6045510, ERR6045533" +VBS46312-6321STDY9453312,"ERR6045493, ERR6045516, ERR6045539" +VBS46313-6321STDY9453313,"ERR6045499, ERR6045522, ERR6045545" +VBS46314-6321STDY9453314,"ERR6045505, ERR6045528, ERR6045551" +VBS46315-6321STDY9453315,"ERR5967857, ERR5967881, ERR5967905" +VBS46316-6321STDY9453316,"ERR5967863, ERR5967887, ERR5967911" +VBS46317-6321STDY9453317,"ERR5967869, ERR5967893, ERR5967917" +VBS46318-6321STDY9453318,"ERR5967875, ERR5967899, ERR5967923" +VBS46319-6321STDY9453319,"ERR6045488, ERR6045511, ERR6045534" +VBS46320-6321STDY9453320,"ERR6045494, ERR6045517, ERR6045540" +VBS46321-6321STDY9453321,"ERR6045500, ERR6045523, ERR6045546" +VBS46322-6321STDY9453322,"ERR6045506, ERR6045529, ERR6045552" +VBS46323-6321STDY9453323,"ERR5967858, ERR5967882, ERR5967906" +VBS46324-6321STDY9453324,"ERR5967864, ERR5967888, ERR5967912" +VBS46325-6321STDY9453325,"ERR5967870, ERR5967894, ERR5967918" +VBS46326-6321STDY9453326,"ERR5967876, ERR5967900, ERR5967924" +VBS46327-6321STDY9453327,"ERR6045489, ERR6045512, ERR6045535" +VBS46328-6321STDY9453328,"ERR6045495, ERR6045518, ERR6045541" +VBS46329-6321STDY9453329,"ERR6045501, ERR6045524, ERR6045547" +VBS46330-6321STDY9453330,"ERR6045507, ERR6045530, ERR6045553" +VBS46331-6321STDY9453331,"ERR5967859, ERR5967883, ERR5967907" +VBS46332-6321STDY9453332,"ERR5967865, ERR5967889, ERR5967913" +VBS46333-6321STDY9453333,"ERR5967871, ERR5967895, ERR5967919" +VBS46334-6321STDY9453334,"ERR5967877, ERR5967901, ERR5967925" +VBS46335-6321STDY9453335,"ERR6045490, ERR6045513, ERR6045536" +VBS46336-6321STDY9453336,"ERR6045496, ERR6045519, ERR6045542" +VBS46337-6321STDY9453337,"ERR6045502, ERR6045525, ERR6045548" +VBS46338-6321STDY9453338,"ERR6045508, ERR6045531, ERR6045554" +VBS46339-6321STDY9453339,"ERR5967860, ERR5967884, ERR5967908" +VBS46340-6321STDY9453340,"ERR5967866, ERR5967890, ERR5967914" +VBS46341-6321STDY9453341,"ERR5967872, ERR5967896, ERR5967920" +VBS46342-6321STDY9453342,"ERR5967878, ERR5967902, ERR5967926" +VBS46343-6321STDY9453343,"ERR6045491, ERR6045514, ERR6045537" +VBS46344-6321STDY9453344,"ERR6045497, ERR6045520, ERR6045543" +VBS46345-6321STDY9453345,"ERR6045503, ERR6045526, ERR6045549" diff --git a/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv new file mode 100644 index 000000000..77f8712ef --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv @@ -0,0 +1,48 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS46299-6321STDY9453299,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.bam,b99888ef49680a23d2c2eb99d9a76d8b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.vcf.gz,881fbba998d25a3e66aead2439ce2e02,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.zarr.zip,3dedee4185f663fe81803e86eef4596d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46307-6321STDY9453307,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.bam,918618042d01773378fc346f655d8cf4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.vcf.gz,ffc30b183b452593d5f4e7470a7812f2,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.zarr.zip,df7daea5845e6400208ab0b7baed24be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46315-6321STDY9453315,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.bam,9f8c56a80501b5844d567b8c5af417a4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.vcf.gz,41959d3346d3b58ec00a28c6f3683c47,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.zarr.zip,78bdecf637acc7cbd4e0bfecd09c66ca,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46323-6321STDY9453323,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.bam,86772575a66a8f78ad1105d671bac44f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.vcf.gz,2395f516a6192a899efd99a698576653,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.zarr.zip,45356713f05c9918163077a5d119ec2d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46331-6321STDY9453331,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.bam,34cfcc15ac35ec8da4172ec0f10fb929,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.vcf.gz,a6b2d94af56c04441548eb0edba4087b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.zarr.zip,8a2d0132523e54c1a612c4fcd93fe9ab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46339-6321STDY9453339,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.bam,752294bb0cd1fcd5ddc18606f4261770,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.vcf.gz,56ea40c7eebc9d8e2fc25c70198cf5bc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.zarr.zip,be17220709b54fbb413a476cbcd7dc02,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46300-6321STDY9453300,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.bam,2faef5979db123d1e93ad5a04bde010b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.vcf.gz,8487dad91d4d461aa1e30ad0a8a9e159,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.zarr.zip,865492f22a8bf02fd08740fa00407de1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46308-6321STDY9453308,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.bam,ae1cf75f8cb38d5c8d2afa97f7581230,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.vcf.gz,09e960abef88cc1223215439ca797e53,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.zarr.zip,2fe42d6e5cbe4cfb8b63cef66881a9a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46316-6321STDY9453316,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.bam,e44cb55e9b9df09073d1d0f84b1b03aa,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.vcf.gz,e49dbeb76338f3f597918e90b058b59f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.zarr.zip,8d0567b6c004651d90d145cfea5608a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46324-6321STDY9453324,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.bam,f50d84a65a7f0e9c8ae876bbbc148f3c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.vcf.gz,ccfbe4a46045c75f623ab5d9916bc25e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.zarr.zip,db3e75ad3fb8445db9e1f24cb65b1fc4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46332-6321STDY9453332,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.bam,1a10f12f85dd10dddc2467849726da32,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.vcf.gz,c13cf3ca97d60cd078dcecf56e1646d4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.zarr.zip,3a62925dd3a791d115126f65a2cc3379,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46340-6321STDY9453340,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.bam,1cf203df781e348eb6aceb4b7cbe4b0b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.vcf.gz,1f0c40567aee776ac60ef0866edecb46,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.zarr.zip,c00e4b4b756c6ff0e0e5e9162440826d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46301-6321STDY9453301,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.bam,6b393c2c842c361c8b9a098ea24c7edb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.vcf.gz,ad2a41e3ce8c7c1221c8fef7d191aa49,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.zarr.zip,97cbec5d0cdd6aa12e7e402bcf49d5f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46309-6321STDY9453309,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.bam,d0351a7e52a9bcd4fcd5a5b79abc67a5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.vcf.gz,debead115b618a103e54af6f6d9cacee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.zarr.zip,fa78217a4d149145c3410a210532c52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46317-6321STDY9453317,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.bam,4498ca72b6bc37510e2c7fcfde3f1281,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.vcf.gz,4940cc5916ac8dbd19ee660655f84fb4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.zarr.zip,e63316bcad97a1664a83d46f7bbf945c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46325-6321STDY9453325,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.bam,2e6d649130fc5183973d3fded7a6cd44,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.vcf.gz,1d4598ec05bc38390c7375fd8b60e5f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.zarr.zip,fd815f056af7fb97369852705e97b48a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46333-6321STDY9453333,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.bam,53d5d0bb98b4be54b0c9c51df714ab75,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.vcf.gz,00ee455bee5764e40ba26b9ece19bf9a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.zarr.zip,62f4c1153c212a63ae7f4fcf6dc96713,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46341-6321STDY9453341,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.bam,66a51a50d168a8937e525c17dbee3792,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.vcf.gz,df990da2709768c4bde10cd51841d229,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.zarr.zip,1ca668a939a47192c11224a350505986,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46302-6321STDY9453302,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.bam,7ea17da4c3bff94aec1ecedf1c3cdb73,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.vcf.gz,6f64e7c8f9465061abdbc8c7a416cc09,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.zarr.zip,57359203d735c19dd46b2a4be0993bee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46310-6321STDY9453310,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.bam,5256f0dcdeda23896e639fa40257df50,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.vcf.gz,d728a039223be2366dbe9ca3dccc21ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.zarr.zip,94e8194044aed52c9648e4e9c38b7833,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46318-6321STDY9453318,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.bam,d8b4e20456987ea99289c780d25f61e9,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.vcf.gz,7b39a6d448cdfefd86d00cca637f25a0,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.zarr.zip,e2a1123cc26b96da1baab9647ca1f0c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46326-6321STDY9453326,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.bam,e2ee827e4389ab14e545e4eea2f400ec,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.vcf.gz,ac9f52875ac9d0bfb808e653714dad96,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.zarr.zip,6fc945132ec147f7c2b86f5e5c413f1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46334-6321STDY9453334,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.bam,2956d16525c89ad8ecc5bedd9e7bcd7d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.vcf.gz,7f28154317c826aa2880bf3cf7cfa150,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.zarr.zip,bd6d43f7d65e937981710fd4597fb47a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46342-6321STDY9453342,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.bam,88080f62b75da53541376b561e398e8f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.vcf.gz,f7e7c058381da2112140c82953ece90c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.zarr.zip,d2c978f60e0281480275f0fa32e63867,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46303-6321STDY9453303,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.bam,70cc6b2c4c36de50c8e6526e22bd1e1a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.vcf.gz,10a2ab938ecb96e52a0ed40d37359da1,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.zarr.zip,b66ddea9c26abd423ab24708b5eb86f3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46311-6321STDY9453311,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.bam,f16fcc6c875ad5054f55c8c54c7b6dfc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.vcf.gz,8f031501d8a3b322a68bb5a060090a34,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.zarr.zip,994b674a4d29e2065f7e3d0ef868cc2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46319-6321STDY9453319,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.bam,776d94fb1300c50d4f8e1bd2b85b6cb6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.vcf.gz,576315a5d9f70f7bdaf53c3c5424fc9e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.zarr.zip,c49bf5513f102c97a3209d1e18d75eab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46327-6321STDY9453327,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.bam,f3c6b730e022ac3ea6eabdf96b0f0245,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.vcf.gz,36e593252f6d0ccf082a3930b69e28e4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.zarr.zip,a753e94fe7514835214542acef734f3c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46335-6321STDY9453335,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.bam,a1a073a5d8a015ce74ba4f3a2cfb7fbf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.vcf.gz,4ca3b94c83790a9f7b311d42d6ee5cc6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.zarr.zip,ba13613fd52c048af27468acae2cb100,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46343-6321STDY9453343,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.bam,dc9d3d647e7b0fe5ebeeb45a9cf54da8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.vcf.gz,7c8a96ff4d865e2cbd956ea2f58f93ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.zarr.zip,fb18965d61a7ba0b9edcb9f4d32beef4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46304-6321STDY9453304,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.bam,ec86af88b6015909ec56f44b0976547b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.vcf.gz,c4deee740c10bfd70e5df6c64390edc8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.zarr.zip,19efde7f62e445e8b8b9e29ad509a43f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46312-6321STDY9453312,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.bam,46accba051544cc88ff3a8f002bd30ba,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.vcf.gz,f6b6b92f82ddd300f52ff83e005498ee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.zarr.zip,4b5b8d6db087980de163a659d924b428,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46320-6321STDY9453320,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.bam,8eae2f4046543440dfe86933ad34c7e6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.vcf.gz,bd7e7934b433ffb55a628966a3302b45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.zarr.zip,8390f9d57aa22821d8b86ea3687ef50d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46328-6321STDY9453328,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.bam,09ca6796e2d217e5103756eef5ff21bf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.vcf.gz,6995ba181cf3a014ad749cfa747e7ab3,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.zarr.zip,a763004d19a4815075bd077751ed4a80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46336-6321STDY9453336,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.bam,37339040994529ceb820c298be3551eb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.vcf.gz,07ece258617abc576413e30075115927,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.zarr.zip,071497f6467224384a38ffb35dace69f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46344-6321STDY9453344,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.bam,ac9a0b5cb7a3c084bf938599a90d6a37,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.vcf.gz,698ea5b3188702af6b568419e6ec07ca,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.zarr.zip,073b644a4ad5c84b5ae4e149227ed8a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46305-6321STDY9453305,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.bam,7ba7a9fdb7c7b1ef3a176dfe4c12a44c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.vcf.gz,544ec79e159a9b30c30cfed6c2570a64,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.zarr.zip,de818d2c86cc07f1c2b6322e0dcec5d2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46313-6321STDY9453313,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.bam,0280f345164a19ddb658e3350e0ecb5c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.vcf.gz,8a9051b587d152b2715f507757c0d383,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.zarr.zip,2fa52b4078fdf250dd11253069e1e6c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46321-6321STDY9453321,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.bam,199309327c4b949d6c4ec51418f32d57,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.vcf.gz,f886103632589bc45264a5dfc3ee710f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.zarr.zip,32bd162fed1977a8a5a8cbb32a8b0ad3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46329-6321STDY9453329,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.bam,a0732115fda0181f529d3b89b496cd45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.vcf.gz,649de427120b4e9a12713186a16bf4b5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.zarr.zip,1ef42776759c29f9558427096b7239e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46337-6321STDY9453337,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.bam,c247dcdcac644d7f26f6338ac610d68e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.vcf.gz,49ff3cc4a65a0a5c753bcfdcb38af90b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.zarr.zip,569c330619c6529c6a422d791bf5f52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46345-6321STDY9453345,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.bam,b12ba6197d9a28b91a0c6900ce3b18f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.vcf.gz,ecb2ddd4c0322e59f5a15002a7ac2e5e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.zarr.zip,b55e2c6d1766b156cb236abf4d2c4281,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46306-6321STDY9453306,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.bam,dd2f01a6e990efcf206a93d1fbcbfb78,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.vcf.gz,a59804aa6bda05a7039975fb29fbca55,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.zarr.zip,c837fa3bd5281a4f9fc1909078d12336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46314-6321STDY9453314,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.bam,33d9afa78878cdf74206fffa782397ab,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.vcf.gz,23f0faa9faf9e3662ab314a1266db286,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.zarr.zip,14e53330006278fb1705a397e293bba6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46322-6321STDY9453322,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.bam,31301768c188886216556a3f66510b71,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.vcf.gz,8784a73f700ac8c86acb8111f89ed82d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.zarr.zip,b2df4a18837b6bf145cebd8f699ef73b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46330-6321STDY9453330,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.bam,bc0b387e8183c02faa02953ffb0ef59b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.vcf.gz,e4a92ba5ceb37055e7c99c26f4ee96f5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.zarr.zip,1579200bb12cce47698268483ed1d460,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46338-6321STDY9453338,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.bam,6a37571258c449afd693dfee1967d612,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.vcf.gz,eba44e5264186f046ed2b714af919cd4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.zarr.zip,1c641d212c6f65d23f2caa82ee0a81c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv new file mode 100644 index 000000000..4002c4c4d --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv @@ -0,0 +1,27 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,taxon,sex_call +VBS45687-6143STDY8787412,VBS45687-6143STDY8787412,A2682,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45688-6143STDY8787413,VBS45688-6143STDY8787413,A2685,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45689-6143STDY8787414,VBS45689-6143STDY8787414,A2686,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45690-6143STDY8787415,VBS45690-6143STDY8787415,A2688,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45691-6143STDY8787416,VBS45691-6143STDY8787416,A2631,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45692-6143STDY8787417,VBS45692-6143STDY8787417,A2645,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45701-6143STDY8787420,VBS45701-6143STDY8787420,A2675,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45702-6143STDY8787421,VBS45702-6143STDY8787421,A2749,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45708-6143STDY8787424,VBS45708-6143STDY8787424,A2709,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45709-6143STDY8787425,VBS45709-6143STDY8787425,A2710,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45711-6143STDY8787426,VBS45711-6143STDY8787426,A2718,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45713-6143STDY8787427,VBS45713-6143STDY8787427,A2722,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,dirus,UKN +VBS45717-6143STDY8787429,VBS45717-6143STDY8787429,A4003,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45718-6143STDY8787430,VBS45718-6143STDY8787430,A4004,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45720-6143STDY8787431,VBS45720-6143STDY8787431,A3930,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45723-6143STDY8787432,VBS45723-6143STDY8787432,A3956,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45724-6143STDY8787433,VBS45724-6143STDY8787433,A3964,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45728-6143STDY8787434,VBS45728-6143STDY8787434,A3988,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45734-6143STDY8787435,VBS45734-6143STDY8787435,A3925,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45735-6143STDY8787436,VBS45735-6143STDY8787436,A3926,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45737-6143STDY8787437,VBS45737-6143STDY8787437,A4007,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45738-6143STDY8787438,VBS45738-6143STDY8787438,A4008,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45739-6143STDY8787439,VBS45739-6143STDY8787439,A4009,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45742-6143STDY8787440,VBS45742-6143STDY8787440,A4013,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45743-6143STDY8787441,VBS45743-6143STDY8787441,A4014,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN +VBS45745-6143STDY8787442,VBS45745-6143STDY8787442,A4019,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,dirus,UKN diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..fa5b7c3ea --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv new file mode 100644 index 000000000..5beda0a88 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv @@ -0,0 +1,27 @@ +sample_id,run_ena +VBS45687-6143STDY8787412,"ERR4696346, ERR4766075, ERR4766106" +VBS45688-6143STDY8787413,"ERR4696347, ERR4766076, ERR4766107" +VBS45689-6143STDY8787414,"ERR4696348, ERR4766077, ERR4766108" +VBS45690-6143STDY8787415,"ERR4696349, ERR4766078, ERR4766109" +VBS45691-6143STDY8787416,"ERR4696350, ERR4766079, ERR4766110" +VBS45692-6143STDY8787417,"ERR4696351, ERR4766080, ERR4766111" +VBS45701-6143STDY8787420,"ERR4696354, ERR4766083, ERR4766114" +VBS45702-6143STDY8787421,"ERR4696355, ERR4766084, ERR4766115" +VBS45708-6143STDY8787424,"ERR4696358, ERR4766087, ERR4766118" +VBS45709-6143STDY8787425,"ERR4696359, ERR4766088, ERR4766119" +VBS45711-6143STDY8787426,"ERR4696360, ERR4766089, ERR4766120" +VBS45713-6143STDY8787427,"ERR4696361, ERR4766090, ERR4766121" +VBS45717-6143STDY8787429,"ERR4696363, ERR4766092, ERR4766123" +VBS45718-6143STDY8787430,"ERR4696364, ERR4766093, ERR4766124" +VBS45720-6143STDY8787431,"ERR4696365, ERR4766094, ERR4766125" +VBS45723-6143STDY8787432,"ERR4696366, ERR4766095, ERR4766126" +VBS45724-6143STDY8787433,"ERR4696367, ERR4766096, ERR4766127" +VBS45728-6143STDY8787434,"ERR4696368, ERR4766097, ERR4766128" +VBS45734-6143STDY8787435,"ERR4696369, ERR4766098, ERR4766129" +VBS45735-6143STDY8787436,"ERR4696370, ERR4766099, ERR4766130" +VBS45737-6143STDY8787437,"ERR4696371, ERR4766100, ERR4766131" +VBS45738-6143STDY8787438,"ERR4696372, ERR4766101, ERR4766132" +VBS45739-6143STDY8787439,"ERR4696373, ERR4766102, ERR4766133" +VBS45742-6143STDY8787440,"ERR4696374, ERR4766103, ERR4766134" +VBS45743-6143STDY8787441,"ERR4696375, ERR4766104, ERR4766135" +VBS45745-6143STDY8787442,"ERR4696376, ERR4766105, ERR4766136" diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv new file mode 100644 index 000000000..91c8375ac --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv @@ -0,0 +1,27 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45687-6143STDY8787412,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.bam,1edaca5060bf348547674cb80dbff467,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.vcf.gz,2c4aca688d1fb8940ee32189a93f8612,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.zarr.zip,426593cbaa1ca17ab1c47f77f6fd60da,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45688-6143STDY8787413,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.bam,5f5f92668e2e44911b71b3fb42921b96,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.vcf.gz,a5fb0da278d96531e76154b96dcfd016,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.zarr.zip,a475055bf1c82add474d5092364e477e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45689-6143STDY8787414,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.bam,9ea628902048b2f7f56a371b868ac085,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.vcf.gz,09531eec22d0633bae9ff6ac66a5a991,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.zarr.zip,f046ccc51fb2211f41fc9a7a45eb1ded,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45690-6143STDY8787415,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.bam,b29269c48f41e8951cf65e0c558b556a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.vcf.gz,6e8c64a462ee611e4c9cef4f17198a81,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.zarr.zip,660d9b26e6b8ee4456ae2b952d32aa9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45691-6143STDY8787416,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.bam,344053000bdb3f61528137047f3a173a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.vcf.gz,112db891eccd5def371effd62837af62,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.zarr.zip,c31ba519c31c9256816b9994e1859125,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45692-6143STDY8787417,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.bam,05c69c41f45b9577409ba8c13fad238e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.vcf.gz,21a4a6aa9e2a591baa198357cb2be6f8,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.zarr.zip,977fff2a5f9b29c4b42371a8005111ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45701-6143STDY8787420,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.bam,859bca146bdfbb35885209d567d9583b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.vcf.gz,ce0d880d9cf27151f07556865c92e8eb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.zarr.zip,796f143f29d5d8869e17202a3ccfaea6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45702-6143STDY8787421,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.bam,419ad784e43882508edf0ef44e4ac300,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.vcf.gz,d3e50b12a43aec47125e57394a596fd2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.zarr.zip,bd5f69e7b81ea60a57be5630ef8b9991,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45708-6143STDY8787424,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.bam,ff51e31b180932a267447e42e906ecf2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.vcf.gz,67e3453989380789151c674a760e8112,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.zarr.zip,9baba1d37394f6f5d3a26af50b935f78,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45709-6143STDY8787425,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.bam,1a1a2faed7e01e9f06516b9cea5078e5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.vcf.gz,f9893d7a75a498458916091a9fe1b92e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.zarr.zip,d4962fbf2f266ec905b4ece445921a92,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45711-6143STDY8787426,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.bam,f88ed8654fcaf4b2e73f7e521c96a25b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.vcf.gz,6b689303e917d25649dc50e8e3cb7fe9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.zarr.zip,390f4d080c9c3fbf6b2e5f7091cbcbdd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45713-6143STDY8787427,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.bam,ea89cb121e1cdf4785ea620f380aac1b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.vcf.gz,dfad6e2be0c6d7d7bb01cf3c994fabc1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.zarr.zip,8eb11023c39227c3e5ea4d500d03faf5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45717-6143STDY8787429,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.bam,f5d6286cf55dd047746fea06b5d0c693,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.vcf.gz,5ab62b72a9fdd11f6ebe2decea4c10d9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.zarr.zip,ed7b61c81691c7ec10e9af514bb2ea99,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45718-6143STDY8787430,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.bam,611c37298ed8098d0dc01a31d0dc3251,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.vcf.gz,c8179466594aab3fc0e5cbdab64e8ec9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.zarr.zip,d418cdc84b5eab67df7c920c1ef9d027,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45720-6143STDY8787431,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.bam,33c5d50c38417a330fef27dcdfb2de0f,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.vcf.gz,5b92267939a6f92b69cd51e845573c05,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.zarr.zip,b9dc4ebe215ccd4ed0ef50e0e1d2ebf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45723-6143STDY8787432,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.bam,e627766b6ed2f6d986e04d738f28e279,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.vcf.gz,03e6e3d2b7ab0b7f23a404b0a7a535cb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.zarr.zip,456a56b85af8152002ab0c293dc3fc6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45724-6143STDY8787433,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.bam,8a26386ba21bb0795f14a535967c2bf7,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.vcf.gz,d76416cb68e3563ce8b5617025ac3195,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.zarr.zip,6e2f78745cfcd9905388479f4598ec4f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45728-6143STDY8787434,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.bam,23abf7b0c45fab3f2292cfff1300c8c5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.vcf.gz,f1d25f259793488fec935790bfe0f151,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.zarr.zip,2a28a78c752eb9063cf2ab548a6a85c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45734-6143STDY8787435,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.bam,44041573d6966637779039a356cebe92,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.vcf.gz,30c840a3bc996d65cbdcfeab9fad0201,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.zarr.zip,bb4d31d49e84d7053b0d4a962c5ebf3e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45735-6143STDY8787436,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.bam,0e0cf00dded68420c27e3b3d80443813,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.vcf.gz,4c0d737279bb0a52e95068fc3c3897cf,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.zarr.zip,41d9064c12e6ff66d7ea32f8e441ad45,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45737-6143STDY8787437,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.bam,8377793f28aa45017d7ec07321d7b7f4,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.vcf.gz,fcc48594bcd97c28a1dfc527c203974a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.zarr.zip,cd9bbd1e99f547593ccb12a7a41dccc8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45738-6143STDY8787438,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.bam,c97e96c7a0dd02897891f1781c371ba2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.vcf.gz,c542c178bb35c4b1a6593b15b54bc15c,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.zarr.zip,c171d40690dc1eb4d99dd10098d1384b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45739-6143STDY8787439,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.bam,07a3b15c026e6d9aea8abc62094cb671,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.vcf.gz,1c60774e9bc9cf6c15bd240d7a09a3b5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.zarr.zip,547bc11cf02f272e879896285196016a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45742-6143STDY8787440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.bam,083aef95be6f37ac9c4a7ecf7c94f71e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.vcf.gz,edb4663402075a8610830dcda0f84694,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.zarr.zip,812d3e884f055f40b2915c5c0dcbdce6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45743-6143STDY8787441,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.bam,46f29e379230e6eb2b34136f90ecceb1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.vcf.gz,834513f9ee49a467714927b5a4e8585b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.zarr.zip,83a7fb33bbbd7025d79eb33063042271,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45745-6143STDY8787442,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.bam,ddb8522541eb68c89ca5b1bd56914552,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.vcf.gz,2ad5823ac3bb56c7c1e6f91b146e7440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.zarr.zip,035b40b9d9bf0d004511b529eabd8a0c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv new file mode 100644 index 000000000..9c7ca2877 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv @@ -0,0 +1,249 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,taxon,sex_call +VBS54551-6143STDY11462443,VBS54551-6143STDY11462443,BC1861,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54553-6143STDY11462445,VBS54553-6143STDY11462445,BC1867,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54554-6143STDY11462446,VBS54554-6143STDY11462446,BC1876,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54555-6143STDY11462447,VBS54555-6143STDY11462447,BC1877,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54556-6143STDY11462448,VBS54556-6143STDY11462448,BC1881,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54557-6143STDY11462449,VBS54557-6143STDY11462449,BC1883,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54558-6143STDY11462450,VBS54558-6143STDY11462450,BC1890,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54561-6143STDY11462453,VBS54561-6143STDY11462453,BC1895,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54562-6143STDY11462454,VBS54562-6143STDY11462454,BC1905,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54563-6143STDY11462455,VBS54563-6143STDY11462455,BC1908,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54564-6143STDY11462456,VBS54564-6143STDY11462456,BC1909,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54565-6143STDY11462457,VBS54565-6143STDY11462457,BC1911,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54567-6143STDY11462459,VBS54567-6143STDY11462459,BC1919,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54569-6143STDY11462461,VBS54569-6143STDY11462461,BC1924,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54570-6143STDY11462462,VBS54570-6143STDY11462462,BC1939,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54571-6143STDY11462463,VBS54571-6143STDY11462463,BC1940,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54572-6143STDY11462464,VBS54572-6143STDY11462464,BC1946,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54574-6143STDY11462466,VBS54574-6143STDY11462466,BC1949,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54575-6143STDY11462467,VBS54575-6143STDY11462467,BC1950,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54576-6143STDY11462468,VBS54576-6143STDY11462468,BC1951,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54577-6143STDY11462469,VBS54577-6143STDY11462469,BC1955,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54578-6143STDY11462470,VBS54578-6143STDY11462470,BC1957,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54579-6143STDY11462471,VBS54579-6143STDY11462471,BC1964,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54580-6143STDY11462472,VBS54580-6143STDY11462472,BC1968,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54581-6143STDY11462473,VBS54581-6143STDY11462473,BC1972,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54582-6143STDY11462474,VBS54582-6143STDY11462474,BC1980,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54583-6143STDY11462475,VBS54583-6143STDY11462475,BC1982,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54585-6143STDY11462477,VBS54585-6143STDY11462477,BC1985,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54586-6143STDY11462478,VBS54586-6143STDY11462478,BC1987,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54588-6143STDY11462480,VBS54588-6143STDY11462480,BC2013,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54589-6143STDY11462481,VBS54589-6143STDY11462481,BC2014,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54590-6143STDY11462482,VBS54590-6143STDY11462482,BC2015,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54591-6143STDY11462483,VBS54591-6143STDY11462483,BC2016,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54592-6143STDY11462484,VBS54592-6143STDY11462484,BC2026,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54593-6143STDY11462485,VBS54593-6143STDY11462485,BC2029,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54594-6143STDY11462486,VBS54594-6143STDY11462486,BC2035,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54595-6143STDY11462487,VBS54595-6143STDY11462487,BC2039,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54596-6143STDY11462488,VBS54596-6143STDY11462488,BC2041,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54597-6143STDY11462489,VBS54597-6143STDY11462489,BC2042,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54598-6143STDY11462490,VBS54598-6143STDY11462490,BC2048,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54599-6143STDY11462491,VBS54599-6143STDY11462491,BC2049,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,dirus,UKN +VBS54644-6143STDY11462538,VBS54644-6143STDY11462538,BC4715,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,dirus,UKN +VBS54647-6143STDY11462541,VBS54647-6143STDY11462541,BC4727,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,dirus,UKN +VBS54648-6143STDY11462542,VBS54648-6143STDY11462542,BC4733,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54649-6143STDY11462543,VBS54649-6143STDY11462543,BC4734,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54650-6143STDY11462544,VBS54650-6143STDY11462544,BC4735,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54651-6143STDY11462545,VBS54651-6143STDY11462545,BC4736,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54654-6143STDY11462548,VBS54654-6143STDY11462548,BC4746,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54655-6143STDY11462549,VBS54655-6143STDY11462549,BC4749,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54656-6143STDY11462550,VBS54656-6143STDY11462550,BC4750,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54657-6143STDY11462551,VBS54657-6143STDY11462551,BC4751,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54658-6143STDY11462552,VBS54658-6143STDY11462552,BC4753,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54659-6143STDY11462553,VBS54659-6143STDY11462553,BC4755,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54661-6143STDY11462555,VBS54661-6143STDY11462555,BC4763,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54662-6143STDY11462556,VBS54662-6143STDY11462556,BC4764,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54663-6143STDY11462557,VBS54663-6143STDY11462557,BC4765,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54664-6143STDY11462558,VBS54664-6143STDY11462558,BC4766,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54665-6143STDY11462559,VBS54665-6143STDY11462559,BC4767,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54666-6143STDY11462560,VBS54666-6143STDY11462560,BC4768,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54667-6143STDY11462561,VBS54667-6143STDY11462561,BC4771,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54668-6143STDY11462562,VBS54668-6143STDY11462562,BC4773,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54669-6143STDY11462563,VBS54669-6143STDY11462563,BC4780,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54671-6143STDY11462565,VBS54671-6143STDY11462565,BC4784,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54675-6143STDY11462569,VBS54675-6143STDY11462569,BC4801,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54679-6143STDY11462573,VBS54679-6143STDY11462573,BC4811,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54680-6143STDY11462574,VBS54680-6143STDY11462574,BC4815,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54682-6143STDY11462576,VBS54682-6143STDY11462576,BC4825,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54683-6143STDY11462577,VBS54683-6143STDY11462577,BC4826,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,dirus,UKN +VBS54687-6143STDY11462581,VBS54687-6143STDY11462581,BC4836,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,dirus,UKN +VBS54689-6143STDY11462583,VBS54689-6143STDY11462583,BC4857,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,dirus,UKN +VBS54697-6143STDY11462591,VBS54697-6143STDY11462591,S1047,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54699-6143STDY11462593,VBS54699-6143STDY11462593,S1066,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54702-6143STDY11462596,VBS54702-6143STDY11462596,S1089,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54703-6143STDY11462597,VBS54703-6143STDY11462597,S1098,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54704-6143STDY11462598,VBS54704-6143STDY11462598,S1108,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54706-6143STDY11462600,VBS54706-6143STDY11462600,S1128,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54707-6143STDY11462601,VBS54707-6143STDY11462601,S1133,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54709-6143STDY11462603,VBS54709-6143STDY11462603,S1137,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54710-6143STDY11462604,VBS54710-6143STDY11462604,S1155,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54711-6143STDY11462605,VBS54711-6143STDY11462605,S1176,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54712-6143STDY11462606,VBS54712-6143STDY11462606,S1177,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54713-6143STDY11462607,VBS54713-6143STDY11462607,S1189,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54715-6143STDY11462609,VBS54715-6143STDY11462609,S1191,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54716-6143STDY11462610,VBS54716-6143STDY11462610,S1192,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54717-6143STDY11462611,VBS54717-6143STDY11462611,S1198,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54718-6143STDY11462612,VBS54718-6143STDY11462612,S1211,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54719-6143STDY11462613,VBS54719-6143STDY11462613,S1214,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54720-6143STDY11462614,VBS54720-6143STDY11462614,S1218,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54722-6143STDY11462616,VBS54722-6143STDY11462616,S1229,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54723-6143STDY11462617,VBS54723-6143STDY11462617,S1231,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54724-6143STDY11462618,VBS54724-6143STDY11462618,S1249,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54726-6143STDY11462620,VBS54726-6143STDY11462620,S1277,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54731-6143STDY11462625,VBS54731-6143STDY11462625,S1312,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54734-6143STDY11462628,VBS54734-6143STDY11462628,S1371,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54735-6143STDY11462629,VBS54735-6143STDY11462629,S1374,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54737-6143STDY11462631,VBS54737-6143STDY11462631,S1391,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54738-6143STDY11462634,VBS54738-6143STDY11462634,S1398,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54739-6143STDY11462635,VBS54739-6143STDY11462635,S1413,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54740-6143STDY11462636,VBS54740-6143STDY11462636,S1415,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54741-6143STDY11462637,VBS54741-6143STDY11462637,S1421,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54742-6143STDY11462638,VBS54742-6143STDY11462638,S1425,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54743-6143STDY11462639,VBS54743-6143STDY11462639,S1429,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,dirus,UKN +VBS54744-6143STDY11462640,VBS54744-6143STDY11462640,K0644,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,dirus,UKN +VBS54746-6143STDY11462642,VBS54746-6143STDY11462642,K0657,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,dirus,UKN +VBS54747-6143STDY11462643,VBS54747-6143STDY11462643,K0662,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,dirus,UKN +VBS54748-6143STDY11462644,VBS54748-6143STDY11462644,K0681,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54749-6143STDY11462645,VBS54749-6143STDY11462645,K0691,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54750-6143STDY11462646,VBS54750-6143STDY11462646,K0693,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54751-6143STDY11462647,VBS54751-6143STDY11462647,K0707,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54752-6143STDY11462648,VBS54752-6143STDY11462648,K0714,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54753-6143STDY11462649,VBS54753-6143STDY11462649,K0717,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54754-6143STDY11462650,VBS54754-6143STDY11462650,K0733,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54755-6143STDY11462651,VBS54755-6143STDY11462651,K0741,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54756-6143STDY11462652,VBS54756-6143STDY11462652,K0742,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54757-6143STDY11462653,VBS54757-6143STDY11462653,K0743,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54758-6143STDY11462654,VBS54758-6143STDY11462654,K0744,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54759-6143STDY11462655,VBS54759-6143STDY11462655,K0746,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54760-6143STDY11462656,VBS54760-6143STDY11462656,K0751,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54761-6143STDY11462657,VBS54761-6143STDY11462657,K0761,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54762-6143STDY11462658,VBS54762-6143STDY11462658,K0773,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54763-6143STDY11462659,VBS54763-6143STDY11462659,K0775,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54764-6143STDY11462660,VBS54764-6143STDY11462660,K0797,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54765-6143STDY11462661,VBS54765-6143STDY11462661,K0809,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54766-6143STDY11462662,VBS54766-6143STDY11462662,K0848,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54767-6143STDY11462663,VBS54767-6143STDY11462663,K0850,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54768-6143STDY11462664,VBS54768-6143STDY11462664,K0862,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54769-6143STDY11462665,VBS54769-6143STDY11462665,K0863,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54770-6143STDY11462666,VBS54770-6143STDY11462666,K0865,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54771-6143STDY11462667,VBS54771-6143STDY11462667,K0869,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54772-6143STDY11462668,VBS54772-6143STDY11462668,K0885,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54773-6143STDY11462669,VBS54773-6143STDY11462669,K0899,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54776-6143STDY11462672,VBS54776-6143STDY11462672,K0928,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54777-6143STDY11462673,VBS54777-6143STDY11462673,K0933,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54778-6143STDY11462674,VBS54778-6143STDY11462674,K0941,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54779-6143STDY11462675,VBS54779-6143STDY11462675,K0944,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54780-6143STDY11462676,VBS54780-6143STDY11462676,K0946,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54781-6143STDY11462677,VBS54781-6143STDY11462677,K0947,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54782-6143STDY11462678,VBS54782-6143STDY11462678,K0954,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54783-6143STDY11462679,VBS54783-6143STDY11462679,K0960,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54784-6143STDY11462680,VBS54784-6143STDY11462680,K0962,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54785-6143STDY11462681,VBS54785-6143STDY11462681,K0979,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54786-6143STDY11462682,VBS54786-6143STDY11462682,K0991,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54787-6143STDY11462683,VBS54787-6143STDY11462683,K1001,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54788-6143STDY11462684,VBS54788-6143STDY11462684,K1007,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54789-6143STDY11462685,VBS54789-6143STDY11462685,K1011,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54790-6143STDY11462686,VBS54790-6143STDY11462686,K1017,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54791-6143STDY11462687,VBS54791-6143STDY11462687,K1018,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54792-6143STDY11462688,VBS54792-6143STDY11462688,K1019,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54793-6143STDY11462689,VBS54793-6143STDY11462689,K1021,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,dirus,UKN +VBS54794-6143STDY11462690,VBS54794-6143STDY11462690,P14110,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54795-6143STDY11462691,VBS54795-6143STDY11462691,P14113,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54796-6143STDY11462692,VBS54796-6143STDY11462692,P14114,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54797-6143STDY11462693,VBS54797-6143STDY11462693,P14117,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54798-6143STDY11462694,VBS54798-6143STDY11462694,P14120,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54799-6143STDY11462695,VBS54799-6143STDY11462695,P14121,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54800-6143STDY11462696,VBS54800-6143STDY11462696,P14122,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54801-6143STDY11462697,VBS54801-6143STDY11462697,P14124,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54802-6143STDY11462698,VBS54802-6143STDY11462698,P14131,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54803-6143STDY11462699,VBS54803-6143STDY11462699,P14134,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,dirus,UKN +VBS54804-6143STDY11462700,VBS54804-6143STDY11462700,P14135,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54805-6143STDY11462701,VBS54805-6143STDY11462701,P14136,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54806-6143STDY11462702,VBS54806-6143STDY11462702,P14137,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54807-6143STDY11462703,VBS54807-6143STDY11462703,P14140,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54808-6143STDY11462704,VBS54808-6143STDY11462704,P14141,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54809-6143STDY11462705,VBS54809-6143STDY11462705,P14143,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54810-6143STDY11462706,VBS54810-6143STDY11462706,P14149,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54811-6143STDY11462707,VBS54811-6143STDY11462707,P14151,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54812-6143STDY11462708,VBS54812-6143STDY11462708,P14152,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54813-6143STDY11462709,VBS54813-6143STDY11462709,P14155,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54814-6143STDY11462710,VBS54814-6143STDY11462710,P14157,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54815-6143STDY11462711,VBS54815-6143STDY11462711,P14159,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54816-6143STDY11462712,VBS54816-6143STDY11462712,P14160,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54817-6143STDY11462713,VBS54817-6143STDY11462713,P14161,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54818-6143STDY11462714,VBS54818-6143STDY11462714,P14162,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54819-6143STDY11462715,VBS54819-6143STDY11462715,P14163,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54820-6143STDY11462716,VBS54820-6143STDY11462716,P14164,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54821-6143STDY11462717,VBS54821-6143STDY11462717,P14166,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54822-6143STDY11462718,VBS54822-6143STDY11462718,P14168,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54823-6143STDY11462719,VBS54823-6143STDY11462719,P14169,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54824-6143STDY11462720,VBS54824-6143STDY11462720,P14170,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54825-6143STDY11462721,VBS54825-6143STDY11462721,P14171,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54826-6143STDY11462722,VBS54826-6143STDY11462722,P14174,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54827-6143STDY11462723,VBS54827-6143STDY11462723,P14175,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54828-6143STDY11462724,VBS54828-6143STDY11462724,P14176,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54829-6143STDY11462725,VBS54829-6143STDY11462725,P14179,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54830-6143STDY11462726,VBS54830-6143STDY11462726,P14180,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54831-6143STDY11462727,VBS54831-6143STDY11462727,P14181,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54832-6143STDY11462730,VBS54832-6143STDY11462730,P14182,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54833-6143STDY11462731,VBS54833-6143STDY11462731,P14183,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54834-6143STDY11462732,VBS54834-6143STDY11462732,P14184,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54835-6143STDY11462733,VBS54835-6143STDY11462733,P14185,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54836-6143STDY11462734,VBS54836-6143STDY11462734,P14187,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54837-6143STDY11462735,VBS54837-6143STDY11462735,P14188,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54838-6143STDY11462736,VBS54838-6143STDY11462736,P14190,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54839-6143STDY11462737,VBS54839-6143STDY11462737,P14192,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54840-6143STDY11462738,VBS54840-6143STDY11462738,P14194,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54841-6143STDY11462739,VBS54841-6143STDY11462739,P14196,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54842-6143STDY11462740,VBS54842-6143STDY11462740,P14201,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54843-6143STDY11462741,VBS54843-6143STDY11462741,P18546,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54844-6143STDY11462742,VBS54844-6143STDY11462742,P18555,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54845-6143STDY11462743,VBS54845-6143STDY11462743,P18556,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54846-6143STDY11462744,VBS54846-6143STDY11462744,P18572,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54847-6143STDY11462745,VBS54847-6143STDY11462745,P18596,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54848-6143STDY11462746,VBS54848-6143STDY11462746,P18609,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54849-6143STDY11462747,VBS54849-6143STDY11462747,P18619,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,dirus,UKN +VBS54850-6143STDY11462748,VBS54850-6143STDY11462748,P18669,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54851-6143STDY11462749,VBS54851-6143STDY11462749,P18682,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54852-6143STDY11462750,VBS54852-6143STDY11462750,P18685,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54853-6143STDY11462751,VBS54853-6143STDY11462751,P18687,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54854-6143STDY11462752,VBS54854-6143STDY11462752,P18697,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54855-6143STDY11462753,VBS54855-6143STDY11462753,P18702,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54856-6143STDY11462754,VBS54856-6143STDY11462754,P18704,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54857-6143STDY11462755,VBS54857-6143STDY11462755,P18707,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54858-6143STDY11462756,VBS54858-6143STDY11462756,P18712,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54859-6143STDY11462757,VBS54859-6143STDY11462757,P18719,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54860-6143STDY11462758,VBS54860-6143STDY11462758,P18726,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54861-6143STDY11462759,VBS54861-6143STDY11462759,P18744,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54862-6143STDY11462760,VBS54862-6143STDY11462760,P18749,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54863-6143STDY11462761,VBS54863-6143STDY11462761,P18756,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54864-6143STDY11462762,VBS54864-6143STDY11462762,P18760,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54865-6143STDY11462763,VBS54865-6143STDY11462763,P18761,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54866-6143STDY11462764,VBS54866-6143STDY11462764,P18762,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54867-6143STDY11462765,VBS54867-6143STDY11462765,P18764,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54868-6143STDY11462766,VBS54868-6143STDY11462766,P18770,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54869-6143STDY11462767,VBS54869-6143STDY11462767,P18798,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54870-6143STDY11462768,VBS54870-6143STDY11462768,P18803,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54871-6143STDY11462769,VBS54871-6143STDY11462769,P18819,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54872-6143STDY11462770,VBS54872-6143STDY11462770,P18827,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54873-6143STDY11462771,VBS54873-6143STDY11462771,P18838,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54874-6143STDY11462772,VBS54874-6143STDY11462772,P18841,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54875-6143STDY11462773,VBS54875-6143STDY11462773,P18844,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54876-6143STDY11462774,VBS54876-6143STDY11462774,P18845,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54877-6143STDY11462775,VBS54877-6143STDY11462775,P18864,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54878-6143STDY11462776,VBS54878-6143STDY11462776,P18866,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54879-6143STDY11462777,VBS54879-6143STDY11462777,P18877,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54880-6143STDY11462778,VBS54880-6143STDY11462778,P18885,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54881-6143STDY11462779,VBS54881-6143STDY11462779,P18886,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54882-6143STDY11462780,VBS54882-6143STDY11462780,P18888,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54883-6143STDY11462781,VBS54883-6143STDY11462781,P18889,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54884-6143STDY11462782,VBS54884-6143STDY11462782,P18890,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54885-6143STDY11462783,VBS54885-6143STDY11462783,P18891,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54886-6143STDY11462784,VBS54886-6143STDY11462784,P18892,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54887-6143STDY11462785,VBS54887-6143STDY11462785,P18897,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54888-6143STDY11462786,VBS54888-6143STDY11462786,P18920,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54889-6143STDY11462787,VBS54889-6143STDY11462787,P18927,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54890-6143STDY11462788,VBS54890-6143STDY11462788,P18932,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54891-6143STDY11462789,VBS54891-6143STDY11462789,P18937,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN +VBS54892-6143STDY11462790,VBS54892-6143STDY11462790,P18940,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,dirus,UKN diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..6618ab19d --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 +1,VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 +2,VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 +3,VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 +4,VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 +5,VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 +6,VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 +8,VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 +9,VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 +10,VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 +11,VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 +12,VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 +13,VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 +14,VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 +15,VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 +16,VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 +17,VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 +19,VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 +20,VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 +21,VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 +22,VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 +23,VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 +24,VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 +25,VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 +26,VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 +27,VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 +28,VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 +29,VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 +30,VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 +31,VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 +32,VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 +33,VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 +34,VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 +35,VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 +36,VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 +37,VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 +38,VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 +39,VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 +40,VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 +41,VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 +42,VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 +43,VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 +44,VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 +45,VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 +46,VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 +47,VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 +48,VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 +49,VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 +50,VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 +51,VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 +52,VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 +53,VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 +54,VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 +56,VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 +57,VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 +58,VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 +59,VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 +60,VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 +61,VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 +62,VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 +63,VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 +64,VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 +65,VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 +66,VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 +67,VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 +68,VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 +69,VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 +70,VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 +71,VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 +72,VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 +73,VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 +74,VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 +75,VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 +76,VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 +77,VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 +79,VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 +80,VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 +81,VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 +82,VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 +83,VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 +84,VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 +85,VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 +86,VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 +87,VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 +88,VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 +89,VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 +90,VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 +91,VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 +92,VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 +93,VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 +94,VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 +95,VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 +96,VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 +97,VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 +98,VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 +99,VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 +100,VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 +101,VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 +102,VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 +103,VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 +104,VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 +105,VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 +106,VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 +107,VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 +108,VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 +109,VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 +110,VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 +111,VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 +112,VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 +113,VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 +114,VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 +115,VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 +116,VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 +117,VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 +118,VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 +119,VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 +120,VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 +121,VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 +122,VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 +123,VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 +124,VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 +125,VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 +126,VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 +127,VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 +128,VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 +129,VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 +130,VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 +131,VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 +132,VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 +133,VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 +134,VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 +135,VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 +136,VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 +137,VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 +138,VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 +139,VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 +140,VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 +141,VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 +142,VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 +143,VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 +144,VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 +145,VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 +146,VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 +147,VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 +148,VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 +149,VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 +150,VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 +151,VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 +152,VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 +153,VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 +154,VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 +155,VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 +156,VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 +157,VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 +158,VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 +159,VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 +160,VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 +161,VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 +162,VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 +163,VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 +164,VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 +165,VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 +166,VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 +167,VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 +168,VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 +169,VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 +170,VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 +171,VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 +172,VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 +173,VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 +174,VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 +175,VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 +176,VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 +177,VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 +178,VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 +179,VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 +180,VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 +181,VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 +182,VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 +183,VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 +184,VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 +185,VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 +186,VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 +187,VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 +188,VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 +189,VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 +190,VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 +191,VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 +192,VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 +193,VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 +194,VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 +195,VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 +196,VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 +197,VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 +198,VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 +199,VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 +200,VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 +201,VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 +202,VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 +203,VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 +204,VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 +205,VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 +206,VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 +207,VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 +208,VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 +209,VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 +210,VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 +211,VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 +212,VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 +213,VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 +214,VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 +215,VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 +216,VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 +217,VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 +218,VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 +219,VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 +220,VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 +221,VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 +222,VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 +223,VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 +224,VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 +225,VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 +226,VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 +227,VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 +228,VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 +229,VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 +230,VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 +231,VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 +232,VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 +233,VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 +234,VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 +235,VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 +236,VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 +237,VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 +238,VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 +239,VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 +240,VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 +241,VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 +242,VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 +243,VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 +244,VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 +245,VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 +246,VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 +247,VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 +248,VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 +249,VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 +250,VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 +251,VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv new file mode 100644 index 000000000..5a21c5e6d --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv @@ -0,0 +1,249 @@ +sample_id,run_ena +VBS54551-6143STDY11462443,"ERR8481010, ERR8481053, ERR8481096" +VBS54553-6143STDY11462445,"ERR8481011, ERR8481054, ERR8481097" +VBS54554-6143STDY11462446,"ERR8481012, ERR8481055, ERR8481098" +VBS54555-6143STDY11462447,"ERR8481013, ERR8481056, ERR8481099" +VBS54556-6143STDY11462448,"ERR8481014, ERR8481057, ERR8481100" +VBS54557-6143STDY11462449,"ERR8481015, ERR8481058, ERR8481101" +VBS54558-6143STDY11462450,"ERR8481016, ERR8481059, ERR8481102" +VBS54561-6143STDY11462453,"ERR8481018, ERR8481061, ERR8481104" +VBS54562-6143STDY11462454,"ERR8481019, ERR8481062, ERR8481105" +VBS54563-6143STDY11462455,"ERR8481020, ERR8481063, ERR8481106" +VBS54564-6143STDY11462456,"ERR8481021, ERR8481064, ERR8481108" +VBS54565-6143STDY11462457,"ERR8481022, ERR8481065, ERR8481109" +VBS54567-6143STDY11462459,"ERR8481023, ERR8481066, ERR8481110" +VBS54569-6143STDY11462461,"ERR8481024, ERR8481067, ERR8481111" +VBS54570-6143STDY11462462,"ERR8481025, ERR8481068, ERR8481112" +VBS54571-6143STDY11462463,"ERR8481026, ERR8481069, ERR8481113" +VBS54572-6143STDY11462464,"ERR8481027, ERR8481070, ERR8481114" +VBS54574-6143STDY11462466,"ERR8481029, ERR8481072, ERR8481116" +VBS54575-6143STDY11462467,"ERR8481030, ERR8481073, ERR8481117" +VBS54576-6143STDY11462468,"ERR8481031, ERR8481074, ERR8481118" +VBS54577-6143STDY11462469,"ERR8481032, ERR8481075, ERR8481119" +VBS54578-6143STDY11462470,"ERR8481033, ERR8481076, ERR8481120" +VBS54579-6143STDY11462471,"ERR8481034, ERR8481077, ERR8481121" +VBS54580-6143STDY11462472,"ERR8481035, ERR8481078, ERR8481122" +VBS54581-6143STDY11462473,"ERR8481036, ERR8481079, ERR8481123" +VBS54582-6143STDY11462474,"ERR8481037, ERR8481080, ERR8481124" +VBS54583-6143STDY11462475,"ERR8481038, ERR8481081, ERR8481125" +VBS54585-6143STDY11462477,"ERR8481039, ERR8481082, ERR8481126" +VBS54586-6143STDY11462478,"ERR8481040, ERR8481083, ERR8481127" +VBS54588-6143STDY11462480,"ERR8481041, ERR8481084, ERR8481128" +VBS54589-6143STDY11462481,"ERR8481042, ERR8481085, ERR8481129" +VBS54590-6143STDY11462482,"ERR8481043, ERR8481086, ERR8481130" +VBS54591-6143STDY11462483,"ERR8481044, ERR8481087, ERR8481131" +VBS54592-6143STDY11462484,"ERR8481045, ERR8481088, ERR8481132" +VBS54593-6143STDY11462485,"ERR8481046, ERR8481089, ERR8481133" +VBS54594-6143STDY11462486,"ERR8481047, ERR8481090, ERR8481134" +VBS54595-6143STDY11462487,"ERR8481048, ERR8481091, ERR8481135" +VBS54596-6143STDY11462488,"ERR8481049, ERR8481092, ERR8481136" +VBS54597-6143STDY11462489,"ERR8481050, ERR8481093, ERR8481137" +VBS54598-6143STDY11462490,"ERR8481051, ERR8481094, ERR8481138" +VBS54599-6143STDY11462491,"ERR8481052, ERR8481095, ERR8481139" +VBS54644-6143STDY11462538,"ERR8573380, ERR8573408, ERR8573436" +VBS54647-6143STDY11462541,"ERR8573381, ERR8573409, ERR8573437" +VBS54648-6143STDY11462542,"ERR8573464, ERR9588550, ERR9588579" +VBS54649-6143STDY11462543,"ERR8573382, ERR8573410, ERR8573438" +VBS54650-6143STDY11462544,"ERR8573383, ERR8573411, ERR8573439" +VBS54651-6143STDY11462545,"ERR8573384, ERR8573412, ERR8573440" +VBS54654-6143STDY11462548,"ERR8573465, ERR9588551, ERR9588580" +VBS54655-6143STDY11462549,"ERR8573466, ERR9588552, ERR9588581" +VBS54656-6143STDY11462550,"ERR8573385, ERR8573413, ERR8573441" +VBS54657-6143STDY11462551,"ERR8573386, ERR8573414, ERR8573442" +VBS54658-6143STDY11462552,"ERR8573467, ERR9588553, ERR9588582" +VBS54659-6143STDY11462553,"ERR8573387, ERR8573415, ERR8573443" +VBS54661-6143STDY11462555,"ERR8573388, ERR8573416, ERR8573444" +VBS54662-6143STDY11462556,"ERR8573389, ERR8573417, ERR8573445" +VBS54663-6143STDY11462557,"ERR8573390, ERR8573418, ERR8573446" +VBS54664-6143STDY11462558,"ERR8573391, ERR8573419, ERR8573447" +VBS54665-6143STDY11462559,"ERR8573392, ERR8573420, ERR8573448" +VBS54666-6143STDY11462560,"ERR8573469, ERR9588555, ERR9588584" +VBS54667-6143STDY11462561,"ERR8573393, ERR8573421, ERR8573449" +VBS54668-6143STDY11462562,"ERR8573470, ERR9588556, ERR9588585" +VBS54669-6143STDY11462563,"ERR8573471, ERR9588557, ERR9588586" +VBS54671-6143STDY11462565,"ERR8573472, ERR9588558, ERR9588587" +VBS54675-6143STDY11462569,"ERR8573394, ERR8573422, ERR8573450" +VBS54679-6143STDY11462573,"ERR8573395, ERR8573423, ERR8573451" +VBS54680-6143STDY11462574,"ERR8573473, ERR9588559, ERR9588588" +VBS54682-6143STDY11462576,"ERR8573396, ERR8573424, ERR8573452" +VBS54683-6143STDY11462577,"ERR8573474, ERR9588560, ERR9588589" +VBS54687-6143STDY11462581,"ERR8573475, ERR9588561, ERR9588590" +VBS54689-6143STDY11462583,"ERR8573397, ERR8573425, ERR8573453" +VBS54697-6143STDY11462591,"ERR8573398, ERR8573426, ERR8573454" +VBS54699-6143STDY11462593,"ERR8573476, ERR9588562, ERR9588591" +VBS54702-6143STDY11462596,"ERR8573477, ERR9588563, ERR9588592" +VBS54703-6143STDY11462597,"ERR8573399, ERR8573427, ERR8573455" +VBS54704-6143STDY11462598,"ERR8573400, ERR8573428, ERR8573456" +VBS54706-6143STDY11462600,"ERR8573478, ERR9588564, ERR9588593" +VBS54707-6143STDY11462601,"ERR8573402, ERR8573430, ERR8573458" +VBS54709-6143STDY11462603,"ERR8573403, ERR8573431, ERR8573459" +VBS54710-6143STDY11462604,"ERR8573404, ERR8573432, ERR8573460" +VBS54711-6143STDY11462605,"ERR8573405, ERR8573433, ERR8573461" +VBS54712-6143STDY11462606,"ERR8573479, ERR9588565, ERR9588594" +VBS54713-6143STDY11462607,"ERR8573480, ERR9588566, ERR9588595" +VBS54715-6143STDY11462609,"ERR8573406, ERR8573434, ERR8573462" +VBS54716-6143STDY11462610,"ERR8573481, ERR9588567, ERR9588596" +VBS54717-6143STDY11462611,"ERR8573482, ERR9588568, ERR9588597" +VBS54718-6143STDY11462612,"ERR8573483, ERR9588569, ERR9588598" +VBS54719-6143STDY11462613,"ERR8573484, ERR9588570, ERR9588599" +VBS54720-6143STDY11462614,"ERR8573485, ERR9588571, ERR9588600" +VBS54722-6143STDY11462616,"ERR8573486, ERR9588572, ERR9588601" +VBS54723-6143STDY11462617,"ERR8573487, ERR9588573, ERR9588602" +VBS54724-6143STDY11462618,"ERR8573407, ERR8573435, ERR8573463" +VBS54726-6143STDY11462620,"ERR8573488, ERR9588574, ERR9588603" +VBS54731-6143STDY11462625,"ERR8573489, ERR9588575, ERR9588604" +VBS54734-6143STDY11462628,"ERR8573490, ERR9588576, ERR9588605" +VBS54735-6143STDY11462629,"ERR8573491, ERR9588577, ERR9588606" +VBS54737-6143STDY11462631,"ERR8573492, ERR9588578, ERR9588607" +VBS54738-6143STDY11462634,"ERR8481140, ERR8481170, ERR8481200" +VBS54739-6143STDY11462635,"ERR8481141, ERR8481171, ERR8481201" +VBS54740-6143STDY11462636,"ERR8481142, ERR8481172, ERR8481202" +VBS54741-6143STDY11462637,"ERR8481143, ERR8481173, ERR8481203" +VBS54742-6143STDY11462638,"ERR8481144, ERR8481174, ERR8481204" +VBS54743-6143STDY11462639,"ERR8481292, ERR8481322, ERR8481352" +VBS54744-6143STDY11462640,"ERR8481293, ERR8481323, ERR8481353" +VBS54746-6143STDY11462642,"ERR8481230, ERR8481261, ERR8481382" +VBS54747-6143STDY11462643,"ERR8481145, ERR8481175, ERR8481205" +VBS54748-6143STDY11462644,"ERR8481231, ERR8481262, ERR8481383" +VBS54749-6143STDY11462645,"ERR8481146, ERR8481176, ERR8481206" +VBS54750-6143STDY11462646,"ERR8481232, ERR8481263, ERR8481384" +VBS54751-6143STDY11462647,"ERR8481294, ERR8481324, ERR8481354" +VBS54752-6143STDY11462648,"ERR8481295, ERR8481325, ERR8481355" +VBS54753-6143STDY11462649,"ERR8481147, ERR8481177, ERR8481207" +VBS54754-6143STDY11462650,"ERR8481296, ERR8481326, ERR8481356" +VBS54755-6143STDY11462651,"ERR8481148, ERR8481178, ERR8481208" +VBS54756-6143STDY11462652,"ERR8481233, ERR8481264, ERR8481385" +VBS54757-6143STDY11462653,"ERR8481297, ERR8481327, ERR8481357" +VBS54758-6143STDY11462654,"ERR8481298, ERR8481328, ERR8481358" +VBS54759-6143STDY11462655,"ERR8481234, ERR8481265, ERR8481386" +VBS54760-6143STDY11462656,"ERR8481299, ERR8481329, ERR8481359" +VBS54761-6143STDY11462657,"ERR8481300, ERR8481330, ERR8481360" +VBS54762-6143STDY11462658,"ERR8481301, ERR8481331, ERR8481361" +VBS54763-6143STDY11462659,"ERR8481302, ERR8481332, ERR8481362" +VBS54764-6143STDY11462660,"ERR8481303, ERR8481333, ERR8481363" +VBS54765-6143STDY11462661,"ERR8481304, ERR8481334, ERR8481364" +VBS54766-6143STDY11462662,"ERR8481305, ERR8481335, ERR8481365" +VBS54767-6143STDY11462663,"ERR8481306, ERR8481336, ERR8481366" +VBS54768-6143STDY11462664,"ERR8481149, ERR8481179, ERR8481209" +VBS54769-6143STDY11462665,"ERR8481307, ERR8481337, ERR8481367" +VBS54770-6143STDY11462666,"ERR8481308, ERR8481338, ERR8481368" +VBS54771-6143STDY11462667,"ERR8481309, ERR8481339, ERR8481369" +VBS54772-6143STDY11462668,"ERR8481235, ERR8481266, ERR8481387" +VBS54773-6143STDY11462669,"ERR8481310, ERR8481340, ERR8481370" +VBS54776-6143STDY11462672,"ERR8481236, ERR8481267, ERR8481388" +VBS54777-6143STDY11462673,"ERR8481311, ERR8481341, ERR8481371" +VBS54778-6143STDY11462674,"ERR8481150, ERR8481180, ERR8481210" +VBS54779-6143STDY11462675,"ERR8481312, ERR8481342, ERR8481372" +VBS54780-6143STDY11462676,"ERR8481237, ERR8481268, ERR8481389" +VBS54781-6143STDY11462677,"ERR8481151, ERR8481181, ERR8481211" +VBS54782-6143STDY11462678,"ERR8481313, ERR8481343, ERR8481373" +VBS54783-6143STDY11462679,"ERR8481152, ERR8481182, ERR8481212" +VBS54784-6143STDY11462680,"ERR8481153, ERR8481183, ERR8481213" +VBS54785-6143STDY11462681,"ERR8481154, ERR8481184, ERR8481214" +VBS54786-6143STDY11462682,"ERR8481238, ERR8481269, ERR8481390" +VBS54787-6143STDY11462683,"ERR8481155, ERR8481185, ERR8481215" +VBS54788-6143STDY11462684,"ERR8481239, ERR8481270, ERR8481391" +VBS54789-6143STDY11462685,"ERR8481156, ERR8481186, ERR8481216" +VBS54790-6143STDY11462686,"ERR8481314, ERR8481344, ERR8481374" +VBS54791-6143STDY11462687,"ERR8481157, ERR8481187, ERR8481217" +VBS54792-6143STDY11462688,"ERR8481158, ERR8481188, ERR8481218" +VBS54793-6143STDY11462689,"ERR8481240, ERR8481271, ERR8481392" +VBS54794-6143STDY11462690,"ERR8481159, ERR8481189, ERR8481219" +VBS54795-6143STDY11462691,"ERR8481241, ERR8481272, ERR8481393" +VBS54796-6143STDY11462692,"ERR8481242, ERR8481273, ERR8481394" +VBS54797-6143STDY11462693,"ERR8481243, ERR8481274, ERR8481395" +VBS54798-6143STDY11462694,"ERR8481244, ERR8481275, ERR8481396" +VBS54799-6143STDY11462695,"ERR8481245, ERR8481276, ERR8481397" +VBS54800-6143STDY11462696,"ERR8481246, ERR8481277, ERR8481398" +VBS54801-6143STDY11462697,"ERR8481247, ERR8481278, ERR8481399" +VBS54802-6143STDY11462698,"ERR8481160, ERR8481190, ERR8481220" +VBS54803-6143STDY11462699,"ERR8481248, ERR8481279, ERR8481400" +VBS54804-6143STDY11462700,"ERR8481161, ERR8481191, ERR8481221" +VBS54805-6143STDY11462701,"ERR8481249, ERR8481280, ERR8481401" +VBS54806-6143STDY11462702,"ERR8481162, ERR8481192, ERR8481222" +VBS54807-6143STDY11462703,"ERR8481315, ERR8481345, ERR8481375" +VBS54808-6143STDY11462704,"ERR8481163, ERR8481193, ERR8481223" +VBS54809-6143STDY11462705,"ERR8481316, ERR8481346, ERR8481376" +VBS54810-6143STDY11462706,"ERR8481250, ERR8481281, ERR8481402" +VBS54811-6143STDY11462707,"ERR8481317, ERR8481347, ERR8481377" +VBS54812-6143STDY11462708,"ERR8481318, ERR8481348, ERR8481378" +VBS54813-6143STDY11462709,"ERR8481319, ERR8481349, ERR8481379" +VBS54814-6143STDY11462710,"ERR8481251, ERR8481282, ERR8481403" +VBS54815-6143STDY11462711,"ERR8481252, ERR8481283, ERR8481404" +VBS54816-6143STDY11462712,"ERR8481320, ERR8481350, ERR8481380" +VBS54817-6143STDY11462713,"ERR8481321, ERR8481351, ERR8481381" +VBS54818-6143STDY11462714,"ERR8481164, ERR8481194, ERR8481224" +VBS54819-6143STDY11462715,"ERR8481165, ERR8481195, ERR8481225" +VBS54820-6143STDY11462716,"ERR8481166, ERR8481196, ERR8481226" +VBS54821-6143STDY11462717,"ERR8481253, ERR8481284, ERR8481405" +VBS54822-6143STDY11462718,"ERR8481254, ERR8481285, ERR8481406" +VBS54823-6143STDY11462719,"ERR8481255, ERR8481286, ERR8481407" +VBS54824-6143STDY11462720,"ERR8481167, ERR8481197, ERR8481227" +VBS54825-6143STDY11462721,"ERR8481256, ERR8481287, ERR8481408" +VBS54826-6143STDY11462722,"ERR8481257, ERR8481288, ERR8481409" +VBS54827-6143STDY11462723,"ERR8481258, ERR8481289, ERR8481410" +VBS54828-6143STDY11462724,"ERR8481168, ERR8481198, ERR8481228" +VBS54829-6143STDY11462725,"ERR8481259, ERR8481290, ERR8481411" +VBS54830-6143STDY11462726,"ERR8481169, ERR8481199, ERR8481229" +VBS54831-6143STDY11462727,"ERR8481260, ERR8481291, ERR8481412" +VBS54832-6143STDY11462730,"ERR8481413, ERR8481443, ERR8481473" +VBS54833-6143STDY11462731,"ERR8481414, ERR8481444, ERR8481474" +VBS54834-6143STDY11462732,"ERR8481503, ERR8573318, ERR8573349" +VBS54835-6143STDY11462733,"ERR8481504, ERR8573319, ERR8573350" +VBS54836-6143STDY11462734,"ERR8481415, ERR8481445, ERR8481475" +VBS54837-6143STDY11462735,"ERR8481416, ERR8481446, ERR8481476" +VBS54838-6143STDY11462736,"ERR8481417, ERR8481447, ERR8481477" +VBS54839-6143STDY11462737,"ERR8481505, ERR8573320, ERR8573351" +VBS54840-6143STDY11462738,"ERR8481506, ERR8573321, ERR8573352" +VBS54841-6143STDY11462739,"ERR8481418, ERR8481448, ERR8481478" +VBS54842-6143STDY11462740,"ERR8481419, ERR8481449, ERR8481479" +VBS54843-6143STDY11462741,"ERR8481420, ERR8481450, ERR8481480" +VBS54844-6143STDY11462742,"ERR8481421, ERR8481451, ERR8481481" +VBS54845-6143STDY11462743,"ERR8481422, ERR8481452, ERR8481482" +VBS54846-6143STDY11462744,"ERR8481423, ERR8481453, ERR8481483" +VBS54847-6143STDY11462745,"ERR8481424, ERR8481454, ERR8481484" +VBS54848-6143STDY11462746,"ERR8481507, ERR8573322, ERR8573353" +VBS54849-6143STDY11462747,"ERR8481425, ERR8481455, ERR8481485" +VBS54850-6143STDY11462748,"ERR8481426, ERR8481456, ERR8481486" +VBS54851-6143STDY11462749,"ERR8481427, ERR8481457, ERR8481487" +VBS54852-6143STDY11462750,"ERR8481428, ERR8481458, ERR8481488" +VBS54853-6143STDY11462751,"ERR8481429, ERR8481459, ERR8481489" +VBS54854-6143STDY11462752,"ERR8481430, ERR8481460, ERR8481490" +VBS54855-6143STDY11462753,"ERR8481508, ERR8573323, ERR8573354" +VBS54856-6143STDY11462754,"ERR8481509, ERR8573324, ERR8573355" +VBS54857-6143STDY11462755,"ERR8481431, ERR8481461, ERR8481491" +VBS54858-6143STDY11462756,"ERR8481510, ERR8573325, ERR8573356" +VBS54859-6143STDY11462757,"ERR8481511, ERR8573326, ERR8573357" +VBS54860-6143STDY11462758,"ERR8481432, ERR8481462, ERR8481492" +VBS54861-6143STDY11462759,"ERR8481433, ERR8481463, ERR8481493" +VBS54862-6143STDY11462760,"ERR8481512, ERR8573327, ERR8573358" +VBS54863-6143STDY11462761,"ERR8481513, ERR8573328, ERR8573359" +VBS54864-6143STDY11462762,"ERR8481514, ERR8573329, ERR8573360" +VBS54865-6143STDY11462763,"ERR8481515, ERR8573330, ERR8573361" +VBS54866-6143STDY11462764,"ERR8481516, ERR8573331, ERR8573362" +VBS54867-6143STDY11462765,"ERR8481517, ERR8573332, ERR8573363" +VBS54868-6143STDY11462766,"ERR8481518, ERR8573333, ERR8573364" +VBS54869-6143STDY11462767,"ERR8481519, ERR8573334, ERR8573365" +VBS54870-6143STDY11462768,"ERR8481520, ERR8573335, ERR8573366" +VBS54871-6143STDY11462769,"ERR8481521, ERR8573336, ERR8573367" +VBS54872-6143STDY11462770,"ERR8481522, ERR8573337, ERR8573368" +VBS54873-6143STDY11462771,"ERR8481434, ERR8481464, ERR8481494" +VBS54874-6143STDY11462772,"ERR8481523, ERR8573338, ERR8573369" +VBS54875-6143STDY11462773,"ERR8481435, ERR8481465, ERR8481495" +VBS54876-6143STDY11462774,"ERR8481524, ERR8573339, ERR8573370" +VBS54877-6143STDY11462775,"ERR8481525, ERR8573340, ERR8573371" +VBS54878-6143STDY11462776,"ERR8481436, ERR8481466, ERR8481496" +VBS54879-6143STDY11462777,"ERR8481526, ERR8573341, ERR8573372" +VBS54880-6143STDY11462778,"ERR8481437, ERR8481467, ERR8481497" +VBS54881-6143STDY11462779,"ERR8481438, ERR8481468, ERR8481498" +VBS54882-6143STDY11462780,"ERR8481439, ERR8481469, ERR8481499" +VBS54883-6143STDY11462781,"ERR8481440, ERR8481470, ERR8481500" +VBS54884-6143STDY11462782,"ERR8481441, ERR8481471, ERR8481501" +VBS54885-6143STDY11462783,"ERR8481442, ERR8481472, ERR8481502" +VBS54886-6143STDY11462784,"ERR8481527, ERR8573342, ERR8573373" +VBS54887-6143STDY11462785,"ERR8481528, ERR8573343, ERR8573374" +VBS54888-6143STDY11462786,"ERR8481529, ERR8573344, ERR8573375" +VBS54889-6143STDY11462787,"ERR8481530, ERR8573345, ERR8573376" +VBS54890-6143STDY11462788,"ERR8481531, ERR8573346, ERR8573377" +VBS54891-6143STDY11462789,"ERR8481532, ERR8573347, ERR8573378" +VBS54892-6143STDY11462790,"ERR8481533, ERR8573348, ERR8573379" diff --git a/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv new file mode 100644 index 000000000..57c97d076 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv @@ -0,0 +1,249 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS54551-6143STDY11462443,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.bam,97efe5d9dea91417bea00436278affd0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.vcf.gz,c3a6793a1b39faf4e0f576d8de7a8ae6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.zarr.zip,68dde74a7a4b292e9e27cb772f3284bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54553-6143STDY11462445,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.bam,84a9ae06f0253ef020c70f1e499a43ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.vcf.gz,da2d78e3ea75701b45fc7b1756cb4770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.zarr.zip,e7c8e0d5163043084455489111addfbb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54554-6143STDY11462446,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.bam,91a6cf231d918ef9f227acf49bd9cbd1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.vcf.gz,708e3f3e8be4f90900844c51004e4d3f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.zarr.zip,d83ad11b5be5d34bda77cb583492fd36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54555-6143STDY11462447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.bam,731d83a3eb2ea26478136bb95f8ce3a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.vcf.gz,4fcfc7b3f409c64c8c91bfd619c3b640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.zarr.zip,c158b45731a7d1781cf4edaa8b768081,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54556-6143STDY11462448,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.bam,f939db9a79f5ff37411ae595281b9f33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.vcf.gz,e5f7f0d99c1f0e3dd908f65b684e6ed5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.zarr.zip,98d201634eb49abe94152f98700c8640,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54557-6143STDY11462449,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.bam,71e609036f9b8d73c36411cb5d85ea89,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.vcf.gz,d19369a3a914041fe9b5704f1a36907f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.zarr.zip,f7aca3a853edd928231637544ab59e56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54558-6143STDY11462450,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.bam,e432f8a43912d9b46859aae41ff94d44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.vcf.gz,54cd53255d56f414f366af9b96263781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.zarr.zip,a696943f13027f21a0b73b2c7e7c6e9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54561-6143STDY11462453,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.bam,0ec6982d64ae52a8afc9b9e36526061a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.vcf.gz,b9e0b64028207f37afe0c2d7356de50d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.zarr.zip,022cec7416431768f081b9d7009f38bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54562-6143STDY11462454,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.bam,da5c16679e2ef41f71d7a214f6b785ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.vcf.gz,f47181fcbd78a160866a52d4828efedb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.zarr.zip,cb8f6bb2b712f69e147636110c02f12c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54563-6143STDY11462455,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.bam,ccd0fbc05932ada38027f9e7b03fb604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.vcf.gz,1e900109d7489ed0d405f41a1a81bc0e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.zarr.zip,edbe7bea5e68b8986d894860920ff913,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54564-6143STDY11462456,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.bam,b1df0a11f8ac4aea1991f0ced2055aaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.vcf.gz,81095b97eb35c5c19b4d5969982a8a76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.zarr.zip,3f573e897d8f611e14b67e712b91a5d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54565-6143STDY11462457,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.bam,6000eb9c4b424910dee6da2d28310cea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.vcf.gz,e252458fea87b9f1af447f59589d7a07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.zarr.zip,a08072b41e6fbacd5f481fe1c3dfd44a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54567-6143STDY11462459,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.bam,8ef71d008e27e4de963d588205bdb507,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.vcf.gz,24de0a49e735ec892b3b509e98846077,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.zarr.zip,6dd279b195d3ea88e0be71a6a98df0d9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54569-6143STDY11462461,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.bam,aa07842f5c8ab57265c4fc1a75f3f4be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.vcf.gz,eb0dd47af1212bc6ca0919ed1125d807,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.zarr.zip,fdbe11def287c1fdc79ce18125907e35,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54570-6143STDY11462462,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.bam,4e6c7588d8c788443121afa21b47d89d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.vcf.gz,e7e814c0e76bac7fe41e5fdeab5d1715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.zarr.zip,1342c60822ec0a22c4e9af96348990c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54571-6143STDY11462463,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.bam,fe78ac6864fef258e94f9e46547dce66,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.vcf.gz,584407449b0e193dbe46b03458bb49b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.zarr.zip,7f82a6a0914ed496ed1e85ac30cc4822,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54572-6143STDY11462464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.bam,9456e35134744766a6c7c2d0455b21a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.vcf.gz,edcf2db9a00d66eddd120b10129f3b42,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.zarr.zip,d4f75b3053c925b7d5f3188f615c0b4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54574-6143STDY11462466,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.bam,d8618e32710fba491e3061a2958933bf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.vcf.gz,b6755fc46922facf794b8744bf01a888,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.zarr.zip,57f2dde162bda08bcd1bf8ce04e40150,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54575-6143STDY11462467,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.bam,9604094ee416611b7b9e17b3c464528a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.vcf.gz,40566893c41f34035e47d8f927ebe2fd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.zarr.zip,6f92b597bc932f98637348467941163f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54576-6143STDY11462468,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.bam,ea5c7245c3e37648fd7c78eba3ad6539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.vcf.gz,2da01337e96e03f1187f7ef9a77bca9a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.zarr.zip,b1ab42fd9db6c20f1df4ea136d8804cd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54577-6143STDY11462469,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.bam,f9916abc15a9e89d731e2f205149ed23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.vcf.gz,f2f6f64121cb250c76bea2782c243b6a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.zarr.zip,ecca7d09040050b6bb4bc66bc5afd9f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54578-6143STDY11462470,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.bam,b4cbe82bc3c20604de86a963db44014a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.vcf.gz,a0d8f4d6c40480a931316cefdbdbd531,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.zarr.zip,fc44fb7e450a21a0d3545bb8b98f81f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54579-6143STDY11462471,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.bam,8c488e743eaf6769b48ba770847a9a61,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.vcf.gz,6beb9476e9bffb1f4116a3346c5ed43b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.zarr.zip,2b0dbfd7d3f30b863cee44a48c10673b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54580-6143STDY11462472,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.bam,d99cd659e330d8d5b6d056dcc1ca033d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.vcf.gz,c9a96407b0a5aa1e4b323fe3e49379c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.zarr.zip,868d4c3abc58cb50ab71b9e91f954003,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54581-6143STDY11462473,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.bam,3793346aca360a5cc48202e082fcd05b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.vcf.gz,3ac8f36493f0d97f35fceae400c548b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.zarr.zip,b84ea87c26e3712f84c5e0225e2718cc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54582-6143STDY11462474,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.bam,52d435b88078e6b944fb5a430c506d84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.vcf.gz,70b6f6d2b33f3cdc9d113641177d9513,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.zarr.zip,f4e4a3514110bc308f238d87b924fe03,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54583-6143STDY11462475,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.bam,27e6de49c503e7e9d6b29062054fcd1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.vcf.gz,62a88784d2c7e87551457bfef50cfd88,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.zarr.zip,0785f2883b097ba6d83bcb09549e08c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54585-6143STDY11462477,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.bam,b22d3ac79fb9071f08c2cffba352ce4d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.vcf.gz,432c97760b08dccb5832bf019daef1a6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.zarr.zip,f6a37777f2e9ab766a568ae13ec6e4c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54586-6143STDY11462478,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.bam,7a63d53916599b72bc0ca429f3a7e0f7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.vcf.gz,f04bdce8005ae030187c39fa40ddb5a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.zarr.zip,fc5653e20a149250ec8ae9fb84c6959f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54588-6143STDY11462480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.bam,f5017da6999f90c7709bd5adba09698d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.vcf.gz,b504b546a2fb55d38b3bd4a16ed0cd5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.zarr.zip,63f5fc2ebfafd5fea718dfc6e9fc6a88,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54589-6143STDY11462481,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.bam,7c69f2c258e08b907b18e613cc878724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.vcf.gz,4c12232c8c917bab1776fc91dd0ebf91,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.zarr.zip,a95b1d84aa5cd04bf91ee7a1fa03514c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54590-6143STDY11462482,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.bam,30da5e7d8663badf03ece55214798a87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.vcf.gz,73f94b5fdc13adfc7b140cfa974a9662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.zarr.zip,317470de8e889226eddd36f93d61f470,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54591-6143STDY11462483,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.bam,701b40328e2afeae12a46a1661c7b5be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.vcf.gz,ff5e65772e9bbec5862171784052879d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.zarr.zip,5466456ae48ea341169053bc5c388a77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54592-6143STDY11462484,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.bam,7c0e5930085c87df0bc9a7033d028ec8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.vcf.gz,b47648dd68f5fdb435ed113d8cd495ba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.zarr.zip,14e1ee3176da7ca50e476331564b8ee5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54593-6143STDY11462485,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.bam,3ce61382925a4d62d62b1f271c21c1c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.vcf.gz,31acde71665d288f52f691d29e02b28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.zarr.zip,dd36fe44fd5b23dc4aa5b2ba048becba,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54594-6143STDY11462486,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.bam,928e7ce16d84c55bc6a839cb292080cb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.vcf.gz,66e73909eba1bb580646617c3bc403c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.zarr.zip,8bf8badfe455fe6f9626eeb5ff40087f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54595-6143STDY11462487,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.bam,5f629de0e67ba6ef403de91ef6a62847,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.vcf.gz,00bfc6c8959ba6af86e6557136524600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.zarr.zip,c37a883b8ffac6d9e5c7003fcb91be49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54596-6143STDY11462488,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.bam,ef94bed7208c81601bdd6d83388c4d98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.vcf.gz,57f474691f32434b89fd1b1a1e1660bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.zarr.zip,24a4b9c1450eac50bb1f0c0ca51a61e8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54597-6143STDY11462489,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.bam,3c32687de36e78d580d101ee737d4300,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.vcf.gz,e19062709b35e359eb9a1ec81e9873c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.zarr.zip,f2e04d9cb99afa23553097d2081ddc6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54598-6143STDY11462490,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.bam,8a23ad14e83c67227b3aa9eab67f4eb0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.vcf.gz,8760d063e5420343ff1bc7e1cd88dcba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.zarr.zip,fb7d5cdb1158f67b652aaccc929dbf3b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54599-6143STDY11462491,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.bam,d770234358fe57eef50c033b44fa7cf4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.vcf.gz,674071393a5f78130657bab749cadf25,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.zarr.zip,3a03bca1fb9b38b1e87b34149967d336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54644-6143STDY11462538,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.bam,4b47e6d2b4eb419726d8e36d15df9c74,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.vcf.gz,ec6f828b4ecec5e1e5c54d568f20633a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.zarr.zip,21b35f85e678c13c99f58caa0872ac41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54647-6143STDY11462541,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.bam,da4c14ae14009ca18fe08745e5cb0553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.vcf.gz,7f6f77a33555013f5bcc863ae2c87019,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.zarr.zip,8275059a44d94477b7fff2b2da38811e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54648-6143STDY11462542,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.bam,3d2dd1255ac47f1acab28929c9ff7f40,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.vcf.gz,fa551ba6e26319368ab2a8705131af7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.zarr.zip,0ac582803fa4be1c9bb627d2a0c9ef4b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54649-6143STDY11462543,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.bam,86bd422f7ff8d59096957efd43857ca4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.vcf.gz,a1e83510083c0ce73f163042f1cd71eb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.zarr.zip,956d8e2972118fc75da6022c845e32a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54650-6143STDY11462544,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.bam,78b8083e602f838aa89ba04ea3346c54,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.vcf.gz,e391af10ff98fc75798199c64da082a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.zarr.zip,aac0f12b3b9c64f41bb60cb85be67410,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54651-6143STDY11462545,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.bam,cf048c9732ae521bb5060ec902f12ac7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.vcf.gz,a56ed6f288de07a7f61edd17c95a462e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.zarr.zip,54890c893b21ef937128be27bb5c45d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54654-6143STDY11462548,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.bam,88233ecdf18811984b3fdf2065b2f503,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.vcf.gz,7df3bc2e3a6d7f73e0777882b480a78a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.zarr.zip,1e8cf20a47ec64bc217b65dde648a0ae,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54655-6143STDY11462549,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.bam,e69942e62e0c8982493a39671e020be1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.vcf.gz,6dd0e336e3158d0960f159f9baca3a3b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.zarr.zip,a999cfebd9e0af49f51e9d096f97cd1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54656-6143STDY11462550,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.bam,798eca2900569ce564b25241b59c1dc5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.vcf.gz,34ffbf3c14955a1d833d99fbfb7e124f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.zarr.zip,00286923859ffc2cd724445cd24ac9f0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54657-6143STDY11462551,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.bam,0f184cb4d298652c80c0fceff889be5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.vcf.gz,973092cf4e7b1626fa1c0bde2d5ba1dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.zarr.zip,39d616be932dab7a4e5954fb27d2611b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54658-6143STDY11462552,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.bam,58ce16a2b2094fce0f48d28a5688d875,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.vcf.gz,4be5848baa0be9b7752759cf368dcf70,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.zarr.zip,61e70aa0e93e23e8090adf9410b68d23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54659-6143STDY11462553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.bam,709d9a3adc19e979c18a51dc431f34e0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.vcf.gz,2b5ec4335e17d48f62ec43ef0891c343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.zarr.zip,8da756fe335cdca0c736ba830443307b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54661-6143STDY11462555,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.bam,c427da43e4469c10b1194c3e822514a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.vcf.gz,eeae18c4fe1fb2888ca80a4fd048188f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.zarr.zip,b5b6ae356697814bb1b56cceeec5f20b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54662-6143STDY11462556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.bam,b81b662e42680d54908a61f4d3c75a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.vcf.gz,230a1adf42882c7b639d7172eb349a7d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.zarr.zip,0caf8e1cac988e297ff3fd8871c36bf8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54663-6143STDY11462557,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.bam,bb1b0a0673bca972062849e2f0ae0464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.vcf.gz,02386997d4f31c707834a3b75be27bb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.zarr.zip,8d3f1e8f27a2e64bcc45e767c62e571a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54664-6143STDY11462558,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.bam,00b0ba191e614dbd183c5b841ecb9571,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.vcf.gz,6960b431962a906259a2d10e54af2d1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.zarr.zip,05565ac636c4bee2d31e66f5bb5f444c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54665-6143STDY11462559,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.bam,e0c1c4900172c8fbf79c6977a03f4259,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.vcf.gz,9be4ed95348f3e2ddcafd289c1e584bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.zarr.zip,9d9137c6cd35d0ec1c6d5784b09c8265,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54666-6143STDY11462560,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.bam,1ebf5aa128e77167059b0b0f149628ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.vcf.gz,df2b967f3d6263bb8f00baf30b519205,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.zarr.zip,8dafd0fcf085b3779f7debbf44d08b07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54667-6143STDY11462561,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.bam,918b689038e4ba21fd05322bfd175036,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.vcf.gz,dc3c14f263bbf0661cdf8eff2ad1d987,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.zarr.zip,8e079e428b3ae0782818584e7b5c2109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54668-6143STDY11462562,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.bam,e81f4776773cc43b1ffc25cabde8d1b6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.vcf.gz,777820fd9cbd78b552864d71e0bf9539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.zarr.zip,a5542a3fa53d99a3a61161c2f99f1b3f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54669-6143STDY11462563,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.bam,6a0a1a495100b9e018142227cd473823,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.vcf.gz,8e5e63dd4725d6cc516d3c0577853514,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.zarr.zip,42935d2a09c2d61463e2d02fb2175a1d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54671-6143STDY11462565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.bam,7f63c9a25fc2354d7f745bed7b769d00,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.vcf.gz,b2f5420bca6db18211f417843b1a5291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.zarr.zip,e573f9029018ea243e0eed462ec92a41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54675-6143STDY11462569,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.bam,c7a6955016fe15f86b2912e8533e1607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.vcf.gz,95820ec9976f8a64c9b25d352a6fd341,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.zarr.zip,37ec0c19d07d39d26a88632fdbcadd48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54679-6143STDY11462573,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.bam,83d7560aaa23bb5b67c7138c5699d840,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.vcf.gz,3f2e630bf5d815e31f1f0d94c89f5465,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.zarr.zip,f63238be47e6e93d369c018477b57434,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54680-6143STDY11462574,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.bam,b08a1ae7396c3f83f478d48e26c26a80,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.vcf.gz,74ebfcc7dde97556ce1f63e85050690e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.zarr.zip,06d8117ef46688a2f9c6aa98c201bb42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54682-6143STDY11462576,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.bam,eb3fb94bf5db48d55445c1f5910b3fff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.vcf.gz,55111c997ad3d0a077fc2f963d322029,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.zarr.zip,30c9a22ba6d3ac804130ba9a7421c5c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54683-6143STDY11462577,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.bam,2e484f032a654a705121fe30280e19c4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.vcf.gz,5ae7374340a5088238dae28ff32a5ff0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.zarr.zip,0d8440e84f3cec951a8d17a413054ca9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54687-6143STDY11462581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.bam,1c298cfa4f2d0b0ac943b261802e6ef3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.vcf.gz,e8c77b088e0d4c5a2f04bdd72cbb8e50,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.zarr.zip,cd783dbeb4f8672e8ff0acac4e1c2e6d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54689-6143STDY11462583,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.bam,9194922b057ab7c51b0e12d0de855ccb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.vcf.gz,03c83e232020a3de5e546a0b0ad7ac7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.zarr.zip,6484833e294c0655ffb6ee124acb1f2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54697-6143STDY11462591,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.bam,864fced78c826cc128dbb7dc3cbd56f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.vcf.gz,1a8e2c27416ff1a90f096a6535540a37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.zarr.zip,dcfadfa0aa47f0addc8179ee87ce5987,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54699-6143STDY11462593,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.bam,3722fe3faf17711e60abdfe665cbd27f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.vcf.gz,b9cf254150558f0d6d7c2e0b31971f5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.zarr.zip,5a6d36773b6ec3aa2e3f8080f1afc3bc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54702-6143STDY11462596,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.bam,26f71185fbe9627658d6b5cfa5919c7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.vcf.gz,383e73cacb5d66030eacd1b3b96db554,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.zarr.zip,aed8a521620468d24a2eb0e0801a6242,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54703-6143STDY11462597,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.bam,3962db4ebe00677c69b025a0e5fca004,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.vcf.gz,10341d9d7e9242bdd635f64d976e6877,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.zarr.zip,6ea46fcb5d20395f623402e1040dd023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54704-6143STDY11462598,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.bam,5e7d2f4b76a9aa7131a95c8e11cf87a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.vcf.gz,ef2bbd3a4742fd8bee2f4be57f3e5aef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.zarr.zip,e24ee96b6bcfa086a52110ad06393307,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54706-6143STDY11462600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.bam,0e807eea0efed300c3d9a06e87e55564,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.vcf.gz,6c3facd53689630e9239f66145ff008a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.zarr.zip,751a8fd7428aa925f2f6f228efbcc30c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54707-6143STDY11462601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.bam,421b8ebc6648b7fa821330e23390d5f1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.vcf.gz,bcde2390b9ffce03f02bee6bec2b407c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.zarr.zip,9aa1bed3291fc94252ceda38ee65cf33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54709-6143STDY11462603,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.bam,b0812d226e50294e1d779f376d1dc35c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.vcf.gz,c0595eb27f78c7bec097ce7c90f8f9d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.zarr.zip,df17225fcd3a15bf06906744d6b13f0b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54710-6143STDY11462604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.bam,11fb67e7d767a56a6fcd6ae2f002b627,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.vcf.gz,8a8b4a166aca3d064843be959be02d0d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.zarr.zip,7b88b97ae48cbdfd359ccd2e8a81264f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54711-6143STDY11462605,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.bam,0068de98e1ebab88c75f66c4bef95cf3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.vcf.gz,34627dbf6bca52f96a00bd83dc11599a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.zarr.zip,538735e32a5ab7be6c6b964e40037317,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54712-6143STDY11462606,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.bam,15410baa5d6614ff3fb1e186dee62e83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.vcf.gz,18c6faad2eecc8c17e19e2acf25fc3ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.zarr.zip,76f8eb6a3791cfc0e2b18d02ad82b350,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54713-6143STDY11462607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.bam,5b639b0de8ecca7eeed376697df806a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.vcf.gz,8565e7e70faae98e3058ff1bfc311180,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.zarr.zip,7b753dfb7f789c7b09a50cdea9282e9d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54715-6143STDY11462609,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.bam,6dc541e25154971abe4991b2bc96f8a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.vcf.gz,b4d6e9f52669aed549656e8b8e54f91c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.zarr.zip,0a43668cf9be1b4aa7de7308bdeb0dec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54716-6143STDY11462610,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.bam,8e862b3b8c02b12f2b08a65dd6421197,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.vcf.gz,e4317a6bd9003b403765e3a6a7d062ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.zarr.zip,e0f3505e66a9f20ef15ea2a8544fed9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54717-6143STDY11462611,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.bam,00f934eed20cf567bb92818dd93a0c36,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.vcf.gz,7dd3239d5a46b1374b99206b07d3cc85,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.zarr.zip,54215633231f4acaff98779569c54b80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54718-6143STDY11462612,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.bam,53b9d628dd114d3a47db9e6450bca92c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.vcf.gz,20df33a43602c661615c184e26417107,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.zarr.zip,4725c6668d97b163b7bcfce93c8ea0de,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54719-6143STDY11462613,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.bam,6329a26136b18569e5d8b166ac14115f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.vcf.gz,aec26d21eaa932738476333d986b3c3c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.zarr.zip,997ad36a3d8ec5d79c2d9679a22f4282,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54720-6143STDY11462614,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.bam,bfa7ff18f2f81e20abd6ca7ec27dc94d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.vcf.gz,546fdbc7928d5c9e1538769646055a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.zarr.zip,03c1d85e808f2195b8217e9d75411538,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54722-6143STDY11462616,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.bam,0fd8b45ebae829e659a2cf9024bf4c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.vcf.gz,d7c79845abc912106aec82b1e9af5cee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.zarr.zip,5ac91d515a40889418e8e8ee314f261d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54723-6143STDY11462617,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.bam,7cb4d3be81b8b66969c1513f7c89fc0c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.vcf.gz,f84622822fa23246c3817baadbfffe1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.zarr.zip,4f51397484fa09c075b8b1b41fd6aba3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54724-6143STDY11462618,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.bam,ea22711a8ae0544208280408be8ac979,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.vcf.gz,08cd72cbb7f1765e6ca2928172027af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.zarr.zip,a9d543e4fde1a45b8f747e6f523ac71f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54726-6143STDY11462620,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.bam,7ffc1433b3e7ae03fb1673d732ac00b8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.vcf.gz,25c8dcfa7eba123ede7e54e8a96f01de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.zarr.zip,0e5ce96bdbca942c22a129c1c2189ecd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54731-6143STDY11462625,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.bam,8fa21580dfa0940b053a6b21ca7db852,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.vcf.gz,cd20ca9845f310c02b663fe019cdc13e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.zarr.zip,89b4ed030a43d344f9a33b3e255fd044,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54734-6143STDY11462628,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.bam,e988ca397b195047697d938602f1201a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.vcf.gz,1d9f33e3bfd889f8b00f410a69e3e58d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.zarr.zip,a0079058cae0169572c4fa17c775fb2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54735-6143STDY11462629,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.bam,b7f84052146fa48fe23d73228476d594,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.vcf.gz,415ecf8682850c6e30b89fc58118b601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.zarr.zip,748a0b4d4434140bbfdb42239e27995f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54737-6143STDY11462631,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.bam,1dd2a45bd7fb842a08766bbb82328425,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.vcf.gz,de46ae3d45f92387f146374b6ac35304,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.zarr.zip,bc25ffb94f6a12e4becf3fe6370c9109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54738-6143STDY11462634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.bam,5a95fa4ace2d194b5e3e7b1b10f207fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.vcf.gz,2cc03bd1f90693217a52062df7f977be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.zarr.zip,1e692d9f46cb8d1b4bdecc9f5aebaeeb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54739-6143STDY11462635,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.bam,cb8d83ee7ded8c3311fb245c1f43be83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.vcf.gz,58884dbc5ca93deae56f3a5eb2a4014c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.zarr.zip,c6376fe4f39eacc0061352897eb4d34f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54740-6143STDY11462636,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.bam,f780aa22b6212f9ff1e53d5eb1d739b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.vcf.gz,7100de624a730e65e187185765402384,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.zarr.zip,1125057d6e96c613217b91b8cf2075cb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54741-6143STDY11462637,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.bam,10381cfba8c25737b83c3662c4ff710a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.vcf.gz,e110fe70945451ae539788cda86b03e4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.zarr.zip,2558c1c5648ff4bbddb200ed97c5fa42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54742-6143STDY11462638,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.bam,f28667b7a6099836beec6a34d8c4c2df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.vcf.gz,2d10c63ee958f99d9bbe55daec5f1066,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.zarr.zip,efe7b5b02cc4485b8814a876a58a1cb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54743-6143STDY11462639,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.bam,54776a4d1b522847668c4c9186b335b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.vcf.gz,7a311d4605fea7f4e23f9e2e7beabe6e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.zarr.zip,ade90a4e1190973972492022a7090e7f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54744-6143STDY11462640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.bam,27032dcf1b52b85faf8da6a24e149a65,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.vcf.gz,6d30bf6c8af8ce2b4435e395e40e2584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.zarr.zip,5b875048ce91ed4efae79716ae5bdfe7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54746-6143STDY11462642,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.bam,75e233b4f079d5d31fdeca61860653d5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.vcf.gz,cfe35b558d078f3f2524b7b1bc8167a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.zarr.zip,b863d1227294806042611c9708e7304a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54747-6143STDY11462643,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.bam,0d60b4ce41a1ef4a08d9869e3780bc76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.vcf.gz,abfc791d558667d50b16696cf7d71189,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.zarr.zip,f567458bfa7cea006e10e5e78ad5521e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54748-6143STDY11462644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.bam,7c5846f930aa65fe1bd605788e6bc689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.vcf.gz,3099f80f2a1c3867403c5750235621b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.zarr.zip,fd5093d7ce78c539981807c2be9b2f49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54749-6143STDY11462645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.bam,a088b537bf0a1a22f7539180de2ef2d3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.vcf.gz,9cc841530315c788964f8cfb1de80be7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.zarr.zip,f18fa7cab61223c4acb4ae1363ea4836,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54750-6143STDY11462646,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.bam,3c489231cb051176fec8246057844447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.vcf.gz,909277c4561146cbba9888cb63cf0681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.zarr.zip,b8063a17fa1173f2af0372f1158e038e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54751-6143STDY11462647,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.bam,093e46d7835a0232c47c9018c591b4b2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.vcf.gz,dfe9702e7b5c5fd1b5b84bc03ef03876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.zarr.zip,87f2e506afa7ce8d0c8701c6d34ec8f2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54752-6143STDY11462648,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.bam,829eea96de66746b38b855a786f1cb02,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.vcf.gz,43fc868cb2fabb1d50f5dc5bffb72d1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.zarr.zip,5274a1cde34e9165c364bc9ca225cc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54753-6143STDY11462649,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.bam,39e51620e801abb25d8ad823c81307ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.vcf.gz,64ce24ac62736da39b1df9ea9dc70034,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.zarr.zip,d31066b5c86d56a0dc83ea1bea4ebcfd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54754-6143STDY11462650,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.bam,d82eb44300462db4e467cea91882714e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.vcf.gz,625f5b02cbd9874c538b481b2ec43a63,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.zarr.zip,dc293a8a206fc9ab8b59e5df9169fa66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54755-6143STDY11462651,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.bam,76883ffcdbb034c6f17684f37c3449ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.vcf.gz,b9b33c954162be5740647fc1a7f06f1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.zarr.zip,0b692c97936224019ae426f4bf4abd6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54756-6143STDY11462652,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.bam,fed6ba305fcdc9d9f61dca91e69d144b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.vcf.gz,26daa7a8c970f9a682d3c24f6804b31a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.zarr.zip,d61571987b924cddb48b740f972d627e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54757-6143STDY11462653,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.bam,7f151ce5c4016b1d06f8d64f11e4b78b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.vcf.gz,b5232e85050161256c2e0de2004e537a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.zarr.zip,a99ede4a045c00764a0e5e5d759e9241,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54758-6143STDY11462654,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.bam,29a19c28855fcb5e8209fdbc0594094f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.vcf.gz,9466482497115165b98068fd5f943291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.zarr.zip,63eae7007e2c8c9f0aaca00ef91dcea9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54759-6143STDY11462655,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.bam,23df1052351cbf1d8f45b4bb0bb5ceea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.vcf.gz,ef0d350e13b18c18ac797ccbf81ffcda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.zarr.zip,fa93eebb865cd154ab16b792296e45a0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54760-6143STDY11462656,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.bam,919d4b0537340ba8886b01fe9a560aa4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.vcf.gz,cacd854e85a485704058e4d344ea35d0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.zarr.zip,5fed219e3589c056236c43d433ea0bda,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54761-6143STDY11462657,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.bam,d7391220704452c9e081cdf097ea5392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.vcf.gz,3e4543a68ddb48a26b62003edec9dc96,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.zarr.zip,5a9314aaed5fb19bff8daa8592304f0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54762-6143STDY11462658,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.bam,359da51d06736b8a0ef06fbb78b89496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.vcf.gz,5799292d3e1d223470a915beb6f3d8f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.zarr.zip,190a93017194ddf68a4e870574e458dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54763-6143STDY11462659,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.bam,8b375a48e2c3c386ed4443b5aa083f7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.vcf.gz,3dae6d6036e54f15c0183c4d7fd2028c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.zarr.zip,d8b6e8edbb8fedc5dcacc48b9f778d9c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54764-6143STDY11462660,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.bam,b46de9db61b03c7eb4bf96a824fe2c39,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.vcf.gz,4a60eae040f8ac1247422415cfd23eaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.zarr.zip,8053a7e9f35175e9aa9dfeb3ea6908b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54765-6143STDY11462661,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.bam,76ccbfbbc17f0fcde81587f276936704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.vcf.gz,70fcde7f4d61d76ffc279d0f1e5110b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.zarr.zip,9f2235ec2f45a9845df52d4f67732fe8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54766-6143STDY11462662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.bam,f78ca17f2658fd1ada134dcaaa708f83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.vcf.gz,167969e9e9b33459ed2a228a09472eca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.zarr.zip,6b2eab61c80ccff27fd1630c2ec2e78b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54767-6143STDY11462663,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.bam,d0373bf618a707f0728e05c6120df03c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.vcf.gz,5b81fcc9940f023d897d4accd1e0e748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.zarr.zip,d46d7c027611dc9af245f6c7e33891f4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54768-6143STDY11462664,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.bam,1db9ad31739f8bdc11aaa38a64445ec3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.vcf.gz,5baae69e036f5fe792d95f377bcd9353,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.zarr.zip,d1d24e663e132e6e4ee6c9d71765b1fc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54769-6143STDY11462665,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.bam,333d710a4f961a8d145f9cf41d5f3d5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.vcf.gz,6f212ef8404b58dda782253aa3fb3323,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.zarr.zip,d351a471fece4823806649af7d213850,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54770-6143STDY11462666,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.bam,03d94b1b2ec54b5d3eb3dfb61e1a1e52,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.vcf.gz,71186c19719ddda1e49aae5ea6800e3d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.zarr.zip,28c5315a89ed4fab8ee99675f3b34887,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54771-6143STDY11462667,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.bam,c89f0db7880f6f0a47a01fec02370fb5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.vcf.gz,c1f19e1e47da600c279b9aefca33c1df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.zarr.zip,7d3df0fe8b6bafbbdca6c7a78193c536,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54772-6143STDY11462668,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.bam,8ca58f054d19f77ab586e514a91d5751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.vcf.gz,f170659cf72164028af56258f67f9318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.zarr.zip,a8cfc0099c431dc7cc53db9486ab0275,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54773-6143STDY11462669,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.bam,754982f6e6f8bb68028892289ab94645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.vcf.gz,ed507330ed7ba88ae1fe3a3ae80b1b71,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.zarr.zip,cec0fcbbf4b6b53cceb84f4df6691ede,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54776-6143STDY11462672,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.bam,1086453a4278074c8a3e2209b2b18e4e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.vcf.gz,df52cb01a654120a096ea53b0a58f346,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.zarr.zip,c628e6779ad9e0cbe19760fe75388129,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54777-6143STDY11462673,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.bam,6964aab6b8de6c49f86d7d15155e81c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.vcf.gz,34864908ff188ca83cbd69192dbd6aff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.zarr.zip,63af08046ce067bbf228d44faa5edc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54778-6143STDY11462674,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.bam,ce9725e2a5a2209ece4573a81c400fda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.vcf.gz,091634a24d1251dfae3a20d3a95b63ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.zarr.zip,25e16f9fd6c2e7de44632ee490c4e990,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54779-6143STDY11462675,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.bam,f626d20f0ad99418a3cca3e51c609af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.vcf.gz,10aa6f5716382599370e3532860c9493,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.zarr.zip,740e4d7a7f082a0364109cc391446b4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54780-6143STDY11462676,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.bam,5eaf5ccbcf1f0f89e68470c6eb50c392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.vcf.gz,04c6aab85ecfe42f9d174155411bfde3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.zarr.zip,fe380a0cf7651958cd65cad3fa9e34f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54781-6143STDY11462677,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.bam,049cffe317896849b94a8808971e1834,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.vcf.gz,66c08796d924e4c50d060eab459f9fc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.zarr.zip,7f015ac8da83427420ad5ec433cb87d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54782-6143STDY11462678,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.bam,8cc293a147b49e39d58dca16ca74d99b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.vcf.gz,6dd3291ad4d14dee86ea30220e3b408f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.zarr.zip,f7085bdb09f605f057eea5108e214d0f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54783-6143STDY11462679,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.bam,3068ecf5cce1b6d6b09bc42372c2d297,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.vcf.gz,4f36ce9e89f0f39874406a1c5552a343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.zarr.zip,8a713081e1ededb6dd34b6ad200ae68e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54784-6143STDY11462680,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.bam,54be49961134fb5dde0a7e582b363ba4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.vcf.gz,936ad60d8d94150bff18a06e6ecf99d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.zarr.zip,38b142ae068b138d5accd8f331d20ddf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54785-6143STDY11462681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.bam,090a00cdb01bc000f4b9f7bfe4ab18ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.vcf.gz,0635ac44e69dde8c98ab51bbcf47aaaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.zarr.zip,693dd377c85ebae048dadd3400d52394,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54786-6143STDY11462682,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.bam,0979c8b2314f3fdfb7d77b5460a7c0bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.vcf.gz,c6f349c715a85d00c5df805a17948b6d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.zarr.zip,0094d5843f2f578631d3facccc0c9f4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54787-6143STDY11462683,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.bam,bda1f2c9353535007780d45c4d01214e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.vcf.gz,cf9a0e6fd528d8cf802ccd1f79454f4a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.zarr.zip,9c7e88b7d50b3121f263b4addfaf97e1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54788-6143STDY11462684,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.bam,577771defd36e6648d4ca6bfc9748bd9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.vcf.gz,f89af859591ec1cb892295b2da085cfb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.zarr.zip,f0313df866bf7145e81d03c4e96fe59c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54789-6143STDY11462685,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.bam,7ebb93a9067b2502299143fd94b638c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.vcf.gz,7d81a2486d112efd94feb32390c41a46,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.zarr.zip,97c326fce5635f9e54646a20bd755b7b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54790-6143STDY11462686,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.bam,1b277dcc044c67d6ce15d3f2670b2a20,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.vcf.gz,59e8a3351025405f196ac47fa55a2bad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.zarr.zip,688621d8b0d53a907489d1ad92b28be6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54791-6143STDY11462687,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.bam,48ff88de855b583f647d33b4b2335714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.vcf.gz,a072ed0463c1eadc7b8d5222a0e716f3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.zarr.zip,02c401166a2714de9a96bda8bdce4039,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54792-6143STDY11462688,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.bam,ba45aa54572de7349fc83ed2ca2005b0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.vcf.gz,30833aab98207ae95994e187d7936ec9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.zarr.zip,78009bf6b58ffc9ed73c042edbf7d0d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54793-6143STDY11462689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.bam,bf50ecd477758664eb0aea94210d6f98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.vcf.gz,b38b974e7a63a412cb90b61613f95bee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.zarr.zip,6229124b983d34b05cd9717ee0bc8f6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54794-6143STDY11462690,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.bam,36aabf8adea964b42215436b706c9af6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.vcf.gz,fbc7db27d5a672bb5c342b0b751fde59,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.zarr.zip,875fd82d196d1df4f51ebe1f636a70b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54795-6143STDY11462691,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.bam,f90def20e01822ddcf1702004670d5f9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.vcf.gz,b6e11692d575526b1240ed7cf53c3e1a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.zarr.zip,a3a1b5e0154dade049d7fbc9b4bb94c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54796-6143STDY11462692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.bam,8571509b0ec0e48b491e310d41355d41,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.vcf.gz,13777feff4a693b903821b900a97205b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.zarr.zip,9f8f715b3027f5144ac0f69dc1f0728a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54797-6143STDY11462693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.bam,3d087db5ada4365261d7f437e82ce400,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.vcf.gz,4d54e973e281507651e8f9829d6bac38,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.zarr.zip,134c0ad3083068ed41e008b28e36a13b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54798-6143STDY11462694,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.bam,0667c71147f542182a85a58b9ef4b6df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.vcf.gz,61cfd3e5b91e8ee94f2a4ba9d7417435,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.zarr.zip,887d65d1415229a784632bd315e7c95a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54799-6143STDY11462695,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.bam,412ad6fa79f6ca74306ac4c5a23edc44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.vcf.gz,b702bb17315746743080177204f2c9ac,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.zarr.zip,042e3d89c583ae83136942472a1481ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54800-6143STDY11462696,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.bam,84e677effc18a1df8a4c227c401c54e5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.vcf.gz,2bc87b8f408249fbb6b92198a338f8ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.zarr.zip,1dfbdc81ef60fe0bc5c33e2b9bcef207,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54801-6143STDY11462697,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.bam,bad8eb895c47608be5b376425e1c3626,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.vcf.gz,f4123553eb80644abcd8a489646c2c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.zarr.zip,429126ec61c17cc51c5fda6439f162f6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54802-6143STDY11462698,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.bam,1ddc9860a81cfd1ef8937ac03e17f8bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.vcf.gz,758e5671daf3d46aaebdc04f19e84748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.zarr.zip,c569097f5d586cdb5fa6e52ef868b29c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54803-6143STDY11462699,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.bam,a0034e75dea207cc6d80e460f5438294,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.vcf.gz,0e140ea5eef544e9a452246ed9ee16c6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.zarr.zip,38e34f96a4107e6597cb12b5be323669,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54804-6143STDY11462700,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.bam,a877be3051221a855143429ace7e769c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.vcf.gz,d990e3b63c8633f373b0ca5835c43943,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.zarr.zip,7583cda3e61c2b8405ca9cbcad55d2e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54805-6143STDY11462701,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.bam,3359b332ee76a353121645d8a2ef841a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.vcf.gz,f44736a78fb8b64d5ae3136fdd02013f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.zarr.zip,b80e514a9edc4b002042f0202f96d179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54806-6143STDY11462702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.bam,dac6e5beb0d0b82a1b2eb6b1f3ca7059,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.vcf.gz,80e84d85ac9d4404c714ee1f02b4b15e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.zarr.zip,0d2ca1d0acedc076d3aee68ac78a0651,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54807-6143STDY11462703,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.bam,98160f2b46373e0c29e6da9388b62c35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.vcf.gz,4234ed76792df6400b63977b5a648565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.zarr.zip,4ecc416a785d0e9f4375c16f52b7b14d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54808-6143STDY11462704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.bam,6f90b484cea0195ba13ef6fe266397de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.vcf.gz,80fc8f7487a284e8e5e1bd80b55f2709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.zarr.zip,583afa33247bce6f5649923417236e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54809-6143STDY11462705,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.bam,428011768dcd4d46c308cf0e564139f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.vcf.gz,831f9a56fd58d95b4fb1411b68fa77d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.zarr.zip,dc22d51f893f143e88a8e0206ac678e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54810-6143STDY11462706,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.bam,4d28ebc0553cafcb9e93184de3e6b9a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.vcf.gz,79c184f7e116505a336e9a97e77a5d18,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.zarr.zip,9865f69da3183a4c1cfd6a00d0b07cb6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54811-6143STDY11462707,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.bam,3a01930cbaf0d45ac0f19d90966c5010,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.vcf.gz,0a688869672de4057f6341fbc7a3ae17,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.zarr.zip,00b59aa23f28e785188df4df5ceb1423,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54812-6143STDY11462708,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.bam,88da908823034a7e296f54e38f9682dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.vcf.gz,7bd0e0489421a8094831c84a46429c8b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.zarr.zip,fe1379198221a30f8d6e4a6607afcd62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54813-6143STDY11462709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.bam,4bb3d1071a165e053b6e14d43d317381,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.vcf.gz,319586cc7e5075b64bc2ee2c88041e32,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.zarr.zip,7cb1eab0c7f39d7929b84c073984023a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54814-6143STDY11462710,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.bam,05c9dd486509a468b778b27d132122b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.vcf.gz,0f94286ca852934d7fbe1a8ed9f3ff15,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.zarr.zip,562ac025030b2962c83fb51f9b732c31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54815-6143STDY11462711,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.bam,d5562260e4f6cd4acfb17f86a47a8bff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.vcf.gz,dff5eebfb4d0e06afbcc001728d9b288,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.zarr.zip,3dc27b77733cf1e6b04c0d4f509535a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54816-6143STDY11462712,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.bam,5eebb2107706d48ffef88db3865466f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.vcf.gz,61ae89ca7e9575447e4c382cdeec2a5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.zarr.zip,1d216c4179827dd1c6f4341a4c6d1b5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54817-6143STDY11462713,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.bam,0cd292314b762d31be643565e8fad0b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.vcf.gz,d68dba2003cd9da4c5c90004d4e5915b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.zarr.zip,0a55dc962795b462daf3f79326c97586,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54818-6143STDY11462714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.bam,aae9fa1bca537c1b3bd78241fb93460a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.vcf.gz,6f249d984650616c8a1bdf40cb10d172,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.zarr.zip,966b796158fb98fc45ea63efa03042b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54819-6143STDY11462715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.bam,477f16d6869ae9bf1537107bbab23ec1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.vcf.gz,352d00f7ab7cdb91e6dd20f44b062373,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.zarr.zip,0120dc29ea52999ab5cff5838ec11841,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54820-6143STDY11462716,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.bam,79490f8efe60912c46d3399820fb1e2d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.vcf.gz,3377984a685faae60a4fc899a5a34b5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.zarr.zip,1fa67776040580012b3b9d6311aaa902,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54821-6143STDY11462717,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.bam,6d4193c21d29d89bd28f68cc38de5fb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.vcf.gz,096b9a813015dd689032737d78ce8cff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.zarr.zip,cc92897456b189492a046748dc54649b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54822-6143STDY11462718,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.bam,eee3ce0584d1dc748836c14d6d0921ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.vcf.gz,e048a1077e6b7157e9e634cc521b4f72,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.zarr.zip,70a94f7286b53c366044452829a3b097,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54823-6143STDY11462719,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.bam,8e1fb9dfa1a14e50f99e7d112a47eae1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.vcf.gz,38b1b597fda142810e54c0a77d2e0eb6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.zarr.zip,e21a7309d1ef489498739cc55ec439ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54824-6143STDY11462720,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.bam,ead93fbfe4996d0c8378141640c70c3a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.vcf.gz,563ff1074a076be0c339b2660d8662e9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.zarr.zip,33b745e2e79ccf1dcea97b9703eda33c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54825-6143STDY11462721,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.bam,cc33dc7664c46e9cc095cdd54af4f6a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.vcf.gz,23107a4f1da02dedc7895eb16a82ade2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.zarr.zip,81ca76214a9ab961066ae1acba2bf68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54826-6143STDY11462722,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.bam,93a48db148011753cb7d9c3dc80e531f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.vcf.gz,e844dd03ae3df36a0e15bd5e99da0354,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.zarr.zip,008b74a16038b89a9078e48cadd4da5d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54827-6143STDY11462723,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.bam,d88112a68497fa8cb06147704d7feb6f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.vcf.gz,9e3589d09a428ad4769cc8bc5c340601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.zarr.zip,9736ab44c9457fce50af034373fd672a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54828-6143STDY11462724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.bam,3fd2a403f97c5fbc0844a5b85e9974bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.vcf.gz,d41a8f2436441df566d87db7d7b6915e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.zarr.zip,8ae9bb1cdc2ec4da9ca22e517b53ed01,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54829-6143STDY11462725,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.bam,971a1c4f3cd0462dd2a7f003e4294f94,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.vcf.gz,41bcea2b7beefe54d535c28e96206692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.zarr.zip,66b3f639ade1532992b7381d91118e07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54830-6143STDY11462726,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.bam,95440c3260374bc620dfb50c171570c2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.vcf.gz,cfa1026a053cf8e0594f8545ddd2eac1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.zarr.zip,d2409a99225bdaf025423e94782b5edb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54831-6143STDY11462727,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.bam,96b68b75ddaee170ec6b4e0462691132,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.vcf.gz,142c91b415497eb2309252f21a7c44c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.zarr.zip,a25c9d87719ea365a207dc379e0bfcf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54832-6143STDY11462730,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.bam,5d8d22ed098aadd4302e42d4956ba0c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.vcf.gz,16cdf71943b7cdafedcb248f77f323a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.zarr.zip,12793c12e4d155ea0e0f8d8d03674c4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54833-6143STDY11462731,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.bam,2428a74977ad359bf0279435ea419876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.vcf.gz,2b8f30844840e8d951e1678082c74fbe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.zarr.zip,710c20af514d8d03a4410753da146889,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54834-6143STDY11462732,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.bam,64cd43538b4edef92f5ab1082400dabf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.vcf.gz,dc6747e7ff6adbe5fa1abb14de3cd4a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.zarr.zip,0d3b4b3f82899cb34852e44e828ed354,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54835-6143STDY11462733,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.bam,e2495fdcdf5f4849bd308fecc21039e8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.vcf.gz,fccd46867ead1f9dacefa2a9ca7d66a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.zarr.zip,5a5d66f8ca562dd11a89b76697246ad8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54836-6143STDY11462734,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.bam,2391d1e671d719daec4fc6de187151c3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.vcf.gz,3bb370a16ae2b7cc7cb4baa123172ffa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.zarr.zip,cb36ece63b7d8179ff9e331cbf0de5fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54837-6143STDY11462735,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.bam,82f81003cd5cf1e07d7f703df777df33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.vcf.gz,99a2f194cdc4e16e92140ed93a1ea10a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.zarr.zip,3862588907eb4b9e3e2a503890e80b62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54838-6143STDY11462736,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.bam,9dd87018fa68bb9b43c3ac8dbc31ce64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.vcf.gz,af7c18728fbee4cee3b12fbcdeebf28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.zarr.zip,efdcdce1b120e0861085f2b23d44159d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54839-6143STDY11462737,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.bam,70efa624cb36277b5b2066599598cd35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.vcf.gz,932794832fcc6b3e3c41c211c9ebae1d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.zarr.zip,0eb9d6e1d5181c1e2eddc104d7080d5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54840-6143STDY11462738,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.bam,1f9da8f24df85b598fab950a2287273f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.vcf.gz,8aec06bd23966b3de8db876896fcac07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.zarr.zip,75d101df0a102eb01d4f67532bd12384,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54841-6143STDY11462739,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.bam,eca2800141306919d04113853864b86c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.vcf.gz,60bd8f60eeadbd4f96a1a8a96fcaa000,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.zarr.zip,21a577d6fb9eb475de2ed497214c879d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54842-6143STDY11462740,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.bam,898fa9e4de027ba097bf44890ccbc123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.vcf.gz,74f5c4be317e11c5f4ef083d9a8e38af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.zarr.zip,c62892b7005da8a377dd801cd15c27d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54843-6143STDY11462741,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.bam,7524b2024150e53ff7b06a72594100ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.vcf.gz,8de75e53c2b4c8d77ab26ebee3229c1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.zarr.zip,daf5600830fe6344c3b99a0f10dbc95d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54844-6143STDY11462742,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.bam,f93f68f964bfdb287958a65c25dc67a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.vcf.gz,76e35d5042f4dbb5a0fc07c3de575496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.zarr.zip,b9feee6dc38f7a83c3daa8630402e8b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54845-6143STDY11462743,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.bam,e3c6050546c5930209476176dc88d247,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.vcf.gz,101243be031effd24f5b44a9c015c3d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.zarr.zip,bd91448e0ccc062f482640a91c8edd97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54846-6143STDY11462744,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.bam,e65953560f8ccff294d5a0e9289a29b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.vcf.gz,09e425a296e025ea104cf5fe0ca75608,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.zarr.zip,cfbb402c9b1817646d298647ac94580e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54847-6143STDY11462745,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.bam,e6e264790559a0e3d9dc1efd78309d9b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.vcf.gz,f20cc3f08154fb434d2bb751db36944d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.zarr.zip,9c60f04095afc7128d4694946a03bc64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54848-6143STDY11462746,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.bam,2d5c45e86eac932d5a4303f4889f9634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.vcf.gz,e6f1a8b3601d9c0b60cc2a969c151693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.zarr.zip,b428a84c00d7b9b3ffd7818df560d206,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54849-6143STDY11462747,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.bam,b740d34c3aada650d3f84856fe21f581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.vcf.gz,8cbaae1540fed7a59a2cec014bd5b94a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.zarr.zip,5e330a709a0288513a0e74486c53e6ea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54850-6143STDY11462748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.bam,c75f2db2dfa02c0ba9f6f862c63e2910,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.vcf.gz,8eaa2644b0a026056049c44966d6691a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.zarr.zip,5f19974e1c65f034b3d90ae5067ec532,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54851-6143STDY11462749,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.bam,b387b3463bfd6cc55042bbe4e3faa146,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.vcf.gz,ba682bc5a4c9841dbef3e2a71fe6e3f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.zarr.zip,b4bcf6c7a1653d453d0a279e78fca1e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54852-6143STDY11462750,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.bam,9dab7ddb8915fac6931ca857d44be415,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.vcf.gz,ae5d282ed8f889022ce94c559aebc7aa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.zarr.zip,86674336f08fae8af7079948bc10b8a6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54853-6143STDY11462751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.bam,60a7f06d9b39315c89b3bf80d5d2bfa2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.vcf.gz,33c91cd3fc7b1a01f5c1c78cc7745508,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.zarr.zip,a1eedd448be699ecb4db56d8a89818c0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54854-6143STDY11462752,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.bam,a5dcb044d18069233666586a2f499f23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.vcf.gz,351f3d39be752515d589e4b6e565d0b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.zarr.zip,a6aef2cf4fce39c9acbdc94785d83b41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54855-6143STDY11462753,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.bam,5669deae51e1096266ebe61085a98a4c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.vcf.gz,dca55e44d7525b11e457507436490ed3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.zarr.zip,3ab22bfcbcb110e252fabba0e20e1d67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54856-6143STDY11462754,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.bam,18e4ea568489f1a6574cdc08e40cb7c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.vcf.gz,a917806551b1e85eb9a72c47e3d9837c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.zarr.zip,b046c7881b9e6e66c4a0819993d06d8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54857-6143STDY11462755,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.bam,668e054d5fa42c74e3be0e0459157584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.vcf.gz,ad413be118b12db8e58d00a43ace3170,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.zarr.zip,a33b439f56a5dfdc55a79802ef07d6b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54858-6143STDY11462756,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.bam,126333fe08fd191d03798b9275ee0b90,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.vcf.gz,d56d727e5118adb7638e6ff48029215e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.zarr.zip,a924b373967f18e6eec44f87cd56a35a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54859-6143STDY11462757,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.bam,ada832de7351d6b5b5800f83db8a877e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.vcf.gz,56f1c584321fe4c70d82be5a267916d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.zarr.zip,c22bdea09592288ae72d76ae39fe9ce8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54860-6143STDY11462758,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.bam,d10c077aaf856634e59cff4ce329c56e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.vcf.gz,1056d05abc874d913c109afc4baba185,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.zarr.zip,1e1cd9940db1e36b9a21dc3354fed2f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54861-6143STDY11462759,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.bam,642c98b6ad0955276dddf8269be12e7f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.vcf.gz,afe22537f4d9ab0603897b176512e40e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.zarr.zip,9c69f379cb5d8dbd021190e9c24d5f68,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54862-6143STDY11462760,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.bam,c531ce2bec5518bdb0a8ef19ca07d497,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.vcf.gz,d706c78e8723e49a383087c7f6ab26fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.zarr.zip,960a4127e1b9047c2137101443918b23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54863-6143STDY11462761,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.bam,cc6e3d1d4b7cc25428f35553afa32b1e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.vcf.gz,a7d66c8a9e5f0c7b0f57cc1d8ce6bac3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.zarr.zip,08a7f4f72ed2bca6236d8179af9611b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54864-6143STDY11462762,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.bam,00cb78c02041989b869ab0d87154373e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.vcf.gz,e445bef3e7a3fe349532c4a160e40123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.zarr.zip,1162b7d7a4ea401000915b5a6c51e7d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54865-6143STDY11462763,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.bam,7ecf56567499365322868e692361a49c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.vcf.gz,dfbc05f835737bdef4087e7564f741d9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.zarr.zip,e1c86ba468fa33062e02a9c7e87c2108,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54866-6143STDY11462764,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.bam,19fcdb92d4b594dceab977c5d5451a43,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.vcf.gz,ba7e07033545307fd80da45f252bd480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.zarr.zip,d5ad148bb33b78dfc7e45b1fbcaae0c6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54867-6143STDY11462765,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.bam,19d7ed0ccdc0a1e0584c8ffe6bb5891c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.vcf.gz,808f10ca2d7c31096c841a9a92fe769d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.zarr.zip,df2136606990a2601424a0b2e9f1f6e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54868-6143STDY11462766,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.bam,1d0c465e066505f3254975c9f82ce8be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.vcf.gz,234e9eaa4da91d60d55009ac8dbd5748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.zarr.zip,a3afee3a3278b3f778c1ea1e6605658b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54869-6143STDY11462767,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.bam,9567c5ab79100bfd90347c90dc0adeed,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.vcf.gz,72941c254f5f738b426fb5d93df800c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.zarr.zip,2a11ccf863b58f8162c63fa852c1f67d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54870-6143STDY11462768,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.bam,f86ac9aceb47a85940b575cb94df6057,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.vcf.gz,155ee0361b5080b675528082d587ffc9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.zarr.zip,d91100884242d9134b3009042be610fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54871-6143STDY11462769,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.bam,019236241d43ba4e594b7e9907571f64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.vcf.gz,4a3b752064c4c460c06c02b251b3b31f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.zarr.zip,c7256b883d301ae702a13f706e90fe66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54872-6143STDY11462770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.bam,afc77f27da1eb1f948e013f2948e2702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.vcf.gz,436df5f37fcb0101bd92cd9722a85f53,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.zarr.zip,2d7d3f9ef9a88bc7dddfa212f5a6c8ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54873-6143STDY11462771,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.bam,575d27d9fa1bee7cc798fb902ce017af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.vcf.gz,eddd41134440d0f9141f94a5d03dbcfe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.zarr.zip,ceaee9b301ab1b7958c408f63f32312a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54874-6143STDY11462772,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.bam,fcc30a419851d486bf9413d6625decaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.vcf.gz,b4c997527df3f003be3cda3c39ee2953,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.zarr.zip,14cc809c09711c73bfe4073ec022699a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54875-6143STDY11462773,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.bam,959b5ce27dc3d1353fbe879859f66bca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.vcf.gz,220d1c866a314d5a9c0d5d99b24edd8d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.zarr.zip,e0b7e311dd8cac047edc114cace35645,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54876-6143STDY11462774,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.bam,b6f3abc0c8bb7d211d6bd0995843fde9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.vcf.gz,84575a95e2f9e6b02149b6cd41de1d99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.zarr.zip,839cd2a821def7b731b689e624801280,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54877-6143STDY11462775,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.bam,e75a2f48da3cbff3e01b94f16a5fd324,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.vcf.gz,032ee7ddfee2a3b8dbd912cc104bb509,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.zarr.zip,b820237457e9c0c9d3132cd5eb275f36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54878-6143STDY11462776,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.bam,63b3809fa65ab76e91d71b2ada246b87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.vcf.gz,f256a4632eb91e57291b9ee1a57bdbc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.zarr.zip,b1f65f98c99fe7b378f9a02025ac8e6f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54879-6143STDY11462777,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.bam,aff1928a1404861d7ead11a18d03c32c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.vcf.gz,13d8b09db3cd76936b0c5e00aedc3f84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.zarr.zip,76d729e03f524cbc93e5fda14051f66b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54880-6143STDY11462778,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.bam,5e599526049a41b11ccb3b3cd6bec0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.vcf.gz,c558a0db4ca49dd9130be41685844df9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.zarr.zip,6f95310d6b7f0b1f50fedaf054867b29,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54881-6143STDY11462779,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.bam,7d557399fbb46aa6dcb0fa3667520a57,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.vcf.gz,e684ae3760710859c9a74dfa27447838,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.zarr.zip,407fa653a03118ec2c4b6fbb6bfe8b16,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54882-6143STDY11462780,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.bam,88bb6d8663cdc8fa2a3aa43da4fe8318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.vcf.gz,4555fe31188b017a092bf10f24a7e0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.zarr.zip,2766be38e3d9162d462cbcf6f76d8929,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54883-6143STDY11462781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.bam,8ed44d33044c89302aea16005e01f290,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.vcf.gz,357b39f1d307114c1f2ca3606ad3290e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.zarr.zip,6a09c43081bebb975135cb022363dbcd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54884-6143STDY11462782,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.bam,9ccf79f6d59cf3fff1741c2523762fde,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.vcf.gz,bd9e964d6554700b74f9c7d17fa6c3bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.zarr.zip,3dbae1efe380bd9e33434a092f59ef6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54885-6143STDY11462783,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.bam,bdb1460888d7252ede0530d56995d2da,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.vcf.gz,2a3e90b307f2bfcc4b92f1618a603a99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.zarr.zip,39391d15360adcc443c24f645714dab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54886-6143STDY11462784,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.bam,79b336d94d7eaf3b862631f27c0ecf04,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.vcf.gz,5c470a9e0effd10e44ed04bce6e27556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.zarr.zip,30a2697c7e30e3f76092d3e8b16fb5d0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54887-6143STDY11462785,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.bam,07ced3802dd70f25031d08361ea063e3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.vcf.gz,82e08f3117824029c4077c118c950e37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.zarr.zip,9d8b45a667efc974d5209c849044ad42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54888-6143STDY11462786,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.bam,6b0cb7e99e028a94d14fff097ff18921,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.vcf.gz,b70bb5bbaeeacce580e883adddfc663f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.zarr.zip,4ed5740b619a5b0fec9f9a3a05d93c04,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54889-6143STDY11462787,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.bam,3cc7eacef330edc2f930ee59957c036c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.vcf.gz,b6fc34e58df64f24b6a0a6293158a4f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.zarr.zip,5755eed38f36b2cc96d0c4474cdedaf4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54890-6143STDY11462788,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.bam,3f5ae3d13d99457893849b06f1b79183,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.vcf.gz,8389e8547c3d8890e55d0b35fb62b644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.zarr.zip,62041e5fe5b4aac9c6446640491d56c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54891-6143STDY11462789,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.bam,6e57ddf5631c7ec722ba3997c0f807b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.vcf.gz,3c27898b5c3772e506670832c5dd7efc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.zarr.zip,5b476563ff3b0b295757c1b0586fb84e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54892-6143STDY11462790,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.bam,5766579d8bd76a0091f1745eaa8f3baf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.vcf.gz,d8a7afe16889ff50fd09e016cb3c2c5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.zarr.zip,97709d7d2c81bcadb26488ef8eb108d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv new file mode 100644 index 000000000..542879be1 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv @@ -0,0 +1,220 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,taxon,sex_call +VBS45974-6296STDY9478582,VBS45974-6296STDY9478582,329,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,dirus,UKN +VBS45976-6296STDY9478584,VBS45976-6296STDY9478584,339,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A/2",2019,2,9.110,98.878,dirus,UKN +VBS45979-6296STDY9478587,VBS45979-6296STDY9478587,920,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,3,9.134,98.888,dirus,UKN +VBS45982-6296STDY9478589,VBS45982-6296STDY9478589,1007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,4,9.134,98.888,dirus,UKN +VBS46005-6296STDY9478612,VBS46005-6296STDY9478612,1845,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46042-6296STDY9478649,VBS46042-6296STDY9478649,2014,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46050-6296STDY9478657,VBS46050-6296STDY9478657,2043,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46059-6296STDY9478666,VBS46059-6296STDY9478666,2523,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,dirus,UKN +VBS46066-6296STDY9478673,VBS46066-6296STDY9478673,2909,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,dirus,UKN +VBS46067-6296STDY9478674,VBS46067-6296STDY9478674,2935,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,dirus,UKN +VBS46078-6296STDY9478687,VBS46078-6296STDY9478687,3109,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46083-6296STDY9478692,VBS46083-6296STDY9478692,3185,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,dirus,UKN +VBS46084-6296STDY9478693,VBS46084-6296STDY9478693,3191,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,dirus,UKN +VBS46087-6296STDY9478696,VBS46087-6296STDY9478696,3325,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,dirus,UKN +VBS46088-6296STDY9478697,VBS46088-6296STDY9478697,3330,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,dirus,UKN +VBS46098-6296STDY9478707,VBS46098-6296STDY9478707,3932_1278,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,dirus,UKN +VBS46121-6296STDY9478730,VBS46121-6296STDY9478730,4591,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,dirus,UKN +VBS46141-6296STDY9478750,VBS46141-6296STDY9478750,5202,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46145-6296STDY9478754,VBS46145-6296STDY9478754,5206,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46146-6296STDY9478755,VBS46146-6296STDY9478755,5209,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46154-6296STDY9478763,VBS46154-6296STDY9478763,5221,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46168-6296STDY9478779,VBS46168-6296STDY9478779,5244,Kevin Kobylinski,Thailand,"Vibhavadi, six, A",2019,10,9.252,98.850,dirus,UKN +VBS46172-6296STDY9478782,VBS46172-6296STDY9478782,5265,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,10,9.340,98.880,dirus,UKN +VBS46173-6296STDY9478783,VBS46173-6296STDY9478783,5313,Kevin Kobylinski,Thailand,"Vibhavadi, ten, F",2019,10,9.353,98.875,dirus,UKN +VBS46175-6296STDY9478785,VBS46175-6296STDY9478785,5496,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46180-6296STDY9478790,VBS46180-6296STDY9478790,5506_1278,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46183-6296STDY9478793,VBS46183-6296STDY9478793,5592,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,dirus,UKN +VBS46187-6296STDY9478797,VBS46187-6296STDY9478797,5614,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,dirus,UKN +VBS46188-6296STDY9478798,VBS46188-6296STDY9478798,5619,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,dirus,UKN +VBS46189-6296STDY9478799,VBS46189-6296STDY9478799,5647,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46190-6296STDY9478800,VBS46190-6296STDY9478800,5649,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46192-6296STDY9478801,VBS46192-6296STDY9478801,5683,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, N",2019,10,9.083,98.878,dirus,UKN +VBS46198-6296STDY9478807,VBS46198-6296STDY9478807,5736,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS45975-6296STDY10244530,VBS45975-6296STDY10244530,331,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,dirus,UKN +VBS45983-6296STDY10244537,VBS45983-6296STDY10244537,1200,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, C1",2019,4,9.080,98.879,dirus,UKN +VBS45984-6296STDY10244538,VBS45984-6296STDY10244538,1363,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,dirus,UKN +VBS45985-6296STDY10244539,VBS45985-6296STDY10244539,1364,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,dirus,UKN +VBS45986-6296STDY10244540,VBS45986-6296STDY10244540,1494,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D1",2019,4,9.107,98.869,dirus,UKN +VBS45987-6296STDY10244541,VBS45987-6296STDY10244541,1498,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D2",2019,4,9.107,98.869,dirus,UKN +VBS45988-6296STDY10244542,VBS45988-6296STDY10244542,1687,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45989-6296STDY10244543,VBS45989-6296STDY10244543,1688,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45991-6296STDY10244545,VBS45991-6296STDY10244545,1711,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS45992-6296STDY10244546,VBS45992-6296STDY10244546,1719,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45993-6296STDY10244547,VBS45993-6296STDY10244547,1738,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45994-6296STDY10244548,VBS45994-6296STDY10244548,1750,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45995-6296STDY10244549,VBS45995-6296STDY10244549,1759,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45996-6296STDY10244550,VBS45996-6296STDY10244550,1771,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45997-6296STDY10244551,VBS45997-6296STDY10244551,1774,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS45998-6296STDY10244552,VBS45998-6296STDY10244552,1780,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS45999-6296STDY10244553,VBS45999-6296STDY10244553,1793,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46000-6296STDY10244554,VBS46000-6296STDY10244554,1810,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46001-6296STDY10244555,VBS46001-6296STDY10244555,1818,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46002-6296STDY10244556,VBS46002-6296STDY10244556,1826_1278,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46003-6296STDY10244557,VBS46003-6296STDY10244557,1830,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46004-6296STDY10244558,VBS46004-6296STDY10244558,1840,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46006-6296STDY10244560,VBS46006-6296STDY10244560,1854,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46007-6296STDY10244561,VBS46007-6296STDY10244561,1859,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46008-6296STDY10244562,VBS46008-6296STDY10244562,1860,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46009-6296STDY10244563,VBS46009-6296STDY10244563,1866,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46010-6296STDY10244564,VBS46010-6296STDY10244564,1871,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46011-6296STDY10244565,VBS46011-6296STDY10244565,1872,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46012-6296STDY10244566,VBS46012-6296STDY10244566,1875,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46013-6296STDY10244567,VBS46013-6296STDY10244567,1881,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46014-6296STDY10244568,VBS46014-6296STDY10244568,1887,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46016-6296STDY10244570,VBS46016-6296STDY10244570,1908,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46017-6296STDY10244571,VBS46017-6296STDY10244571,1912,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46019-6296STDY10244573,VBS46019-6296STDY10244573,1931,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46020-6296STDY10244574,VBS46020-6296STDY10244574,1932,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46021-6296STDY10244575,VBS46021-6296STDY10244575,1934,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46022-6296STDY10244576,VBS46022-6296STDY10244576,1936,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46025-6296STDY10244579,VBS46025-6296STDY10244579,1946,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46026-6296STDY10244580,VBS46026-6296STDY10244580,1949,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46027-6296STDY10244581,VBS46027-6296STDY10244581,1950,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46028-6296STDY10244582,VBS46028-6296STDY10244582,1951,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46029-6296STDY10244583,VBS46029-6296STDY10244583,1954,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46030-6296STDY10244584,VBS46030-6296STDY10244584,1956,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46031-6296STDY10244585,VBS46031-6296STDY10244585,1960,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46032-6296STDY10244586,VBS46032-6296STDY10244586,1966,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46033-6296STDY10244587,VBS46033-6296STDY10244587,1975,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46034-6296STDY10244588,VBS46034-6296STDY10244588,1977,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46035-6296STDY10244589,VBS46035-6296STDY10244589,1978,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46036-6296STDY10244590,VBS46036-6296STDY10244590,1989,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,dirus,UKN +VBS46037-6296STDY10244591,VBS46037-6296STDY10244591,1999,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46038-6296STDY10244592,VBS46038-6296STDY10244592,2000,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46039-6296STDY10244593,VBS46039-6296STDY10244593,2003,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46040-6296STDY10244594,VBS46040-6296STDY10244594,2006,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46041-6296STDY10244595,VBS46041-6296STDY10244595,2011,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46043-6296STDY10244597,VBS46043-6296STDY10244597,2017,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46044-6296STDY10244598,VBS46044-6296STDY10244598,2018,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,dirus,UKN +VBS46045-6296STDY10244599,VBS46045-6296STDY10244599,2028,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46046-6296STDY10244600,VBS46046-6296STDY10244600,2037,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,dirus,UKN +VBS46047-6296STDY10244601,VBS46047-6296STDY10244601,2039,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,dirus,UKN +VBS46048-6296STDY10244602,VBS46048-6296STDY10244602,2040,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,dirus,UKN +VBS46049-6296STDY10244603,VBS46049-6296STDY10244603,2041,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46051-6296STDY10244605,VBS46051-6296STDY10244605,2044,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46052-6296STDY10244606,VBS46052-6296STDY10244606,2045,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46053-6296STDY10244607,VBS46053-6296STDY10244607,2047,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,dirus,UKN +VBS46054-6296STDY10244608,VBS46054-6296STDY10244608,2431,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E1",2019,5,9.068,98.846,dirus,UKN +VBS46055-6296STDY10244609,VBS46055-6296STDY10244609,2444,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,dirus,UKN +VBS46056-6296STDY10244610,VBS46056-6296STDY10244610,2499,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,dirus,UKN +VBS46057-6296STDY10244611,VBS46057-6296STDY10244611,2503,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,dirus,UKN +VBS46060-6296STDY10244614,VBS46060-6296STDY10244614,2569,Kevin Kobylinski,Thailand,"Vibhavadi, eleven, A",2019,5,9.360,98.876,dirus,UKN +VBS46061-6296STDY10244615,VBS46061-6296STDY10244615,2688,Kevin Kobylinski,Thailand,"Vibhavadi, nine, A3",2019,1,9.331,98.878,dirus,UKN +VBS46063-6296STDY10244617,VBS46063-6296STDY10244617,2841,Kevin Kobylinski,Thailand,"Phanom, three, C2",2019,6,8.890,98.663,dirus,UKN +VBS46064-6296STDY10244618,VBS46064-6296STDY10244618,2889,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,dirus,UKN +VBS46065-6296STDY10244619,VBS46065-6296STDY10244619,2894,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,dirus,UKN +VBS46068-6296STDY10244622,VBS46068-6296STDY10244622,2937,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,dirus,UKN +VBS46069-6296STDY10244625,VBS46069-6296STDY10244625,2944,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46070-6296STDY10244626,VBS46070-6296STDY10244626,2960,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46071-6296STDY10244627,VBS46071-6296STDY10244627,2961,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46072-6296STDY10244628,VBS46072-6296STDY10244628,3007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46073-6296STDY10244629,VBS46073-6296STDY10244629,3037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,dirus,UKN +VBS46074-6296STDY10244630,VBS46074-6296STDY10244630,3041,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,dirus,UKN +VBS46075-6296STDY10244631,VBS46075-6296STDY10244631,3062,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,dirus,UKN +VBS46076-6296STDY10244632,VBS46076-6296STDY10244632,3077,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,dirus,UKN +VBS46077-6296STDY10244633,VBS46077-6296STDY10244633,3079,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,dirus,UKN +VBS46079-6296STDY10244635,VBS46079-6296STDY10244635,3129,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, G",2019,6,9.135,98.882,dirus,UKN +VBS46080-6296STDY10244636,VBS46080-6296STDY10244636,3142,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, G",2019,6,9.063,98.877,dirus,UKN +VBS46081-6296STDY10244637,VBS46081-6296STDY10244637,3170,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,dirus,UKN +VBS46082-6296STDY10244638,VBS46082-6296STDY10244638,3183,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,dirus,UKN +VBS46085-6296STDY10244641,VBS46085-6296STDY10244641,3249,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,dirus,UKN +VBS46086-6296STDY10244642,VBS46086-6296STDY10244642,3316,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,dirus,UKN +VBS46089-6296STDY10244645,VBS46089-6296STDY10244645,3388,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,dirus,UKN +VBS46090-6296STDY10244646,VBS46090-6296STDY10244646,3396,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,dirus,UKN +VBS46091-6296STDY10244647,VBS46091-6296STDY10244647,3397,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B2",2019,7,9.304,98.886,dirus,UKN +VBS46092-6296STDY10244648,VBS46092-6296STDY10244648,3581,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, H",2019,7,9.110,98.880,dirus,UKN +VBS46093-6296STDY10244649,VBS46093-6296STDY10244649,3623,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,dirus,UKN +VBS46094-6296STDY10244650,VBS46094-6296STDY10244650,3710,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, I",2019,7,9.140,98.881,dirus,UKN +VBS46095-6296STDY10244651,VBS46095-6296STDY10244651,3745,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,dirus,UKN +VBS46096-6296STDY10244652,VBS46096-6296STDY10244652,3780,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,7,9.082,98.861,dirus,UKN +VBS46097-6296STDY10244653,VBS46097-6296STDY10244653,3840,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,dirus,UKN +VBS46099-6296STDY10244655,VBS46099-6296STDY10244655,3954,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,dirus,UKN +VBS46100-6296STDY10244656,VBS46100-6296STDY10244656,4148,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,dirus,UKN +VBS46101-6296STDY10244657,VBS46101-6296STDY10244657,4149,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,dirus,UKN +VBS46102-6296STDY10244658,VBS46102-6296STDY10244658,4151,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,dirus,UKN +VBS46103-6296STDY10244659,VBS46103-6296STDY10244659,4156_1278,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,dirus,UKN +VBS46104-6296STDY10244660,VBS46104-6296STDY10244660,4235,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, M",2019,8,9.126,98.903,dirus,UKN +VBS46105-6296STDY10244661,VBS46105-6296STDY10244661,4274,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,dirus,UKN +VBS46106-6296STDY10244662,VBS46106-6296STDY10244662,4310,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46107-6296STDY10244663,VBS46107-6296STDY10244663,4321,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46108-6296STDY10244664,VBS46108-6296STDY10244664,4407,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,dirus,UKN +VBS46109-6296STDY10244665,VBS46109-6296STDY10244665,4430,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,dirus,UKN +VBS46110-6296STDY10244666,VBS46110-6296STDY10244666,4472,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, J",2019,8,9.053,98.852,dirus,UKN +VBS46111-6296STDY10244667,VBS46111-6296STDY10244667,4488,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, K",2019,8,9.052,98.857,dirus,UKN +VBS46112-6296STDY10244668,VBS46112-6296STDY10244668,4511,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,dirus,UKN +VBS46113-6296STDY10244669,VBS46113-6296STDY10244669,4556,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46114-6296STDY10244670,VBS46114-6296STDY10244670,4560,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46115-6296STDY10244671,VBS46115-6296STDY10244671,4577,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46116-6296STDY10244672,VBS46116-6296STDY10244672,4578,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46117-6296STDY10244673,VBS46117-6296STDY10244673,4579,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46118-6296STDY10244674,VBS46118-6296STDY10244674,4585,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,dirus,UKN +VBS46119-6296STDY10244675,VBS46119-6296STDY10244675,4589,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,dirus,UKN +VBS46120-6296STDY10244676,VBS46120-6296STDY10244676,4590,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,dirus,UKN +VBS46122-6296STDY10244678,VBS46122-6296STDY10244678,4596,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,dirus,UKN +VBS46123-6296STDY10244679,VBS46123-6296STDY10244679,4609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,dirus,UKN +VBS46124-6296STDY10244680,VBS46124-6296STDY10244680,4666,Kevin Kobylinski,Thailand,"Vibhavadi, eight, F",2019,2,9.307,98.885,dirus,UKN +VBS46125-6296STDY10244681,VBS46125-6296STDY10244681,4768,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,dirus,UKN +VBS46126-6296STDY10244682,VBS46126-6296STDY10244682,4778,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,dirus,UKN +VBS46127-6296STDY10244683,VBS46127-6296STDY10244683,4779,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,dirus,UKN +VBS46128-6296STDY10244684,VBS46128-6296STDY10244684,4788,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,dirus,UKN +VBS46129-6296STDY10244685,VBS46129-6296STDY10244685,4809,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,dirus,UKN +VBS46130-6296STDY10244686,VBS46130-6296STDY10244686,4875,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,2,9.340,98.880,dirus,UKN +VBS46131-6296STDY10244687,VBS46131-6296STDY10244687,5191_1278,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,dirus,UKN +VBS46132-6296STDY10244688,VBS46132-6296STDY10244688,5192,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,dirus,UKN +VBS46133-6296STDY10244689,VBS46133-6296STDY10244689,5194,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46134-6296STDY10244690,VBS46134-6296STDY10244690,5195,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46135-6296STDY10244691,VBS46135-6296STDY10244691,5196,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46136-6296STDY10244692,VBS46136-6296STDY10244692,5197,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46137-6296STDY10244693,VBS46137-6296STDY10244693,5198,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46138-6296STDY10244694,VBS46138-6296STDY10244694,5199,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46139-6296STDY10244695,VBS46139-6296STDY10244695,5200,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46140-6296STDY10244696,VBS46140-6296STDY10244696,5201,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46142-6296STDY10244698,VBS46142-6296STDY10244698,5203,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46143-6296STDY10244699,VBS46143-6296STDY10244699,5204,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46144-6296STDY10244700,VBS46144-6296STDY10244700,5205,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46147-6296STDY10244703,VBS46147-6296STDY10244703,5214,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46148-6296STDY10244704,VBS46148-6296STDY10244704,5215,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46149-6296STDY10244705,VBS46149-6296STDY10244705,5216,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46150-6296STDY10244706,VBS46150-6296STDY10244706,5217,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46151-6296STDY10244707,VBS46151-6296STDY10244707,5218,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46152-6296STDY10244708,VBS46152-6296STDY10244708,5219,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46153-6296STDY10244709,VBS46153-6296STDY10244709,5220,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46155-6296STDY10244711,VBS46155-6296STDY10244711,5222,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46156-6296STDY10244712,VBS46156-6296STDY10244712,5223,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46157-6296STDY10244713,VBS46157-6296STDY10244713,5226,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46158-6296STDY10244714,VBS46158-6296STDY10244714,5227,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46160-6296STDY10244716,VBS46160-6296STDY10244716,5230_1278,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46161-6296STDY10244717,VBS46161-6296STDY10244717,5231,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,dirus,UKN +VBS46162-6296STDY10244718,VBS46162-6296STDY10244718,5232,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46163-6296STDY10244721,VBS46163-6296STDY10244721,5233,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46164-6296STDY10244722,VBS46164-6296STDY10244722,5236,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46165-6296STDY10244723,VBS46165-6296STDY10244723,5237,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46166-6296STDY10244724,VBS46166-6296STDY10244724,5238,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,dirus,UKN +VBS46170-6296STDY10244727,VBS46170-6296STDY10244727,5247,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,dirus,UKN +VBS46171-6296STDY10244728,VBS46171-6296STDY10244728,5248,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,dirus,UKN +VBS46174-6296STDY10244731,VBS46174-6296STDY10244731,5494,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46176-6296STDY10244733,VBS46176-6296STDY10244733,5500,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46177-6296STDY10244734,VBS46177-6296STDY10244734,5501,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46178-6296STDY10244735,VBS46178-6296STDY10244735,5502,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46179-6296STDY10244736,VBS46179-6296STDY10244736,5505,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,dirus,UKN +VBS46181-6296STDY10244738,VBS46181-6296STDY10244738,5542,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,dirus,UKN +VBS46182-6296STDY10244739,VBS46182-6296STDY10244739,5548,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,dirus,UKN +VBS46184-6296STDY10244741,VBS46184-6296STDY10244741,5604,Kevin Kobylinski,Thailand,"Khirirat Nikhom, five, B",2019,10,9.043,98.894,dirus,UKN +VBS46185-6296STDY10244742,VBS46185-6296STDY10244742,5609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,dirus,UKN +VBS46186-6296STDY10244743,VBS46186-6296STDY10244743,5613,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,dirus,UKN +VBS46193-6296STDY10244749,VBS46193-6296STDY10244749,5697,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, O",2019,10,9.076,98.868,dirus,UKN +VBS46194-6296STDY10244750,VBS46194-6296STDY10244750,5721,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46195-6296STDY10244751,VBS46195-6296STDY10244751,5725,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46196-6296STDY10244752,VBS46196-6296STDY10244752,5727,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46197-6296STDY10244753,VBS46197-6296STDY10244753,5728,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46199-6296STDY10244755,VBS46199-6296STDY10244755,5738,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,dirus,UKN +VBS46200-6296STDY10244756,VBS46200-6296STDY10244756,5765,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,dirus,UKN +VBS46201-6296STDY10244757,VBS46201-6296STDY10244757,5771,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,dirus,UKN +VBS46202-6296STDY10244758,VBS46202-6296STDY10244758,5777,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, L",2019,10,9.109,98.877,dirus,UKN +VBS46203-6296STDY10244759,VBS46203-6296STDY10244759,5895,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, Q",2019,10,9.127,98.905,dirus,UKN +VBS46204-6296STDY10244760,VBS46204-6296STDY10244760,5972,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,dirus,UKN +VBS46205-6296STDY10244761,VBS46205-6296STDY10244761,6024,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,dirus,UKN +VBS46206-6296STDY10244762,VBS46206-6296STDY10244762,6036,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,dirus,UKN +VBS46207-6296STDY10244763,VBS46207-6296STDY10244763,6037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,dirus,UKN diff --git a/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..d6c6cebde --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 +1,VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 +2,VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 +3,VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 +5,VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 +6,VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 +7,VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 +8,VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 +9,VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 +10,VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 +11,VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 +12,VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 +13,VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 +14,VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 +15,VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 +16,VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 +17,VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 +18,VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 +19,VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 +20,VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 +21,VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 +22,VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 +23,VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 +24,VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 +25,VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 +26,VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 +27,VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 +28,VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 +29,VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 +30,VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 +31,VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 +32,VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 +33,VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 +34,VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 +35,VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 +36,VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 +37,VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 +38,VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 +39,VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 +40,VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 +41,VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 +42,VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 +43,VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 +44,VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 +45,VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 +46,VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 +47,VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 +48,VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 +49,VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 +50,VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 +51,VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 +52,VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 +53,VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 +54,VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 +55,VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 +56,VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 +57,VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 +58,VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 +59,VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 +60,VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 +61,VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 +62,VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 +63,VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 +64,VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 +65,VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 +66,VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 +67,VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 +68,VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 +69,VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 +70,VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 +71,VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 +72,VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 +73,VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 +74,VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 +75,VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 +77,VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 +78,VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 +79,VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 +81,VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 +82,VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 +83,VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 +84,VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 +85,VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 +86,VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 +87,VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 +88,VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 +89,VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 +90,VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 +91,VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 +92,VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 +93,VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 +94,VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 +95,VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 +96,VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 +97,VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 +98,VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 +99,VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 +100,VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 +101,VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 +102,VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 +103,VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 +104,VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 +105,VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 +106,VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 +107,VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 +108,VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 +109,VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 +110,VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 +111,VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 +112,VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 +113,VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 +114,VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 +115,VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 +116,VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 +117,VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 +118,VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 +119,VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 +120,VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 +121,VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 +122,VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 +123,VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 +124,VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 +125,VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 +126,VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 +127,VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 +128,VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 +129,VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 +130,VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 +131,VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 +132,VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 +133,VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 +134,VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 +135,VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 +136,VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 +137,VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 +138,VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 +139,VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 +140,VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 +141,VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 +142,VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 +143,VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 +144,VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 +145,VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 +146,VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 +147,VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 +148,VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 +149,VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 +150,VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 +151,VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 +152,VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 +153,VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 +154,VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 +155,VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 +156,VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 +157,VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 +158,VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 +159,VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 +160,VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 +161,VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 +162,VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 +163,VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 +164,VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 +165,VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 +166,VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 +167,VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 +168,VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 +169,VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 +170,VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 +171,VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 +172,VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 +173,VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 +174,VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 +175,VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 +176,VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 +178,VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 +179,VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 +180,VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 +181,VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 +182,VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 +183,VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 +184,VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 +185,VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 +186,VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 +187,VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 +188,VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 +189,VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 +190,VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 +191,VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 +192,VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 +193,VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 +194,VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 +195,VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 +196,VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 +197,VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 +198,VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 +199,VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 +200,VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 +201,VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 +202,VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 +203,VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 +204,VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 +205,VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 +206,VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 +207,VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 +208,VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 +209,VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 +210,VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 +211,VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 +212,VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 +213,VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 +214,VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 +215,VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 +216,VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 +217,VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 +218,VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 +219,VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 +220,VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 +221,VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 +222,VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 diff --git a/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv new file mode 100644 index 000000000..d33bbbb77 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv @@ -0,0 +1,220 @@ +sample_id,run_ena +VBS45974-6296STDY9478582,"ERR6280005, ERR6280039, ERR6280073" +VBS45975-6296STDY10244530,"ERR6280107, ERR6280138, ERR6280169" +VBS45976-6296STDY9478584,"ERR6280006, ERR6280040, ERR6280074" +VBS45979-6296STDY9478587,"ERR6197341, ERR6197375, ERR6197409" +VBS45982-6296STDY9478589,"ERR6197343, ERR6197377, ERR6197411" +VBS45983-6296STDY10244537,"ERR6280199, ERR6280230, ERR6280263" +VBS45984-6296STDY10244538,"ERR6280200, ERR6280231, ERR6280264" +VBS45985-6296STDY10244539,"ERR6280108, ERR6280139, ERR6280170" +VBS45986-6296STDY10244540,"ERR6280299, ERR6280329, ERR6280359" +VBS45987-6296STDY10244541,"ERR6280201, ERR6280232, ERR6280265" +VBS45988-6296STDY10244542,"ERR6280202, ERR6280233, ERR6280266" +VBS45989-6296STDY10244543,"ERR6280300, ERR6280330, ERR6280360" +VBS45991-6296STDY10244545,"ERR6280301, ERR6280331, ERR6280361" +VBS45992-6296STDY10244546,"ERR6280203, ERR6280235, ERR6280268" +VBS45993-6296STDY10244547,"ERR6280302, ERR6280332, ERR6280362" +VBS45994-6296STDY10244548,"ERR6280303, ERR6280333, ERR6280363" +VBS45995-6296STDY10244549,"ERR6280204, ERR6280236, ERR6280269" +VBS45996-6296STDY10244550,"ERR6280112, ERR6280143, ERR6280174" +VBS45997-6296STDY10244551,"ERR6280304, ERR6280334, ERR6280364" +VBS45998-6296STDY10244552,"ERR6280205, ERR6280237, ERR6280270" +VBS45999-6296STDY10244553,"ERR6280113, ERR6280144, ERR6280175" +VBS46000-6296STDY10244554,"ERR6280307, ERR6280337, ERR6280367" +VBS46001-6296STDY10244555,"ERR6280115, ERR6280146, ERR6280177" +VBS46002-6296STDY10244556,"ERR6280206, ERR6280238, ERR6280271" +VBS46003-6296STDY10244557,"ERR6280310, ERR6280340, ERR6280370" +VBS46004-6296STDY10244558,"ERR6280207, ERR6280239, ERR6280272" +VBS46005-6296STDY9478612,"ERR6280311, ERR6280341, ERR6280371" +VBS46006-6296STDY10244560,"ERR6280116, ERR6280147, ERR6280178" +VBS46007-6296STDY10244561,"ERR6280208, ERR6280240, ERR6280273" +VBS46008-6296STDY10244562,"ERR6280117, ERR6280148, ERR6280179" +VBS46009-6296STDY10244563,"ERR6280118, ERR6280149, ERR6280180" +VBS46010-6296STDY10244564,"ERR6280313, ERR6280343, ERR6280373" +VBS46011-6296STDY10244565,"ERR6280209, ERR6280241, ERR6280274" +VBS46012-6296STDY10244566,"ERR6280314, ERR6280344, ERR6280374" +VBS46013-6296STDY10244567,"ERR6280210, ERR6280242, ERR6280275" +VBS46014-6296STDY10244568,"ERR6280119, ERR6280150, ERR6280181" +VBS46016-6296STDY10244570,"ERR6280211, ERR6280243, ERR6280276" +VBS46017-6296STDY10244571,"ERR6280212, ERR6280244, ERR6280277" +VBS46019-6296STDY10244573,"ERR6280316, ERR6280346, ERR6280376" +VBS46020-6296STDY10244574,"ERR6280213, ERR6280245, ERR6280278" +VBS46021-6296STDY10244575,"ERR6280317, ERR6280347, ERR6280377" +VBS46022-6296STDY10244576,"ERR6280120, ERR6280151, ERR6280182" +VBS46025-6296STDY10244579,"ERR6280214, ERR6280247, ERR6280280" +VBS46026-6296STDY10244580,"ERR6280215, ERR6280248, ERR6280281" +VBS46027-6296STDY10244581,"ERR6280216, ERR6280249, ERR6280282" +VBS46028-6296STDY10244582,"ERR6280217, ERR6280250, ERR6280283" +VBS46029-6296STDY10244583,"ERR6280121, ERR6280152, ERR6280183" +VBS46030-6296STDY10244584,"ERR6280122, ERR6280153, ERR6280184" +VBS46031-6296STDY10244585,"ERR6280218, ERR6280251, ERR6280284" +VBS46032-6296STDY10244586,"ERR6280123, ERR6280154, ERR6280185" +VBS46033-6296STDY10244587,"ERR6280219, ERR6280252, ERR6280285" +VBS46034-6296STDY10244588,"ERR6280124, ERR6280155, ERR6280186" +VBS46035-6296STDY10244589,"ERR6280220, ERR6280253, ERR6280286" +VBS46036-6296STDY10244590,"ERR6280125, ERR6280156, ERR6280187" +VBS46037-6296STDY10244591,"ERR6280126, ERR6280157, ERR6280188" +VBS46038-6296STDY10244592,"ERR6280127, ERR6280158, ERR6280189" +VBS46039-6296STDY10244593,"ERR6280128, ERR6280159, ERR6280190" +VBS46040-6296STDY10244594,"ERR6280129, ERR6280160, ERR6280191" +VBS46041-6296STDY10244595,"ERR6280130, ERR6280161, ERR6280192" +VBS46042-6296STDY9478649,"ERR6280319, ERR6280349, ERR6280379" +VBS46043-6296STDY10244597,"ERR6280221, ERR6280254, ERR6280287" +VBS46044-6296STDY10244598,"ERR6280320, ERR6280350, ERR6280380" +VBS46045-6296STDY10244599,"ERR6280222, ERR6280255, ERR6280288" +VBS46046-6296STDY10244600,"ERR6280223, ERR6280256, ERR6280289" +VBS46047-6296STDY10244601,"ERR6280224, ERR6280257, ERR6280290" +VBS46048-6296STDY10244602,"ERR6280131, ERR6280162, ERR6280193" +VBS46049-6296STDY10244603,"ERR6280132, ERR6280163, ERR6280194" +VBS46050-6296STDY9478657,"ERR6280032, ERR6280066, ERR6280100" +VBS46051-6296STDY10244605,"ERR6280225, ERR6280258, ERR6280291" +VBS46052-6296STDY10244606,"ERR6280133, ERR6280164, ERR6280195" +VBS46053-6296STDY10244607,"ERR6280226, ERR6280259, ERR6280292" +VBS46054-6296STDY10244608,"ERR6280227, ERR6280260, ERR6280293" +VBS46055-6296STDY10244609,"ERR6280321, ERR6280351, ERR6280381" +VBS46056-6296STDY10244610,"ERR6280134, ERR6280165, ERR6280196" +VBS46057-6296STDY10244611,"ERR6280322, ERR6280352, ERR6280382" +VBS46059-6296STDY9478666,"ERR6280036, ERR6280070, ERR6280104" +VBS46060-6296STDY10244614,"ERR6280135, ERR6280166, ERR6280197" +VBS46061-6296STDY10244615,"ERR6280323, ERR6280353, ERR6280383" +VBS46063-6296STDY10244617,"ERR6280324, ERR6280354, ERR6280384" +VBS46064-6296STDY10244618,"ERR6280136, ERR6280167, ERR6336419" +VBS46065-6296STDY10244619,"ERR6280137, ERR6280168, ERR6280198" +VBS46066-6296STDY9478673,"ERR6280325, ERR6280355, ERR6280385" +VBS46067-6296STDY9478674,"ERR6280038, ERR6280072, ERR6280106" +VBS46068-6296STDY10244622,"ERR6280229, ERR6280262, ERR6280295" +VBS46069-6296STDY10244625,"ERR6197443, ERR6197478, ERR6279970" +VBS46070-6296STDY10244626,"ERR6197444, ERR6197479, ERR6279971" +VBS46071-6296STDY10244627,"ERR6197445, ERR6197480, ERR6279972" +VBS46072-6296STDY10244628,"ERR6197446, ERR6197481, ERR6279973" +VBS46073-6296STDY10244629,"ERR6280007, ERR6280041, ERR6280075" +VBS46074-6296STDY10244630,"ERR6280008, ERR6280042, ERR6280076" +VBS46075-6296STDY10244631,"ERR6197342, ERR6197376, ERR6197410" +VBS46076-6296STDY10244632,"ERR6280010, ERR6280044, ERR6280078" +VBS46077-6296STDY10244633,"ERR6280011, ERR6280045, ERR6280079" +VBS46078-6296STDY9478687,"ERR6280012, ERR6280046, ERR6280080" +VBS46079-6296STDY10244635,"ERR6197447, ERR6197482, ERR6279974" +VBS46080-6296STDY10244636,"ERR6197344, ERR6197378, ERR6197412" +VBS46081-6296STDY10244637,"ERR6197448, ERR6197483, ERR6279975" +VBS46082-6296STDY10244638,"ERR6197345, ERR6197379, ERR6197413" +VBS46083-6296STDY9478692,"ERR6280013, ERR6280047, ERR6280081" +VBS46084-6296STDY9478693,"ERR6280014, ERR6280048, ERR6280082" +VBS46085-6296STDY10244641,"ERR6197346, ERR6197380, ERR6197414" +VBS46086-6296STDY10244642,"ERR6197347, ERR6197381, ERR6197415" +VBS46087-6296STDY9478696,"ERR6280015, ERR6280049, ERR6280083" +VBS46088-6296STDY9478697,"ERR6280016, ERR6280050, ERR6280084" +VBS46089-6296STDY10244645,"ERR6197449, ERR6197484, ERR6279976" +VBS46090-6296STDY10244646,"ERR6197450, ERR6197485, ERR6279977" +VBS46091-6296STDY10244647,"ERR6197451, ERR6197486, ERR6279978" +VBS46092-6296STDY10244648,"ERR6197452, ERR6197487, ERR6279979" +VBS46093-6296STDY10244649,"ERR6197348, ERR6197382, ERR6197416" +VBS46094-6296STDY10244650,"ERR6197453, ERR6197488, ERR6279980" +VBS46095-6296STDY10244651,"ERR6197454, ERR6197489, ERR6279981" +VBS46096-6296STDY10244652,"ERR6197455, ERR6197490, ERR6279982" +VBS46097-6296STDY10244653,"ERR6280017, ERR6280051, ERR6280085" +VBS46098-6296STDY9478707,"ERR6280018, ERR6280052, ERR6280086" +VBS46099-6296STDY10244655,"ERR6197456, ERR6197491, ERR6279983" +VBS46100-6296STDY10244656,"ERR6197349, ERR6197383, ERR6197417" +VBS46101-6296STDY10244657,"ERR6197457, ERR6197492, ERR6279984" +VBS46102-6296STDY10244658,"ERR6280019, ERR6280053, ERR6280087" +VBS46103-6296STDY10244659,"ERR6197350, ERR6197384, ERR6197418" +VBS46104-6296STDY10244660,"ERR6197458, ERR6197493, ERR6279985" +VBS46105-6296STDY10244661,"ERR6197459, ERR6197494, ERR6279986" +VBS46106-6296STDY10244662,"ERR6197460, ERR6197495, ERR6279987" +VBS46107-6296STDY10244663,"ERR6197461, ERR6197496, ERR6279988" +VBS46108-6296STDY10244664,"ERR6280020, ERR6280054, ERR6280088" +VBS46109-6296STDY10244665,"ERR6280021, ERR6280055, ERR6280089" +VBS46110-6296STDY10244666,"ERR6280022, ERR6280056, ERR6280090" +VBS46111-6296STDY10244667,"ERR6197462, ERR6197497, ERR6279989" +VBS46112-6296STDY10244668,"ERR6280023, ERR6280057, ERR6280091" +VBS46113-6296STDY10244669,"ERR6280024, ERR6280058, ERR6280092" +VBS46114-6296STDY10244670,"ERR6197463, ERR6197498, ERR6279990" +VBS46115-6296STDY10244671,"ERR6280025, ERR6280059, ERR6280093" +VBS46116-6296STDY10244672,"ERR6280026, ERR6280060, ERR6280094" +VBS46117-6296STDY10244673,"ERR6280027, ERR6280061, ERR6280095" +VBS46118-6296STDY10244674,"ERR6280028, ERR6280062, ERR6280096" +VBS46119-6296STDY10244675,"ERR6197464, ERR6197499, ERR6279991" +VBS46120-6296STDY10244676,"ERR6197351, ERR6197385, ERR6197419" +VBS46121-6296STDY9478730,"ERR6280029, ERR6280063, ERR6280097" +VBS46122-6296STDY10244678,"ERR6197352, ERR6197386, ERR6197420" +VBS46123-6296STDY10244679,"ERR6197465, ERR6197500, ERR6279992" +VBS46124-6296STDY10244680,"ERR6197466, ERR6197501, ERR6279993" +VBS46125-6296STDY10244681,"ERR6197467, ERR6197502, ERR6279994" +VBS46126-6296STDY10244682,"ERR6197468, ERR6197503, ERR6279995" +VBS46127-6296STDY10244683,"ERR6280030, ERR6280064, ERR6280098" +VBS46128-6296STDY10244684,"ERR6197353, ERR6197387, ERR6197421" +VBS46129-6296STDY10244685,"ERR6197469, ERR6197504, ERR6279996" +VBS46130-6296STDY10244686,"ERR6197470, ERR6197505, ERR6279997" +VBS46131-6296STDY10244687,"ERR6197354, ERR6197388, ERR6197422" +VBS46132-6296STDY10244688,"ERR6197355, ERR6197389, ERR6197423" +VBS46133-6296STDY10244689,"ERR6197356, ERR6197390, ERR6197424" +VBS46134-6296STDY10244690,"ERR6197357, ERR6197391, ERR6197425" +VBS46135-6296STDY10244691,"ERR6197358, ERR6197392, ERR6197426" +VBS46136-6296STDY10244692,"ERR6197359, ERR6197393, ERR6197427" +VBS46137-6296STDY10244693,"ERR6197360, ERR6197394, ERR6197428" +VBS46138-6296STDY10244694,"ERR6197471, ERR6197506, ERR6279998" +VBS46139-6296STDY10244695,"ERR6197472, ERR6197507, ERR6279999" +VBS46140-6296STDY10244696,"ERR6197361, ERR6197395, ERR6197429" +VBS46141-6296STDY9478750,"ERR6280031, ERR6280065, ERR6280099" +VBS46142-6296STDY10244698,"ERR6197362, ERR6197396, ERR6197430" +VBS46143-6296STDY10244699,"ERR6197473, ERR6197508, ERR6280000" +VBS46144-6296STDY10244700,"ERR6197363, ERR6197397, ERR6197431" +VBS46145-6296STDY9478754,"ERR6280033, ERR6280067, ERR6280101" +VBS46146-6296STDY9478755,"ERR6280034, ERR6280068, ERR6280102" +VBS46147-6296STDY10244703,"ERR6197474, ERR6197509, ERR6280001" +VBS46148-6296STDY10244704,"ERR6197364, ERR6197398, ERR6197432" +VBS46149-6296STDY10244705,"ERR6197365, ERR6197399, ERR6197433" +VBS46150-6296STDY10244706,"ERR6197366, ERR6197400, ERR6197434" +VBS46151-6296STDY10244707,"ERR6197367, ERR6197401, ERR6197435" +VBS46152-6296STDY10244708,"ERR6197475, ERR6197510, ERR6280002" +VBS46153-6296STDY10244709,"ERR6197368, ERR6197402, ERR6197436" +VBS46154-6296STDY9478763,"ERR6280037, ERR6280071, ERR6280105" +VBS46155-6296STDY10244711,"ERR6197369, ERR6197403, ERR6197437" +VBS46156-6296STDY10244712,"ERR6197370, ERR6197404, ERR6197438" +VBS46157-6296STDY10244713,"ERR6197371, ERR6197405, ERR6197439" +VBS46158-6296STDY10244714,"ERR6197372, ERR6197406, ERR6197440" +VBS46160-6296STDY10244716,"ERR6197476, ERR6197511, ERR6280003" +VBS46161-6296STDY10244717,"ERR6197477, ERR6197512, ERR6280004" +VBS46162-6296STDY10244718,"ERR6197374, ERR6197408, ERR6197442" +VBS46163-6296STDY10244721,"ERR6197251, ERR6197281, ERR6197311" +VBS46164-6296STDY10244722,"ERR6197252, ERR6197282, ERR6197312" +VBS46165-6296STDY10244723,"ERR6197253, ERR6197283, ERR6197313" +VBS46166-6296STDY10244724,"ERR6197254, ERR6197284, ERR6197314" +VBS46168-6296STDY9478779,"ERR6280296, ERR6280326, ERR6280356" +VBS46170-6296STDY10244727,"ERR6197255, ERR6197285, ERR6197315" +VBS46171-6296STDY10244728,"ERR6197256, ERR6197286, ERR6197316" +VBS46172-6296STDY9478782,"ERR6280297, ERR6280327, ERR6280357" +VBS46173-6296STDY9478783,"ERR6280298, ERR6280328, ERR6280358" +VBS46174-6296STDY10244731,"ERR6197257, ERR6197287, ERR6197317" +VBS46175-6296STDY9478785,"ERR6280109, ERR6280140, ERR6280171" +VBS46176-6296STDY10244733,"ERR6197258, ERR6197288, ERR6197318" +VBS46177-6296STDY10244734,"ERR6197259, ERR6197289, ERR6197319" +VBS46178-6296STDY10244735,"ERR6197260, ERR6197290, ERR6197320" +VBS46179-6296STDY10244736,"ERR6197261, ERR6197291, ERR6197321" +VBS46180-6296STDY9478790,"ERR6280110, ERR6280141, ERR6280172" +VBS46181-6296STDY10244738,"ERR6197262, ERR6197292, ERR6197322" +VBS46182-6296STDY10244739,"ERR6197263, ERR6197293, ERR6197323" +VBS46183-6296STDY9478793,"ERR6280111, ERR6280142, ERR6280173" +VBS46184-6296STDY10244741,"ERR6197264, ERR6197294, ERR6197324" +VBS46185-6296STDY10244742,"ERR6197265, ERR6197295, ERR6197325" +VBS46186-6296STDY10244743,"ERR6197266, ERR6197296, ERR6197326" +VBS46187-6296STDY9478797,"ERR6280305, ERR6280335, ERR6280365" +VBS46188-6296STDY9478798,"ERR6280306, ERR6280336, ERR6280366" +VBS46189-6296STDY9478799,"ERR6280114, ERR6280145, ERR6280176" +VBS46190-6296STDY9478800,"ERR6280308, ERR6280338, ERR6280368" +VBS46192-6296STDY9478801,"ERR6280309, ERR6280339, ERR6280369" +VBS46193-6296STDY10244749,"ERR6197267, ERR6197297, ERR6197327" +VBS46194-6296STDY10244750,"ERR6197268, ERR6197298, ERR6197328" +VBS46195-6296STDY10244751,"ERR6197269, ERR6197299, ERR6197329" +VBS46196-6296STDY10244752,"ERR6197270, ERR6197300, ERR6197330" +VBS46197-6296STDY10244753,"ERR6197271, ERR6197301, ERR6197331" +VBS46198-6296STDY9478807,"ERR6280312, ERR6280342, ERR6280372" +VBS46199-6296STDY10244755,"ERR6197272, ERR6197302, ERR6197332" +VBS46200-6296STDY10244756,"ERR6197273, ERR6197303, ERR6197333" +VBS46201-6296STDY10244757,"ERR6197274, ERR6197304, ERR6197334" +VBS46202-6296STDY10244758,"ERR6197275, ERR6197305, ERR6197335" +VBS46203-6296STDY10244759,"ERR6197276, ERR6197306, ERR6197336" +VBS46204-6296STDY10244760,"ERR6197277, ERR6197307, ERR6197337" +VBS46205-6296STDY10244761,"ERR6197278, ERR6197308, ERR6197338" +VBS46206-6296STDY10244762,"ERR6197279, ERR6197309, ERR6197339" +VBS46207-6296STDY10244763,"ERR6197280, ERR6197310, ERR6197340" diff --git a/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv new file mode 100644 index 000000000..8f116bb46 --- /dev/null +++ b/tests/anoph/fixture/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv @@ -0,0 +1,220 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45974-6296STDY9478582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.bam,1adeaa92579eed7a46af285f3ba77859,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.vcf.gz,f3a02b70a2043b08169a20c0411d6018,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.zarr.zip,d20d2ee334391c43ff9e9004da373d4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45976-6296STDY9478584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.bam,3a214cc9548bfd24f3515b91d5dcd590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.vcf.gz,5996c86ad1476d61bd0c9deedb636ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.zarr.zip,d4feb50e9c6f7f5479d3dec2b3dbb99d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45979-6296STDY9478587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.bam,0395178efb2f000e752318f986ed6927,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.vcf.gz,7d15cf6fc8021ea1050058675495856b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.zarr.zip,6689ace401a860f5caf447d59993ede5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45982-6296STDY9478589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.bam,4d02af58ac5e6dd0c1ddfab6710aa357,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.vcf.gz,1af5733ecd9b08a3a6fa19d2bed18a63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.zarr.zip,af844acd11c529e064b49167845126d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46005-6296STDY9478612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.bam,7e33faf1a9061754b100779eb2257659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.vcf.gz,df0ad585f0aa8524272dc0226e08cb69,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.zarr.zip,91fe787e239cdbedaaf91492279cd595,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46042-6296STDY9478649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.bam,21335991a81b36db69da82f14100bbb8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.vcf.gz,c92c9aae6e8b0d09d631fe6b0b9132c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.zarr.zip,67f02bea13baac2a10a447cdcf33622c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46050-6296STDY9478657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.bam,5c0436449c775a41a79d4d0ce030ce2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.vcf.gz,eec32038bb540477c07728ad58b3cd5a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.zarr.zip,78ee08e463b1ff7cbd0ff4800368a744,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46059-6296STDY9478666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.bam,25b60f4cee9ff401abead3f6c2af10d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.vcf.gz,22bc13ad852ace523e765fb5114cf109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.zarr.zip,87801a969352d5ec457c556aa1be4662,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46066-6296STDY9478673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.bam,f9beda9cc872f58f64feb422ddd7ca9c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.vcf.gz,d00ed911cf21cfbd9f0a5fe06e54c4a2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.zarr.zip,94b89991d9f14a88b4e2107e83e1206c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46067-6296STDY9478674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.bam,44c74b2f55b233c88147ad52204b7037,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.vcf.gz,db41bc5aae5eb6cea0ee0833a2cee348,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.zarr.zip,b3681d5c32af45757c44ff2e49e17d2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46078-6296STDY9478687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.bam,84c865d418d575d1aed5a74c661ef35a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.vcf.gz,13836660fee30b5727279fe34c50f16f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.zarr.zip,19a415504831694c40c0caf93434db97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46083-6296STDY9478692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.bam,c1abdfe0f4f8ead6e0b54e5cc1149f63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.vcf.gz,ec168a0a10a4a07ce00642b94d6f7ffb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.zarr.zip,2148d715f5668cbbc76a40cd8f13db22,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46084-6296STDY9478693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.bam,305b52fa3fd9a4d8ab205b58835c68bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.vcf.gz,82bca00babe534261e72b14e41c1a5c4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.zarr.zip,7f0d2ef0abd84315d8359ee7cb634343,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46087-6296STDY9478696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.bam,e2d265e27606b8d1d9bfbc213bc20daf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.vcf.gz,32cf8d4ed2ee3c1064ccc9f58d2ad8be,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.zarr.zip,8cda96e768f8e1eb74efe9afa44c9fcb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46088-6296STDY9478697,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.bam,ea8599f6d144cdfc81255abe2baa3156,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.vcf.gz,a58cdbf4c289c29611fed3f4477e1fb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.zarr.zip,95f9aa9f9e611e07c8ae352827a00c26,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46098-6296STDY9478707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.bam,968507ed9d40062caa67b95d71e531e5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.vcf.gz,9ea661e83011159fb67ad90653090e4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.zarr.zip,3d67f677899e0d2c471c41bd0c0801c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46121-6296STDY9478730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.bam,2231d7041de087be11e3dcccfdeb52ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.vcf.gz,366b958fbf56f0a1320bae070d13992a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.zarr.zip,f0aa5221b5171f3de3b4f8a7d9b94b7c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46141-6296STDY9478750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.bam,963a424e97947791cdd405a8618804f5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.vcf.gz,242b3ebbea0c6b5d01d9e4e8cbb69753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.zarr.zip,1a8a6651c7e8e4dbfd02cd9407ab78ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46145-6296STDY9478754,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.bam,a026da64d66ff1bf913bcdc59b294922,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.vcf.gz,01c3a14223910d945e6135a62ba211d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.zarr.zip,95d1b74f79e3b2a89a0b9e0e1b43efb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46146-6296STDY9478755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.bam,0a3996860f3d1243f88c3e08c6661c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.vcf.gz,663c5a08f4278b78e9234cbccbcd576a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.zarr.zip,3b98341aff8b64e5960177d426a60ad6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46154-6296STDY9478763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.bam,258219833ee54ccef96f6f75c1efd50f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.vcf.gz,16eebf76a5124af1dbc1913c415f5a84,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.zarr.zip,1e0914e5d1c12b6fadc2123e7b718c1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46168-6296STDY9478779,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.bam,a343d02c32262c066d1fdce2003ff8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.vcf.gz,2651bf48845498f208b36fe621e0c065,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.zarr.zip,d51383e84748673faef91371138efc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46172-6296STDY9478782,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.bam,3dfa83ce8e2b31d0861f4a06259e6e2b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.vcf.gz,e537c0ef1f1c71a05ec0d2f31367c82a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.zarr.zip,293b89848694fdd6cda6a33fcf62fa05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46173-6296STDY9478783,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.bam,32bae64a174d1a9df7e993568484ab2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.vcf.gz,02f56d6d9c3620255915581e707e0482,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.zarr.zip,7d5809643e2f2cfcb178671fd8de9a1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46175-6296STDY9478785,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.bam,f044830fca980a27e5a96f1d82fb1d37,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.vcf.gz,5fcfbdea8dab556be5ebd12f9fd1499b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.zarr.zip,2e92bd07fd3fb828c6379af847673677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46180-6296STDY9478790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.bam,4d238a2c54a2d60b7ae55746f4c51d34,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.vcf.gz,4a5608f0c0cd7248b231e6a95632bea7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.zarr.zip,0bd1a2ab96accbc3e47fcd137d674a50,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46183-6296STDY9478793,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.bam,f7a95a1db5e72da55a3641094849676b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.vcf.gz,b1bf4ac5540b4b8de0212315f86cd8db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.zarr.zip,260f86ebc46b30c94ad42edb4da49e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46187-6296STDY9478797,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.bam,2d98c03922311288e119f04e925404e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.vcf.gz,2fccb4846a4ff85031d14f154b01a649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.zarr.zip,b0ed215b31e78a6cde2073b00d20f209,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46188-6296STDY9478798,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.bam,87b9799d4642d3de3ab321cae47b3511,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.vcf.gz,ed413a3ed2a545ef6a15b9acfed2b654,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.zarr.zip,fc4f4554ba3bfdaa4ea98679c0e5d8d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46189-6296STDY9478799,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.bam,1e43a918403e744c5a815c6387a598a0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.vcf.gz,dec13ae54bcf9cf9fb0557ce64222c64,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.zarr.zip,de48db73ee90637e43ea8d9a8ec2be86,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46190-6296STDY9478800,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.bam,6f040b3345d413939503e990f713d41c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.vcf.gz,d91f787500bff57431438e52521674a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.zarr.zip,f50570fb35f929ceaa7335e7284e13f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46192-6296STDY9478801,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.bam,c81c633bf20dd74694550fc456329856,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.vcf.gz,944b81f182d99db2db8d49e9d8149c8b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.zarr.zip,171f045e21e8b88e7b10b98a2fa21f58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46198-6296STDY9478807,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.bam,6f719336e35e6d59bebce4806ccc3632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.vcf.gz,bcceb7dad61871574a0527a352456165,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.zarr.zip,9cca5d5a8e3a9704856fc287a1505c1f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45975-6296STDY10244530,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.bam,01ed72736fae6222ea0ae33336aabd5b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.vcf.gz,4b9ceeeac80acd1c9e7b29951655bf27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.zarr.zip,025fe17418a680c7c29fd5fc024d104a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45983-6296STDY10244537,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.bam,e6c458494cbe16079c40f992be33e71d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.vcf.gz,998faf9865cd6cfd5de0a34722b53506,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.zarr.zip,325c09ab594b3f3e8d7886ae7f2f292e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45984-6296STDY10244538,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.bam,23eae2b6d67855e8379cd69b7b016362,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.vcf.gz,5b01c6a1a7e5a3f98bf6059787990c2e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.zarr.zip,02a99ed3559da50c96317a44cbac229b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45985-6296STDY10244539,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.bam,6d3c0664801718b6bae4791157a35fdc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.vcf.gz,3a450eefd745d8cf8ce036b7f26c2557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.zarr.zip,a427288b87b90f3229f87c9b2b4931ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45986-6296STDY10244540,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.bam,bbd152c795c31bfa349abd679fe6146f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.vcf.gz,cb5bb6eb27c53ee6fa418ab3d569c345,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.zarr.zip,cdec6a387e43a7cb6d76c51d1d9e3b8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45987-6296STDY10244541,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.bam,eac2c5d9f5d49fd9778da84b3d7ba9bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.vcf.gz,6f77953b84c9a1f16ea6b5ab85168504,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.zarr.zip,37447b939e8ee11be146932d8390cc0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45988-6296STDY10244542,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.bam,c8f457a1a1ce42b6cd9bbeed55902f6a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.vcf.gz,ef62036560f811ad5c4c6b3c71984bc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.zarr.zip,17d8d23c80bae57a949586be1f422fb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45989-6296STDY10244543,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.bam,a0a6d605bd2a84ec54d27090dbf66244,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.vcf.gz,70f57972ab4d9a308d97424b85e8e8d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.zarr.zip,35929dedba06b17349c493d2ceb6762e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45991-6296STDY10244545,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.bam,1e86dbe5181c080d8204ffa09835b476,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.vcf.gz,9ff61da1403a79afcb32b8eec23dda8d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.zarr.zip,82afdc12f5099cf736a26e272098f3df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45992-6296STDY10244546,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.bam,486c3b6a18c7d7bfc3ef5557aef6b49c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.vcf.gz,a04c8a183a1f48c5dbc1402c06556bc2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.zarr.zip,bf21f913f4664277110dbef60536c29a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45993-6296STDY10244547,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.bam,ec3e094cbc586d4546245c644dcb0979,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.vcf.gz,81ae875b80fa9249d05af6dcf1c8817a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.zarr.zip,f0ac97108a1c4ea6193ecdebe6cbd46f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45994-6296STDY10244548,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.bam,03ff6b7380ed456cad3d107bbe3720db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.vcf.gz,9ca2391360683df349abd04fac2348f8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.zarr.zip,59c336a0967e3c1db34bf4f192d5c4dc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45995-6296STDY10244549,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.bam,4c3af011f9205f7151c8bd704859ac92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.vcf.gz,c1602d2c9af464d33514186ec5ce3093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.zarr.zip,d83f20202ae4c015f2e49f58cec9feea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45996-6296STDY10244550,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.bam,4e9204d1a6996f429527956c10e2d205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.vcf.gz,4abd4aaa70d61a4efd8ec38154ffeadb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.zarr.zip,346f0b2271deb5c5d94d33e4817af482,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45997-6296STDY10244551,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.bam,f9f0fe13e4593802fb3a2fbacabca7a5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.vcf.gz,7171eab810766ca302e722babbc098a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.zarr.zip,6028c9684dea6a0199a7325868b7c431,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45998-6296STDY10244552,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.bam,5ca56658951de4fb9b5c4c4e4573e0e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.vcf.gz,6010e7a53a1edeaed9f23f5e7182d580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.zarr.zip,f01603abdc969c04d8b18965a0e616c7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45999-6296STDY10244553,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.bam,eabcad7b011215524b4099eced0010e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.vcf.gz,d9584c08dc4befbd82b791bbb1c3cf93,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.zarr.zip,5b722bcc859ff89fb614923b1ae73fde,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46000-6296STDY10244554,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.bam,e7ba9e5776be244712f3a7ae6b62f36a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.vcf.gz,7ce8aca66df72a3b488a643f170dc8e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.zarr.zip,0599cc7d901f9941ab7795a95756efe6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46001-6296STDY10244555,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.bam,d95c68b19360a3e56294b30caf592d60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.vcf.gz,495ad5c42cca7e710093d89c9439e079,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.zarr.zip,6e265f442d56a7e90c08001c9296d5ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46002-6296STDY10244556,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.bam,0367ae00fd1a156afd030f1bdfe99974,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.vcf.gz,da332581d123035688653d127a845a75,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.zarr.zip,35f249b90539b701c7ed234524b2190a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46003-6296STDY10244557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.bam,9fa806b25e3142e0c82d74da34d76e3c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.vcf.gz,993a16d28c3d150205dbf9a0cec99c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.zarr.zip,5ab6c289b0d60a05295760bd90d9afe2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46004-6296STDY10244558,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.bam,da3cce7b0749e59b5f94cdf9a0ce3d8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.vcf.gz,052c1ed5dff469a4cb907b7589fa7699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.zarr.zip,bd7a2c8d11b8877ceeb653985e016a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46006-6296STDY10244560,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.bam,3dd011695c202fe8249e759654b69eae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.vcf.gz,6e00cfe3be3e5c9d0e596a7f3b87ca4e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.zarr.zip,b43101ecc7a422056c6344137edce68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46007-6296STDY10244561,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.bam,9aaf6e17ae34fe9071454a0828ead469,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.vcf.gz,6e35954c0f8aaf6a46bb335eea490701,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.zarr.zip,9735cb5f15b43251fb12f27d2851ff5f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46008-6296STDY10244562,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.bam,ee9bf4eeb2c09ce01aca79e68a577ec5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.vcf.gz,405aa3884de5136627aa5455edf058a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.zarr.zip,d758b40ba43d7808a3b77759ca006af3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46009-6296STDY10244563,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.bam,331cb057671007f7c9cc309d7c966f27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.vcf.gz,5c61f5ced277e130472f7655ea9b4dc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.zarr.zip,b4d2260c92b3f669235848a59abae2c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46010-6296STDY10244564,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.bam,95cc423120f92231afdedc34a6dc75d8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.vcf.gz,20899c4284f6fcb220d7871a3ea2365c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.zarr.zip,11c71c19eee57f7ffd293a50e2022274,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46011-6296STDY10244565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.bam,ffd528115f6068295d8431c639e7866e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.vcf.gz,4a98b2e4c8da327725bc8997c23a5f6c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.zarr.zip,3b94bee91110caf260938a6ce1c09eb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46012-6296STDY10244566,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.bam,993132fe81587808ffd032dad270e350,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.vcf.gz,0f3c8614cb541484886593c0d0299a42,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.zarr.zip,f0cd73faba322ca838a9ef7b5a1a371d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46013-6296STDY10244567,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.bam,c3776d5f4b835b46f306f02a280c07a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.vcf.gz,b1a7cedc46c5069311703c12f00e12bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.zarr.zip,3c580907fca7fd2402d54d18c7e8807d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46014-6296STDY10244568,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.bam,adff7ba53b32410b85383258bfd20a72,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.vcf.gz,da922c98ff87bce6cbbd6c5bf0c49c9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.zarr.zip,227b82fe06c972c2d4507ff7fc7f5e27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46016-6296STDY10244570,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.bam,14af267ce9d8247d4bcf290a240c536d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.vcf.gz,cd05b31daf2133a37d70acfaf2d5c4ea,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.zarr.zip,4027a9537bd50c018f4f44a586b7d4a1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46017-6296STDY10244571,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.bam,8f4b56440f0341ad832233af34f1c846,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.vcf.gz,438f37c6e2de15785bc59eaf7676982f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.zarr.zip,cd7531a1f66a2422408a9425434bd029,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46019-6296STDY10244573,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.bam,05389f92ca2d7d8881a9488211a37612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.vcf.gz,2ef311e1a28d9bff6bc542fced5e11f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.zarr.zip,3e3cbc161c82903c7d6ffa412c0ad1dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46020-6296STDY10244574,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.bam,cd3d15db53d9e424a656840a326d2fa7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.vcf.gz,f84a0e72ae9b803342aca2d12931b98b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.zarr.zip,68d2c5a6d5c3c9775303d6eafaef034e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46021-6296STDY10244575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.bam,ac9927695d61dd0444930df568bc4a9b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.vcf.gz,945f777a0f527b78517f294b6ba24790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.zarr.zip,af5e42d900d4f3b248b3c4c024fe0761,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46022-6296STDY10244576,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.bam,7708d2be875a3ba0fd96c8037b0b85dc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.vcf.gz,a22e08132e67de01dfd57320d2325fb3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.zarr.zip,f5e161031994aa42f712d26f6a981f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46025-6296STDY10244579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.bam,05658c98dbeb01d6e7dfbd0fa28572e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.vcf.gz,8c318d07dca53a716466f2b8352300ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.zarr.zip,cb653d8b6f9e78b2c4e76d2687b33643,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46026-6296STDY10244580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.bam,cf666c8f9ce046164cfdb5b35e7e7412,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.vcf.gz,b84392047d4b4579e06e4bbc59a2603c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.zarr.zip,0605db737accdfe7b3ba67f684cbb82c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46027-6296STDY10244581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.bam,b439cd9fca2649107cd2044d36056964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.vcf.gz,a9b060abbe3e466f6e17bcb3a6c626c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.zarr.zip,db276b523a1b43416f18174138de5b77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46028-6296STDY10244582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.bam,a3b90d5ce1f2fc7442ff2c9802b8c6b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.vcf.gz,73206e66a5cdc75efbbee7324f3484b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.zarr.zip,ae824aba549c7d52d0cf8064458ddb9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46029-6296STDY10244583,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.bam,f923b1cdeb1596d23f378ccc007d242b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.vcf.gz,696ddb5bdd303c419c71989fa249faa6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.zarr.zip,3550d38605cd4fd00e17191df898d2ec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46030-6296STDY10244584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.bam,17afca0cc241f6301f7ca18c197271e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.vcf.gz,3bf0d684ebc52a268758b51370b7a3c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.zarr.zip,e6fbeb7187838887eac2b4147b576a42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46031-6296STDY10244585,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.bam,575646acfafe61748bbb503ecc843f01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.vcf.gz,63967f16c4eba0f9b8b3f5a95ff20bc7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.zarr.zip,2a30b596a8ff767ff6b68a37d71dba82,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46032-6296STDY10244586,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.bam,c1facc098169cd18295ccbf712672496,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.vcf.gz,add1589df9f9091f685188330d4e21d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.zarr.zip,f29964c9549b7e782fbcf8a7e0b4ec89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46033-6296STDY10244587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.bam,612a46f9668699989a10ed9d831c2ac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.vcf.gz,8e0826a9a3a0c6572bd6c2e620a03606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.zarr.zip,9943e55b74409b9bf601cd32ce4397a3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46034-6296STDY10244588,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.bam,1d438bda644a213fd5b466591f7eb69a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.vcf.gz,6b8c1b26b20734aa171affe077d51991,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.zarr.zip,0993006e725d81b05d91d835573bac9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46035-6296STDY10244589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.bam,e020d9e75fb1cd7a42b33c620607900e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.vcf.gz,3108713a82176c0ac66faf801d7768e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.zarr.zip,497a690e443ec0a9f808a82f20a4998d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46036-6296STDY10244590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.bam,e670490d1f9db31cdb1bd1cc93b599b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.vcf.gz,18306a98ed7810115f2511de952e0964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.zarr.zip,811a669d35eb7bc4db77cd1d929de374,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46037-6296STDY10244591,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.bam,c3147d54ef6d7a5c8759bf1d8f0cad09,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.vcf.gz,1793fb81a1b8dcde14d7c5f43063684a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.zarr.zip,e9f0a1cca0e9957574fc996303e438e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46038-6296STDY10244592,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.bam,e9655fc12a36d8665c84cec279e8cd65,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.vcf.gz,5aa95030e82d633c291860313eab7f8e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.zarr.zip,578f564ca333a45b3e06299f7116dc8c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46039-6296STDY10244593,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.bam,56510e534656281020afc4835d81b82e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.vcf.gz,02610e4b04bf2820f09b1422cf76e3fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.zarr.zip,80ffac68cd23540ea337c8cd4788624b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46040-6296STDY10244594,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.bam,9d1510cf7308af23e85b95746d6f18c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.vcf.gz,1b7acea660ebcdc62c6d7525e799d612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.zarr.zip,409aacbf7aef07eedd16798fd9d59c8d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46041-6296STDY10244595,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.bam,937208cbf075af93ada10f7518e22e3d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.vcf.gz,ea427016babca9a86f60bb9ce7ab248d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.zarr.zip,ff853352eb520aa71df0dee893bdd200,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46043-6296STDY10244597,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.bam,e27ec39bdef518d506ca83778efbc9e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.vcf.gz,1e068d2c749acd9c6c9a17d5bf27b1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.zarr.zip,994ae24e18976fa55f123b9bdd1f154e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46044-6296STDY10244598,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.bam,9bd6ead7548bde4a691394413569b96f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.vcf.gz,6e59775db52422e811d64bdd50963608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.zarr.zip,f13f384975d02e15d4bddfcf97107ab8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46045-6296STDY10244599,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.bam,56e665b021c3656fd92bbecad792fcff,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.vcf.gz,cec23c7e2cacdc0ada49ccb714cc6115,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.zarr.zip,facf422ec9f62380c64f1fed64350008,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46046-6296STDY10244600,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.bam,3dfd1b2fe73d998aa909a9f7e9de5e06,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.vcf.gz,fd73b34eb4e06e91031fa6339f649ee9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.zarr.zip,9e351d5255e9b3378443a81be9565fdb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46047-6296STDY10244601,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.bam,e5b4dd76297b2985e82484eb3cd08b17,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.vcf.gz,ddcadf2d9eb911094ae34c4763cd4cc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.zarr.zip,2039ba6828fa664781e417a4cb129057,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46048-6296STDY10244602,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.bam,0ca181b5e2e093c590595e5b6b8d0b60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.vcf.gz,aa8ff39402686765b13ee4e4bb30e0cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.zarr.zip,38ac9e5a6d69161fd5b87e8448765060,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46049-6296STDY10244603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.bam,1b2dfda57496438ced03b19bbeed30c5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.vcf.gz,66bf251210144cde55b2ab423cbf677a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.zarr.zip,f3f35870be00195f669a5b5fdff12123,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46051-6296STDY10244605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.bam,f6d43a71deed42b671e3fa104909dfce,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.vcf.gz,9036c6ec2e9e63d11ca9a44ed5f4f0bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.zarr.zip,d8231701a83305388dd655772f8777e5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46052-6296STDY10244606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.bam,64559e295ad39faaae3e237802bf95b6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.vcf.gz,e6302b321dff324283390595d9b9f744,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.zarr.zip,7a3d8e0fb8f0748986c824e75821ad31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46053-6296STDY10244607,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.bam,3f5a92e277a1f80f3d893d0dca19017e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.vcf.gz,53d9d56d88e12c0b651eb5dbef02cdc0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.zarr.zip,bcbbfcbf138e8273f5c84c0f3ddc5f0a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46054-6296STDY10244608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.bam,38c24bb390ad874670c12a60abae477a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.vcf.gz,253f09f88889115c2e26911c5a083d52,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.zarr.zip,2690a2d0e6fe9b59c58cf60f46492472,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46055-6296STDY10244609,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.bam,d7680eb95f954164d966869b7548fac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.vcf.gz,044b7d845796952c9e4223713a6c1fd3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.zarr.zip,79cd8a70e6a56827e0effaddee3ad25e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46056-6296STDY10244610,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.bam,e7e995ffe3a25308ac9994955d5ab16a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.vcf.gz,78263eee27b6d580054d5a002d133565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.zarr.zip,f700c3f12528158195ccffc6b98ea050,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46057-6296STDY10244611,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.bam,983de20e05e6ce69daf8c9af2d8a1890,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.vcf.gz,9de1cdb6915b3ad5d963175ea61cba76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.zarr.zip,b1630fe8d6962e22a180e98c94bf6e89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46060-6296STDY10244614,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.bam,c4101f05ee89b99ee9c0f5866701e9ef,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.vcf.gz,159c742b6588f40112c8d23c6558a397,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.zarr.zip,a49017de47878d6d2e4cacb35393b5a7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46061-6296STDY10244615,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.bam,1e7bd1066fccde110c836fc24b126eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.vcf.gz,5738f1e43e82eff0b0708ac43250390f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.zarr.zip,51b873c236d4cc7a64514d8007f620af,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46063-6296STDY10244617,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.bam,c5235cc932300c02b3ef94fafd4fb28c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.vcf.gz,6e752c0715aa4de989cd231766e1c7ba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.zarr.zip,9f93ead5253aa6618c5f5ee864e01909,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46064-6296STDY10244618,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.bam,326320cec2ba7173d4323c42bee6c8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.vcf.gz,065a2bc8be81975bda4a18302df14e47,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.zarr.zip,f162809e72bbe79fd4cb80017796ad85,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46065-6296STDY10244619,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.bam,e37995cebe508f201f4f9a2a023db0d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.vcf.gz,905aec9e3d01c4d91c5029579aed93d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.zarr.zip,f567bd12cacd672a731870ea1978fd63,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46068-6296STDY10244622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.bam,88d49a34d648fb44378672f74634c2b3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.vcf.gz,27b481808db5119bc9b1c757604e2776,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.zarr.zip,507570fdfe21e28a4818782fd8dc5371,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46069-6296STDY10244625,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.bam,d3e787f3f8c9f7ee81b48b38697a5658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.vcf.gz,f1969fb9eb53ee63a06a1ccc3a8305e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.zarr.zip,acee34d8ccf69acb35bb886044b420ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46070-6296STDY10244626,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.bam,9a99b5851037e13352d33c6a54b9884b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.vcf.gz,c0d78d0c54c2dcdbd41ed36d7caabbba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.zarr.zip,5821cc4028b4b5d07c4f05534609131a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46071-6296STDY10244627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.bam,9817a2eb4f3988959a7d3368d7fa1a95,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.vcf.gz,c1aaf3b6278acca92bda9955acef22b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.zarr.zip,97bd1f0d511d75acba63eb8a50a4bc18,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46072-6296STDY10244628,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.bam,ffab700b4bea33596a9d739e35185dc9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.vcf.gz,66fe83bda16095defb8a20b9c7cebfca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.zarr.zip,eace5bc90ae795f3870428c23e4baaa6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46073-6296STDY10244629,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.bam,fc76e803cf086bcfb2acb668ca5c7688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.vcf.gz,f314bf31e9ad16b33e3568218cfa90c0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.zarr.zip,8acbb037ceba2f256dad346a004e53b5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46074-6296STDY10244630,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.bam,60b889ec6915c59f67471b8728c0659d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.vcf.gz,3da9920df9c339390a594e9a9aeb17b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.zarr.zip,78ed65683b9e76ff2895fd27f704b832,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46075-6296STDY10244631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.bam,e96c1718e3ab736bb27085facbb17bda,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.vcf.gz,380308638092e69edf993136e9a3f63b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.zarr.zip,cc3d1230621e1948d4907387b75d6c11,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46076-6296STDY10244632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.bam,4afa84a46ac7b18c7111caa332c362ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.vcf.gz,0fe220ef062acf81a4dc3aaaba9e45ac,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.zarr.zip,cffc70fce3686e8bb994c4ed2178cd83,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46077-6296STDY10244633,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.bam,0c94e44ce93f8ec7f58b621913e01a78,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.vcf.gz,5723d487f2c3b7a912d1842f9cc1a95e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.zarr.zip,edaa589c2ded2a736bb8ebe28bc7bd12,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46079-6296STDY10244635,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.bam,5651a7ee7dd0fe9a0d2d43f76b7dec9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.vcf.gz,3f49c8792ad156cbc0667beec8e3fd57,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.zarr.zip,0b04ad3185d80d37253669a6796b418a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46080-6296STDY10244636,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.bam,7c619ce3e8bf9afe039c3fc900de746b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.vcf.gz,18b828ebdc48b5f49959e95bfa0aa056,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.zarr.zip,0908bdd2e1113e085688080010d9c575,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46081-6296STDY10244637,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.bam,fabc10edb900c7963a0e574c168e053f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.vcf.gz,6d2d6c223e4ad7071dc46a963981c472,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.zarr.zip,862ffac3f8b7332064af417a52d0c926,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46082-6296STDY10244638,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.bam,44e785256d94d9a3136910ecf1aa16b7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.vcf.gz,723b36003192db50d6bc09c1000523d4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.zarr.zip,e358a83176335add62daaae3069f6813,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46085-6296STDY10244641,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.bam,0763186f8740b265f728916a83047ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.vcf.gz,ef2920b39f6d26f0d2ed40b70cbe4b2d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.zarr.zip,2b79df54a9c6986ca3ac5526f2e3f835,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46086-6296STDY10244642,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.bam,7076efedb5b3571bc3e477d7a0e8150f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.vcf.gz,201a259f3438f0c6c828803bf3b27df2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.zarr.zip,ab767d757dadb3d29768d9a683fe4e1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46089-6296STDY10244645,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.bam,301db4f53172020b34785811d2bdcd5d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.vcf.gz,d089fb93a50ccc3a8200e9c7f9effbbc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.zarr.zip,316f18192bbb6cd75bae2cd1595cd040,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46090-6296STDY10244646,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.bam,ac09d1534c9c1213e3f34472f698f98c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.vcf.gz,57abf91fdaab79128b4214eab0cdfbf8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.zarr.zip,e0bbd3c2845daf322f747662ad01e257,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46091-6296STDY10244647,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.bam,f58f809898be1124be0a75828d17db30,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.vcf.gz,724f5f4ae4e10778c3bcd434b66b2a81,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.zarr.zip,c13d15f93d20787dd4f1c33fef2e0cb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46092-6296STDY10244648,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.bam,e5c160ba2997d28168842ccf2c3717b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.vcf.gz,9928773ad9a4713e9168d39f8079ceaa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.zarr.zip,cffdb8b3366dd3bb75ae1af875a5bf10,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46093-6296STDY10244649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.bam,2e40e3d858b15924dad9f8decbebf12d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.vcf.gz,41b22a186ebcb2726e93323c87f5e944,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.zarr.zip,e5e8c3e9ae3174289635ca345703fdcf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46094-6296STDY10244650,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.bam,a372d4621244b81e4a565d78f4d08fa0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.vcf.gz,5e50aead63697522902fd31caa5fb298,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.zarr.zip,fd4a34a3968bb41956a53cd189b5a33e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46095-6296STDY10244651,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.bam,571ac49f46ab3bfe875bbaf45c1bc713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.vcf.gz,50685b6768cd829b306ce77b97a5d268,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.zarr.zip,6083c3f2b206a38324e0362422368d4c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46096-6296STDY10244652,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.bam,11fccdbfed57786680838fcc1e21c22d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.vcf.gz,06fd37fdcaebef95f89cd1dd26223c08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.zarr.zip,3fb29c1101c284c8d267c70c40333a44,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46097-6296STDY10244653,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.bam,146bc98625e9de8e8c18e3b0655c1613,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.vcf.gz,cc0cafc676be171054104e9a1fd844aa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.zarr.zip,fca2312d74cec77c8f832dd6f8168490,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46099-6296STDY10244655,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.bam,7d9ee2393352d00e54a5dbd93093790c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.vcf.gz,dd9c428faff08546842c943f9cdb1709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.zarr.zip,dcf39e7cfd7a3393b6e0e6198f5a03a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46100-6296STDY10244656,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.bam,17dfd4a0f0f9a33f103872bae83c2103,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.vcf.gz,66a909f21e3b76233285400465878e38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.zarr.zip,f79b9f16662746fde5a7fb4bba0cb426,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46101-6296STDY10244657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.bam,799a27898d026a6691ec5e412fcbc1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.vcf.gz,03df5dfbd082d1dcaf23b50ddac7cbe2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.zarr.zip,5e2b47dcfac2dd7e050884ea2f10f677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46102-6296STDY10244658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.bam,10fb36c8a678e7506bb62d9d39685b7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.vcf.gz,8528117ddbc126be7d16995a760cbf97,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.zarr.zip,9cdc5184f05a2fa57daa620920f989c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46103-6296STDY10244659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.bam,2021a696721431f1d72100c0b2b628fd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.vcf.gz,afafe645d9c66c5027ac065bab57b02c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.zarr.zip,e1cbcb4eb08d9ade5176a185b4975412,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46104-6296STDY10244660,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.bam,e6e7779768e8856bb361eaa6424958fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.vcf.gz,80df687f9b93b9c56335fc888ef16977,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.zarr.zip,17e6fe272d7760cc23cf66bacc45961b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46105-6296STDY10244661,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.bam,d74b9824663e2d1bc29dcbcc26e86577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.vcf.gz,ee28f65d079fd03931703cfc0237761f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.zarr.zip,0924f785a031937fa712433f3f15a1e4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46106-6296STDY10244662,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.bam,9153ccac305e1b1947640435a4e72dab,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.vcf.gz,937038eace346e24d248cc3b8d97bb4b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.zarr.zip,e38500fe58e1ce2578547cdc46ee4b28,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46107-6296STDY10244663,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.bam,a41f35062057f501aa0f35625d51b2d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.vcf.gz,619a5a31165f60a9abc99d4b76655d90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.zarr.zip,c50b311a7aa9a0a9c963922137369cd1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46108-6296STDY10244664,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.bam,e845c7294d565d7b7d60e18df7df4a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.vcf.gz,17640788657fc74df34cdf04287f7997,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.zarr.zip,6633c7fc97cf45f9a708ed0d98e8da4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46109-6296STDY10244665,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.bam,2391faa681cd1c6a07f68ddcf72fb2d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.vcf.gz,4d44ab3a838fd237993ec3988c735f22,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.zarr.zip,fe8b8928e028a4b49ee81c744abb2762,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46110-6296STDY10244666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.bam,b439f6fcbd8ccfb0c5e0c24177ecb9d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.vcf.gz,689433211da8f7c6745ede98e73a1c87,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.zarr.zip,bf7d4d3e69b596e3f379aac2046bb797,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46111-6296STDY10244667,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.bam,c68ef2eb103e2817f6a0fec0dd10ff6e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.vcf.gz,6c1f129b5eb981742e6735072edf8eb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.zarr.zip,90176b6262d6b0d78caf7114c3e7f555,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46112-6296STDY10244668,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.bam,0022f35363daafd25e6449946b4d1105,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.vcf.gz,e2c972a08dd980b4b9dc256a59cf6b01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.zarr.zip,f74150f8495a12b35b60c175305128be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46113-6296STDY10244669,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.bam,e902e6edb14ad33ed3bae8fbcd520454,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.vcf.gz,485d4adf4f888b14bb569a514a72d134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.zarr.zip,744e9ae6fa4030159e33cee8166e4364,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46114-6296STDY10244670,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.bam,dbb641160a8bc9f642bd12fe15d98b13,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.vcf.gz,ef9591c7fbcf836476b18610e73d3f3f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.zarr.zip,b5ee5701b6578588ef8d39afff1f92ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46115-6296STDY10244671,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.bam,74a9b024eb3e14feaeda4772623bb575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.vcf.gz,b3b0bd269afc5fb9ee70106bc85ab47c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.zarr.zip,82b169c34ebff1d8fa5e0c9653357e58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46116-6296STDY10244672,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.bam,771ce1e0215a2e89a47d46bd7b73b1fe,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.vcf.gz,1ac171b818e3e26748051e7b11f36b90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.zarr.zip,bb896bf3dba7a5650d575a88840c3637,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46117-6296STDY10244673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.bam,1470a757d2a3859a413784dcba5fb316,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.vcf.gz,32908172a8c75a477a16f095ac05056b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.zarr.zip,d3951c6e4d1747d4ff04e988837c963f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46118-6296STDY10244674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.bam,366910128041adefad0f6caffdcb5da0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.vcf.gz,a7baf0aa263a054bc03f286b55a851bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.zarr.zip,3061b1ec62b2689965399cda81fd209c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46119-6296STDY10244675,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.bam,d64ba73aa7a30734a5dd16501eadc3f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.vcf.gz,dd6ee745f391b0c2140cdb70d07a68db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.zarr.zip,d4210ed1eca458d3a4ca263046e85023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46120-6296STDY10244676,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.bam,fa5d21986218b7b574d3bc410a7e28d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.vcf.gz,c2f37eb3838bf465b933727fc67ec127,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.zarr.zip,2e8f06e36ce8ece662be5109c94b40a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46122-6296STDY10244678,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.bam,db2c5278bb3945c54ccc8e9279d50622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.vcf.gz,066bc119de5d2fab7a10e37561f0198a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.zarr.zip,7ce1155050c452daf27c78c67015f40b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46123-6296STDY10244679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.bam,8f22ba6a8e70d634a05277cfd9caf55b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.vcf.gz,0a49b6215f41f629cb894949419c6225,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.zarr.zip,8a110f4e9499a1d91bb19b71d3717ab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46124-6296STDY10244680,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.bam,a4c60e332d07e87493a8de8c1987dc9d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.vcf.gz,b5cd476461a938d8c2f0c44302628249,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.zarr.zip,f1bb177f63e46215f88d94cc6446648f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46125-6296STDY10244681,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.bam,710d39c6336c2b727955a472d841eec6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.vcf.gz,1b5d5a038a87d661c7b23e5ab7f70833,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.zarr.zip,ec268451a7e403e7012f930d235777c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46126-6296STDY10244682,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.bam,9017782fd7cb24d7352d94a8653b371d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.vcf.gz,a2687baafe9ff71cfcabaa7be9c80109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.zarr.zip,d02258bd20a681c9f88a018b08223723,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46127-6296STDY10244683,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.bam,4abe8438c7bb0818cfe6279e4af63ee4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.vcf.gz,4a3f7a557c27a7bf3b11903f82fe1c8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.zarr.zip,2788ea16ef1d3925d6b16e4f3f63bf05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46128-6296STDY10244684,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.bam,a1b050c7b4b460414ee4d4af0f5f550d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.vcf.gz,efd0a09b216390bf97a01cc64015a2c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.zarr.zip,0f28fb7db62edf59ff4e139db881db0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46129-6296STDY10244685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.bam,7db2f0c07d0f1734c93cc66b6c7d9631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.vcf.gz,62575ca298a7565bbb97651bdf0b9ebd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.zarr.zip,3e437d0b009b63a7b4281a1ac5d17f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46130-6296STDY10244686,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.bam,81de5de97c273a2d8a8348e43bf0b40b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.vcf.gz,141e96c60423306a9ed8c7d47841560a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.zarr.zip,4048b08ee5f26e1633e7e7995a4b0b56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46131-6296STDY10244687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.bam,181a57d461caca71137e8d0ba00da3a7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.vcf.gz,03fe541e393fe9c70e04153005eb44e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.zarr.zip,a7c5820aed1136836bcdca6b5c4d5b9e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46132-6296STDY10244688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.bam,c7103015a053cd9a49677fc0540900ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.vcf.gz,77e40b3a05cde15bb9a97ec817ac9715,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.zarr.zip,dd9b19d3f910da1b71063792a3c104df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46133-6296STDY10244689,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.bam,9813945a73dcead8f778dd79c0c09fae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.vcf.gz,c44ff1b9281df3672209818c0fdebe08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.zarr.zip,a7d75a97d12b00eed8ab7e77bfbe27b3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46134-6296STDY10244690,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.bam,fef8f09188ced5657c4d903919aacb26,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.vcf.gz,83d50ec3d3cb09c3255d8a7e76181e9a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.zarr.zip,808fb1cdca655c456aa9edd0c5cec5ac,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46135-6296STDY10244691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.bam,308db16ffd476479f8e552d3c2c79c7c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.vcf.gz,1992cccb91a26822dcf0bdf093b10ee0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.zarr.zip,0ebe5eb7ef03b89905ea6dac8f1eb9d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46136-6296STDY10244692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.bam,c8c9fe06dc7a189fd48cf262dab01f82,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.vcf.gz,b24cb86c6a57668e9205937953336181,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.zarr.zip,252866e1e45e1de20d6e87d8eab6832a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46137-6296STDY10244693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.bam,72263420016a6358e0d297c8129c96e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.vcf.gz,ed3dc3b02ef462180ff1f09adaf53a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.zarr.zip,e9f5938b0627a80387f1065e59b37301,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46138-6296STDY10244694,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.bam,672b166fcf67daa726a75565f44c5205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.vcf.gz,b06ccc0294ff92a140d6d163fa665ec2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.zarr.zip,d330294ad2d9a1d4d59a7dd5a3122d4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46139-6296STDY10244695,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.bam,bb1fb7093884e3bb0a6c208b784ffac4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.vcf.gz,0551c93b94eed118bff210914254dff5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.zarr.zip,15ef619350e945a6dbce59b969f9d8ef,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46140-6296STDY10244696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.bam,94f23659ee39233bf368670209c6cc99,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.vcf.gz,1323ea577cd9bebb7bf6ed420ce43134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.zarr.zip,b616a193e86d1213fcd5dd4213983124,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46142-6296STDY10244698,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.bam,b66c0b9f6b3f71ce6566d6adf788433f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.vcf.gz,a9ae8f1908dd0f0cce27e698d2b4d581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.zarr.zip,555350ae704b3c8d9a1db0df35c1f226,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46143-6296STDY10244699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.bam,17dcff75bd9aae8e8609da5b55286577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.vcf.gz,fa9c08f21cfb0e0ac790663ad2ddcb79,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.zarr.zip,5f66a0c304e73d8b6427eaad715fcbb2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46144-6296STDY10244700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.bam,fcd09d043b04a2422728a372388ef603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.vcf.gz,b64f0a6016f0fe316e12ffd9b05c714f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.zarr.zip,d70051b71d83a2c5d20c481a622ade55,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46147-6296STDY10244703,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.bam,ff4e6f2983b5e93a59f83b1b925836a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.vcf.gz,fda6b5d81dd1f0c69f538b23c57d6627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.zarr.zip,09e92b51445a729d917962e15bb3c1f7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46148-6296STDY10244704,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.bam,6a909c17f40150cc2547ceddda30610c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.vcf.gz,8e6eaea206b9aaf88cd479841b87c2ca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.zarr.zip,62e1c13b45d15d68dca0bfae4781c88f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46149-6296STDY10244705,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.bam,9c1b2c0942c2d2cc97578b5e0584faa4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.vcf.gz,bb411986e6447eaab2bcc81f1bc3e228,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.zarr.zip,5bc727fba006f6f3b3963b75ea867002,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46150-6296STDY10244706,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.bam,42362b69f9cb357aa163615d4e3c2f86,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.vcf.gz,f76a923a286e9b0699a80d002e12824a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.zarr.zip,b5afcc81c9b6c34c5bcd5ee974461b98,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46151-6296STDY10244707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.bam,36365734ce6fa33deebdc84d95c1f1da,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.vcf.gz,ea1effdd7390605a2857b13f74d9f63c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.zarr.zip,1bfe7297f325433b89cb775e90f64da7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46152-6296STDY10244708,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.bam,bad12b6eee4d739f97a955703c398f4d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.vcf.gz,635f6538207e9651ec1b856f9f605046,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.zarr.zip,5db5a08ea1cbc1bde9809884c9094d5e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46153-6296STDY10244709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.bam,edb49735d204a0907dd497ee9055a478,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.vcf.gz,c43aea13db62ece38fd1d31976647c92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.zarr.zip,f009d0edfd24bee3ac36f4dfa53d26d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46155-6296STDY10244711,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.bam,53f5050f0956971eed6672572c9b662c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.vcf.gz,16fc4a9cadcd3561d2f9744901181605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.zarr.zip,3040fcea89d997b80958c9f7dbb3dd64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46156-6296STDY10244712,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.bam,86ba812d131d5fea2be42af1d4782cbf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.vcf.gz,4ce1c80b19a13f265563c38584266f9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.zarr.zip,5bd8aa5624f1c63ec61412126abd9845,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46157-6296STDY10244713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.bam,61220d017ea23e047b0178a9921c61d3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.vcf.gz,b783275c36ff12d14902be0c8c1e39c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.zarr.zip,57021a8eca7d07c4f9d7dad0fa062f74,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46158-6296STDY10244714,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.bam,25b74c9f9583017caaf7e19ec021d0a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.vcf.gz,8d6931c2553c8ed375b05dac8bcbeafc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.zarr.zip,52ffc8fa39bac8c89bf898e1103a2ec5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46160-6296STDY10244716,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.bam,7314c560398fc491a6c84389560deb7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.vcf.gz,1d5d41c13fa0a5115810df9e6d263700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.zarr.zip,ff1c09d4456bc00158565467adb1f05d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46161-6296STDY10244717,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.bam,48f8743ef68292fde0d6c175a93543b2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.vcf.gz,95c6bd8ec26da87330667e4856205691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.zarr.zip,b76043c150b635dc8b797c709e0ba742,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46162-6296STDY10244718,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.bam,30a4d28a800ffcd199d43d63e8a7b291,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.vcf.gz,dcb0c80168d38aae0b70edc33634249b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.zarr.zip,1bd38cf556bb88a69edddb94ef64ada7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46163-6296STDY10244721,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.bam,95a3241fe1053ff881dc853f474a5762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.vcf.gz,b87f5280c441e0ef2cd6757d2d58c29c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.zarr.zip,0d218a7ac1cd8506207a93c21a766a9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46164-6296STDY10244722,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.bam,848104688f551af6584d9be8d6a6c9bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.vcf.gz,a218379a0fcd6a63da2d4d5dcd179d38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.zarr.zip,42b35107f445f4a2bafc8c4bbab9595c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46165-6296STDY10244723,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.bam,7ec9c15383d2a1caedc47b056de4997b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.vcf.gz,4234bb0bbf6212081f27a10d70b4220e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.zarr.zip,fb981a1d8249d954b9c86a11d15edf38,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46166-6296STDY10244724,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.bam,2116f107cf69fe30a5722ead2f24d093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.vcf.gz,80e561e424c036325a68022e06691d01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.zarr.zip,56211a74fdd85dc2f07adfbd9dcfa148,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46170-6296STDY10244727,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.bam,e3d8e0f04b45359891714e462e295d28,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.vcf.gz,b7213a21ee8e0bc864c6fda177b36c53,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.zarr.zip,5fdbed7aea5a97ffd1523858902b1a30,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46171-6296STDY10244728,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.bam,3316ba7c54b5b5361e804709df3ec1bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.vcf.gz,3d7ad375274aa09b369b6cbdb294f1bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.zarr.zip,814094360a82f5f9c1a759ddc2ccaef8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46174-6296STDY10244731,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.bam,c756a0db0530e0f881561ee08f2bdd1f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.vcf.gz,c994aadd8228c54faa554d6825c5455a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.zarr.zip,1063a6cd18000c0101c8a8d35b200196,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46176-6296STDY10244733,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.bam,a35cd5b4fb13632b16db475e7e2b1bc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.vcf.gz,024ad98abfafbb87752999edfdbb0eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.zarr.zip,95d85adec667a2f2f0add4198b05640a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46177-6296STDY10244734,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.bam,19f6634f151330c4f14891ea80961b6d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.vcf.gz,af2a10603340fdd3e9393f25d3131331,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.zarr.zip,03d879c9a5454960ed6f626ffc1781d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46178-6296STDY10244735,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.bam,adc1763a34d0e0613507b753babfcadf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.vcf.gz,d6e323a7be1cbbaff31c0daa736cdb45,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.zarr.zip,138fc45253bf169c66a738664e7b0612,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46179-6296STDY10244736,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.bam,12fee4ccb7ef5628a4bfa869adbf667d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.vcf.gz,be756ca129991e7a836e879aedb1766a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.zarr.zip,740a4d3cb40631e6143455ff3f8acb6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46181-6296STDY10244738,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.bam,1499f5ca5e056874bea9dfe1257dc6c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.vcf.gz,3329c612bc1169ace9f6fdf80471b21e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.zarr.zip,fc4574e2d95c70c069bf771170b12949,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46182-6296STDY10244739,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.bam,573eb24bb0ecfdbcf0dd1a5d1d7240b4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.vcf.gz,2ecbedd26b40708becbcaa014dd54685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.zarr.zip,f64b06e936fa5b905528f496c38e8179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46184-6296STDY10244741,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.bam,2101b496021d75704163de3ff43b5d83,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.vcf.gz,bf3c5fd872cb0be4def60331c2df24ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.zarr.zip,96cebeda2fe3fec555853d340633eb1b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46185-6296STDY10244742,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.bam,2d57e4c1fe777c4f4a61fa22e2a44fad,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.vcf.gz,0adc862279fc8eefaca763cd2fde3384,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.zarr.zip,90297811c9422c827336f0fe9af73bd4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46186-6296STDY10244743,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.bam,ef57766adb637f83c425c11539a36e25,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.vcf.gz,0f571f7acb25c77ecd693e46e70c3606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.zarr.zip,7b69a02639dc8c4f0ab19ee461dbdc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46193-6296STDY10244749,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.bam,78709560feaa69be12f210bd1a290deb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.vcf.gz,92a4756a2f262b95c0cd010ef6f73c77,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.zarr.zip,cd5ed5878ec116dd66ecaf17a1294467,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46194-6296STDY10244750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.bam,0d38b2ee1805e9d2247997eefaa37d9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.vcf.gz,98a65c01377b0a1c843987727bfdb36d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.zarr.zip,736ffa8b99c6cbfe0788ed3981690c71,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46195-6296STDY10244751,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.bam,3317d75a20e8108d146a262025d3e373,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.vcf.gz,62ba7e89fd3421fa7a0575b04b534f56,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.zarr.zip,302c682ed385ac6bd29f7b8ba486a5d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46196-6296STDY10244752,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.bam,e171145dcff2ebfedf0e7630b4f685d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.vcf.gz,6c88a263400342d57d73e63dc751f901,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.zarr.zip,d52a51ae8c2d5e582f5c72f704239d27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46197-6296STDY10244753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.bam,a2ae69924541dec1b05d51f15d1cb579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.vcf.gz,2b481c427a11e1b07067428549da727b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.zarr.zip,e2996f26ec1872e116613c97e407fa72,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46199-6296STDY10244755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.bam,5afd956b2b4b7ad5cf78b99a535c1627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.vcf.gz,8e03b3645d6cccd0598cd885e77a065f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.zarr.zip,7635ded796422974ada61f2779917b33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46200-6296STDY10244756,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.bam,9aa621ac0c7d795c7cac7dba819f2b18,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.vcf.gz,1b8d9f3cd4a06f12a50dc21528da721b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.zarr.zip,969bf551c8f3180893949e71a6151564,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46201-6296STDY10244757,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.bam,47493446d43054f545fb0313afdda23f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.vcf.gz,3e6673cab726d90cd6ce58d4b46b5b63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.zarr.zip,75984eb4885fb69e2df054fe05f20b9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46202-6296STDY10244758,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.bam,4ccf10f7cdf07ebf2b39abf62958a7b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.vcf.gz,b2568e1051464118fe3aadb93547c730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.zarr.zip,3fe052930152b21cfa7bddad122cdbb9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46203-6296STDY10244759,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.bam,537a94ee8f982a13e545c6133445154b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.vcf.gz,20bd14fac661d14dd6eec4e444d84b89,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.zarr.zip,6c98d7818a986f1262652b8a44f18004,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46204-6296STDY10244760,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.bam,00725c2ff497bb0ddf82846300cd5f4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.vcf.gz,83d45de9a858ee511963c07b5a37d679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.zarr.zip,17e3347ad5759a78a11989e4d49fcee8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46205-6296STDY10244761,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.bam,1f092c286023577d2e9bd97ad3d1fc76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.vcf.gz,d51b9ad825fa1ca1255a7f6928867753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.zarr.zip,a1f655b455f6986112c4a2803a030a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46206-6296STDY10244762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.bam,eeaf7e7ef3b1e32b99219cc65791edaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.vcf.gz,55aa7ef2d601ca4a26261b0705af4b73,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.zarr.zip,41dfc76ae8b0446d76cf784b8b1e10c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46207-6296STDY10244763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.bam,6c585941c0a346f7416c1030e4f5c1d7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.vcf.gz,ce007ea36a96461338412d7d7402f425,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.zarr.zip,b088bb1fc8c71c2595691792618ea3b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv new file mode 100644 index 000000000..25ae0f297 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv @@ -0,0 +1,249 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS54551-6143STDY11462443,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54553-6143STDY11462445,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54554-6143STDY11462446,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54555-6143STDY11462447,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54556-6143STDY11462448,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54557-6143STDY11462449,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54558-6143STDY11462450,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54561-6143STDY11462453,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54562-6143STDY11462454,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54563-6143STDY11462455,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54564-6143STDY11462456,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54565-6143STDY11462457,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54567-6143STDY11462459,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54569-6143STDY11462461,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54570-6143STDY11462462,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54571-6143STDY11462463,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54572-6143STDY11462464,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54574-6143STDY11462466,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54575-6143STDY11462467,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54576-6143STDY11462468,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54577-6143STDY11462469,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54578-6143STDY11462470,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54579-6143STDY11462471,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54580-6143STDY11462472,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54581-6143STDY11462473,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54582-6143STDY11462474,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54583-6143STDY11462475,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54585-6143STDY11462477,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54586-6143STDY11462478,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54588-6143STDY11462480,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54589-6143STDY11462481,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54590-6143STDY11462482,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54591-6143STDY11462483,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54592-6143STDY11462484,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54593-6143STDY11462485,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54594-6143STDY11462486,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54595-6143STDY11462487,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54596-6143STDY11462488,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54597-6143STDY11462489,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54598-6143STDY11462490,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54599-6143STDY11462491,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54644-6143STDY11462538,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54647-6143STDY11462541,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54648-6143STDY11462542,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54649-6143STDY11462543,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54650-6143STDY11462544,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54651-6143STDY11462545,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54654-6143STDY11462548,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54655-6143STDY11462549,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54656-6143STDY11462550,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54657-6143STDY11462551,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54658-6143STDY11462552,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54659-6143STDY11462553,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54661-6143STDY11462555,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54662-6143STDY11462556,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54663-6143STDY11462557,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54664-6143STDY11462558,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54665-6143STDY11462559,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54666-6143STDY11462560,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54667-6143STDY11462561,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54668-6143STDY11462562,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54669-6143STDY11462563,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54671-6143STDY11462565,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54675-6143STDY11462569,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54679-6143STDY11462573,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54680-6143STDY11462574,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54682-6143STDY11462576,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54683-6143STDY11462577,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54687-6143STDY11462581,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54689-6143STDY11462583,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54697-6143STDY11462591,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54699-6143STDY11462593,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54702-6143STDY11462596,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54703-6143STDY11462597,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54704-6143STDY11462598,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54706-6143STDY11462600,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54707-6143STDY11462601,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54709-6143STDY11462603,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54710-6143STDY11462604,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54711-6143STDY11462605,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54712-6143STDY11462606,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54713-6143STDY11462607,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54715-6143STDY11462609,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54716-6143STDY11462610,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54717-6143STDY11462611,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54718-6143STDY11462612,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54719-6143STDY11462613,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54720-6143STDY11462614,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54722-6143STDY11462616,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54723-6143STDY11462617,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54724-6143STDY11462618,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54726-6143STDY11462620,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54731-6143STDY11462625,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54734-6143STDY11462628,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54735-6143STDY11462629,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54737-6143STDY11462631,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54738-6143STDY11462634,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54739-6143STDY11462635,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54740-6143STDY11462636,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54741-6143STDY11462637,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54742-6143STDY11462638,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54743-6143STDY11462639,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54744-6143STDY11462640,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54746-6143STDY11462642,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54747-6143STDY11462643,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54748-6143STDY11462644,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54749-6143STDY11462645,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54750-6143STDY11462646,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54751-6143STDY11462647,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54752-6143STDY11462648,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54753-6143STDY11462649,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54754-6143STDY11462650,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54755-6143STDY11462651,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54756-6143STDY11462652,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54757-6143STDY11462653,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54758-6143STDY11462654,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54759-6143STDY11462655,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54760-6143STDY11462656,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54761-6143STDY11462657,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54762-6143STDY11462658,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54763-6143STDY11462659,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54764-6143STDY11462660,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54765-6143STDY11462661,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54766-6143STDY11462662,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54767-6143STDY11462663,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54768-6143STDY11462664,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54769-6143STDY11462665,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54770-6143STDY11462666,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54771-6143STDY11462667,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54772-6143STDY11462668,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54773-6143STDY11462669,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54776-6143STDY11462672,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54777-6143STDY11462673,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54778-6143STDY11462674,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54779-6143STDY11462675,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54780-6143STDY11462676,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54781-6143STDY11462677,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54782-6143STDY11462678,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54783-6143STDY11462679,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54784-6143STDY11462680,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54785-6143STDY11462681,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54786-6143STDY11462682,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54787-6143STDY11462683,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54788-6143STDY11462684,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54789-6143STDY11462685,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54790-6143STDY11462686,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54791-6143STDY11462687,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54792-6143STDY11462688,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54793-6143STDY11462689,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54794-6143STDY11462690,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54795-6143STDY11462691,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54796-6143STDY11462692,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54797-6143STDY11462693,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54798-6143STDY11462694,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54799-6143STDY11462695,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54800-6143STDY11462696,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54801-6143STDY11462697,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54802-6143STDY11462698,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54803-6143STDY11462699,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54804-6143STDY11462700,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54805-6143STDY11462701,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54806-6143STDY11462702,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54807-6143STDY11462703,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54808-6143STDY11462704,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54809-6143STDY11462705,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54810-6143STDY11462706,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54811-6143STDY11462707,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54812-6143STDY11462708,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54813-6143STDY11462709,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54814-6143STDY11462710,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54815-6143STDY11462711,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54816-6143STDY11462712,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54817-6143STDY11462713,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54818-6143STDY11462714,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54819-6143STDY11462715,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54820-6143STDY11462716,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54821-6143STDY11462717,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54822-6143STDY11462718,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54823-6143STDY11462719,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54824-6143STDY11462720,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54825-6143STDY11462721,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54826-6143STDY11462722,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54827-6143STDY11462723,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54828-6143STDY11462724,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54829-6143STDY11462725,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54830-6143STDY11462726,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54831-6143STDY11462727,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54832-6143STDY11462730,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54833-6143STDY11462731,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54834-6143STDY11462732,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54835-6143STDY11462733,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54836-6143STDY11462734,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54837-6143STDY11462735,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54838-6143STDY11462736,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54839-6143STDY11462737,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54840-6143STDY11462738,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54841-6143STDY11462739,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54842-6143STDY11462740,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54843-6143STDY11462741,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54844-6143STDY11462742,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54845-6143STDY11462743,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54846-6143STDY11462744,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54847-6143STDY11462745,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54848-6143STDY11462746,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54849-6143STDY11462747,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54850-6143STDY11462748,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54851-6143STDY11462749,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54852-6143STDY11462750,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54853-6143STDY11462751,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54854-6143STDY11462752,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54855-6143STDY11462753,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54856-6143STDY11462754,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54857-6143STDY11462755,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54858-6143STDY11462756,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54859-6143STDY11462757,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54860-6143STDY11462758,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54861-6143STDY11462759,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54862-6143STDY11462760,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54863-6143STDY11462761,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54864-6143STDY11462762,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54865-6143STDY11462763,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54866-6143STDY11462764,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54867-6143STDY11462765,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54868-6143STDY11462766,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54869-6143STDY11462767,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54870-6143STDY11462768,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54871-6143STDY11462769,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54872-6143STDY11462770,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54873-6143STDY11462771,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54874-6143STDY11462772,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54875-6143STDY11462773,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54876-6143STDY11462774,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54877-6143STDY11462775,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54878-6143STDY11462776,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54879-6143STDY11462777,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54880-6143STDY11462778,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54881-6143STDY11462779,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54882-6143STDY11462780,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54883-6143STDY11462781,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54884-6143STDY11462782,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54885-6143STDY11462783,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54886-6143STDY11462784,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54887-6143STDY11462785,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54888-6143STDY11462786,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54889-6143STDY11462787,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54890-6143STDY11462788,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54891-6143STDY11462789,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54892-6143STDY11462790,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv new file mode 100644 index 000000000..05caefe06 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv @@ -0,0 +1,249 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS54551-6143STDY11462443,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54553-6143STDY11462445,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54554-6143STDY11462446,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54555-6143STDY11462447,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54556-6143STDY11462448,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54557-6143STDY11462449,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54558-6143STDY11462450,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54561-6143STDY11462453,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54562-6143STDY11462454,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54563-6143STDY11462455,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54564-6143STDY11462456,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54565-6143STDY11462457,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54567-6143STDY11462459,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54569-6143STDY11462461,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54570-6143STDY11462462,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54571-6143STDY11462463,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54572-6143STDY11462464,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54574-6143STDY11462466,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54575-6143STDY11462467,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54576-6143STDY11462468,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54577-6143STDY11462469,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54578-6143STDY11462470,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54579-6143STDY11462471,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54580-6143STDY11462472,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54581-6143STDY11462473,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54582-6143STDY11462474,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54583-6143STDY11462475,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54585-6143STDY11462477,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54586-6143STDY11462478,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54588-6143STDY11462480,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54589-6143STDY11462481,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54590-6143STDY11462482,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54591-6143STDY11462483,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54592-6143STDY11462484,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54593-6143STDY11462485,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54594-6143STDY11462486,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54595-6143STDY11462487,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54596-6143STDY11462488,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54597-6143STDY11462489,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54598-6143STDY11462490,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54599-6143STDY11462491,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54644-6143STDY11462538,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54647-6143STDY11462541,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54648-6143STDY11462542,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54649-6143STDY11462543,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54650-6143STDY11462544,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54651-6143STDY11462545,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54654-6143STDY11462548,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54655-6143STDY11462549,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54656-6143STDY11462550,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54657-6143STDY11462551,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54658-6143STDY11462552,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54659-6143STDY11462553,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54661-6143STDY11462555,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54662-6143STDY11462556,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54663-6143STDY11462557,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54664-6143STDY11462558,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54665-6143STDY11462559,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54666-6143STDY11462560,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54667-6143STDY11462561,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54668-6143STDY11462562,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54669-6143STDY11462563,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54671-6143STDY11462565,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54675-6143STDY11462569,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54679-6143STDY11462573,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54680-6143STDY11462574,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54682-6143STDY11462576,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54683-6143STDY11462577,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54687-6143STDY11462581,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54689-6143STDY11462583,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54697-6143STDY11462591,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54699-6143STDY11462593,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54702-6143STDY11462596,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54703-6143STDY11462597,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54704-6143STDY11462598,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54706-6143STDY11462600,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54707-6143STDY11462601,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54709-6143STDY11462603,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54710-6143STDY11462604,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54711-6143STDY11462605,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54712-6143STDY11462606,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54713-6143STDY11462607,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54715-6143STDY11462609,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54716-6143STDY11462610,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54717-6143STDY11462611,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54718-6143STDY11462612,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54719-6143STDY11462613,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54720-6143STDY11462614,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54722-6143STDY11462616,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54723-6143STDY11462617,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54724-6143STDY11462618,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54726-6143STDY11462620,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54731-6143STDY11462625,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54734-6143STDY11462628,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54735-6143STDY11462629,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54737-6143STDY11462631,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54738-6143STDY11462634,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54739-6143STDY11462635,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54740-6143STDY11462636,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54741-6143STDY11462637,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54742-6143STDY11462638,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54743-6143STDY11462639,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54744-6143STDY11462640,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54746-6143STDY11462642,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54747-6143STDY11462643,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54748-6143STDY11462644,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54749-6143STDY11462645,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54750-6143STDY11462646,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54751-6143STDY11462647,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54752-6143STDY11462648,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54753-6143STDY11462649,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54754-6143STDY11462650,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54755-6143STDY11462651,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54756-6143STDY11462652,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54757-6143STDY11462653,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54758-6143STDY11462654,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54759-6143STDY11462655,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54760-6143STDY11462656,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54761-6143STDY11462657,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54762-6143STDY11462658,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54763-6143STDY11462659,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54764-6143STDY11462660,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54765-6143STDY11462661,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54766-6143STDY11462662,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54767-6143STDY11462663,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54768-6143STDY11462664,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54769-6143STDY11462665,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54770-6143STDY11462666,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54771-6143STDY11462667,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54772-6143STDY11462668,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54773-6143STDY11462669,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54776-6143STDY11462672,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54777-6143STDY11462673,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54778-6143STDY11462674,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54779-6143STDY11462675,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54780-6143STDY11462676,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54781-6143STDY11462677,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54782-6143STDY11462678,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54783-6143STDY11462679,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54784-6143STDY11462680,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54785-6143STDY11462681,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54786-6143STDY11462682,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54787-6143STDY11462683,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54788-6143STDY11462684,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54789-6143STDY11462685,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54790-6143STDY11462686,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54791-6143STDY11462687,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54792-6143STDY11462688,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54793-6143STDY11462689,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54794-6143STDY11462690,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54795-6143STDY11462691,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54796-6143STDY11462692,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54797-6143STDY11462693,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54798-6143STDY11462694,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54799-6143STDY11462695,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54800-6143STDY11462696,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54801-6143STDY11462697,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54802-6143STDY11462698,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54803-6143STDY11462699,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54804-6143STDY11462700,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54805-6143STDY11462701,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54806-6143STDY11462702,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54807-6143STDY11462703,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54808-6143STDY11462704,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54809-6143STDY11462705,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54810-6143STDY11462706,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54811-6143STDY11462707,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54812-6143STDY11462708,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54813-6143STDY11462709,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54814-6143STDY11462710,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54815-6143STDY11462711,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54816-6143STDY11462712,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54817-6143STDY11462713,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54818-6143STDY11462714,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54819-6143STDY11462715,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54820-6143STDY11462716,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54821-6143STDY11462717,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54822-6143STDY11462718,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54823-6143STDY11462719,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54824-6143STDY11462720,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54825-6143STDY11462721,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54826-6143STDY11462722,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54827-6143STDY11462723,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54828-6143STDY11462724,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54829-6143STDY11462725,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54830-6143STDY11462726,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54831-6143STDY11462727,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54832-6143STDY11462730,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54833-6143STDY11462731,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54834-6143STDY11462732,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54835-6143STDY11462733,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54836-6143STDY11462734,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54837-6143STDY11462735,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54838-6143STDY11462736,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54839-6143STDY11462737,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54840-6143STDY11462738,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54841-6143STDY11462739,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54842-6143STDY11462740,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54843-6143STDY11462741,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54844-6143STDY11462742,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54845-6143STDY11462743,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54846-6143STDY11462744,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54847-6143STDY11462745,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54848-6143STDY11462746,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54849-6143STDY11462747,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54850-6143STDY11462748,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54851-6143STDY11462749,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54852-6143STDY11462750,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54853-6143STDY11462751,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54854-6143STDY11462752,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54855-6143STDY11462753,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54856-6143STDY11462754,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54857-6143STDY11462755,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54858-6143STDY11462756,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54859-6143STDY11462757,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54860-6143STDY11462758,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54861-6143STDY11462759,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54862-6143STDY11462760,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54863-6143STDY11462761,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54864-6143STDY11462762,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54865-6143STDY11462763,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54866-6143STDY11462764,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54867-6143STDY11462765,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54868-6143STDY11462766,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54869-6143STDY11462767,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54870-6143STDY11462768,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54871-6143STDY11462769,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54872-6143STDY11462770,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54873-6143STDY11462771,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54874-6143STDY11462772,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54875-6143STDY11462773,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54876-6143STDY11462774,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54877-6143STDY11462775,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54878-6143STDY11462776,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54879-6143STDY11462777,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54880-6143STDY11462778,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54881-6143STDY11462779,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54882-6143STDY11462780,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54883-6143STDY11462781,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54884-6143STDY11462782,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54885-6143STDY11462783,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54886-6143STDY11462784,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54887-6143STDY11462785,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54888-6143STDY11462786,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54889-6143STDY11462787,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54890-6143STDY11462788,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54891-6143STDY11462789,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54892-6143STDY11462790,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv new file mode 100644 index 000000000..4c76b6b29 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv @@ -0,0 +1,249 @@ +sample_id,taxon +VBS54551-6143STDY11462443,dirus +VBS54553-6143STDY11462445,dirus +VBS54554-6143STDY11462446,dirus +VBS54555-6143STDY11462447,dirus +VBS54556-6143STDY11462448,dirus +VBS54557-6143STDY11462449,dirus +VBS54558-6143STDY11462450,dirus +VBS54561-6143STDY11462453,dirus +VBS54562-6143STDY11462454,dirus +VBS54563-6143STDY11462455,dirus +VBS54564-6143STDY11462456,dirus +VBS54565-6143STDY11462457,dirus +VBS54567-6143STDY11462459,dirus +VBS54569-6143STDY11462461,dirus +VBS54570-6143STDY11462462,dirus +VBS54571-6143STDY11462463,dirus +VBS54572-6143STDY11462464,dirus +VBS54574-6143STDY11462466,dirus +VBS54575-6143STDY11462467,dirus +VBS54576-6143STDY11462468,dirus +VBS54577-6143STDY11462469,dirus +VBS54578-6143STDY11462470,dirus +VBS54579-6143STDY11462471,dirus +VBS54580-6143STDY11462472,dirus +VBS54581-6143STDY11462473,dirus +VBS54582-6143STDY11462474,dirus +VBS54583-6143STDY11462475,dirus +VBS54585-6143STDY11462477,dirus +VBS54586-6143STDY11462478,dirus +VBS54588-6143STDY11462480,dirus +VBS54589-6143STDY11462481,dirus +VBS54590-6143STDY11462482,dirus +VBS54591-6143STDY11462483,dirus +VBS54592-6143STDY11462484,dirus +VBS54593-6143STDY11462485,dirus +VBS54594-6143STDY11462486,dirus +VBS54595-6143STDY11462487,dirus +VBS54596-6143STDY11462488,dirus +VBS54597-6143STDY11462489,dirus +VBS54598-6143STDY11462490,dirus +VBS54599-6143STDY11462491,dirus +VBS54644-6143STDY11462538,dirus +VBS54647-6143STDY11462541,dirus +VBS54648-6143STDY11462542,dirus +VBS54649-6143STDY11462543,dirus +VBS54650-6143STDY11462544,dirus +VBS54651-6143STDY11462545,dirus +VBS54654-6143STDY11462548,dirus +VBS54655-6143STDY11462549,dirus +VBS54656-6143STDY11462550,dirus +VBS54657-6143STDY11462551,dirus +VBS54658-6143STDY11462552,dirus +VBS54659-6143STDY11462553,dirus +VBS54661-6143STDY11462555,dirus +VBS54662-6143STDY11462556,dirus +VBS54663-6143STDY11462557,dirus +VBS54664-6143STDY11462558,dirus +VBS54665-6143STDY11462559,dirus +VBS54666-6143STDY11462560,dirus +VBS54667-6143STDY11462561,dirus +VBS54668-6143STDY11462562,dirus +VBS54669-6143STDY11462563,dirus +VBS54671-6143STDY11462565,dirus +VBS54675-6143STDY11462569,dirus +VBS54679-6143STDY11462573,dirus +VBS54680-6143STDY11462574,dirus +VBS54682-6143STDY11462576,dirus +VBS54683-6143STDY11462577,dirus +VBS54687-6143STDY11462581,dirus +VBS54689-6143STDY11462583,dirus +VBS54697-6143STDY11462591,dirus +VBS54699-6143STDY11462593,dirus +VBS54702-6143STDY11462596,dirus +VBS54703-6143STDY11462597,dirus +VBS54704-6143STDY11462598,dirus +VBS54706-6143STDY11462600,dirus +VBS54707-6143STDY11462601,dirus +VBS54709-6143STDY11462603,dirus +VBS54710-6143STDY11462604,dirus +VBS54711-6143STDY11462605,dirus +VBS54712-6143STDY11462606,dirus +VBS54713-6143STDY11462607,dirus +VBS54715-6143STDY11462609,dirus +VBS54716-6143STDY11462610,dirus +VBS54717-6143STDY11462611,dirus +VBS54718-6143STDY11462612,dirus +VBS54719-6143STDY11462613,dirus +VBS54720-6143STDY11462614,dirus +VBS54722-6143STDY11462616,dirus +VBS54723-6143STDY11462617,dirus +VBS54724-6143STDY11462618,dirus +VBS54726-6143STDY11462620,dirus +VBS54731-6143STDY11462625,dirus +VBS54734-6143STDY11462628,dirus +VBS54735-6143STDY11462629,dirus +VBS54737-6143STDY11462631,dirus +VBS54738-6143STDY11462634,dirus +VBS54739-6143STDY11462635,dirus +VBS54740-6143STDY11462636,dirus +VBS54741-6143STDY11462637,dirus +VBS54742-6143STDY11462638,dirus +VBS54743-6143STDY11462639,dirus +VBS54744-6143STDY11462640,dirus +VBS54746-6143STDY11462642,dirus +VBS54747-6143STDY11462643,dirus +VBS54748-6143STDY11462644,dirus +VBS54749-6143STDY11462645,dirus +VBS54750-6143STDY11462646,dirus +VBS54751-6143STDY11462647,dirus +VBS54752-6143STDY11462648,dirus +VBS54753-6143STDY11462649,dirus +VBS54754-6143STDY11462650,dirus +VBS54755-6143STDY11462651,dirus +VBS54756-6143STDY11462652,dirus +VBS54757-6143STDY11462653,dirus +VBS54758-6143STDY11462654,dirus +VBS54759-6143STDY11462655,dirus +VBS54760-6143STDY11462656,dirus +VBS54761-6143STDY11462657,dirus +VBS54762-6143STDY11462658,dirus +VBS54763-6143STDY11462659,dirus +VBS54764-6143STDY11462660,dirus +VBS54765-6143STDY11462661,dirus +VBS54766-6143STDY11462662,dirus +VBS54767-6143STDY11462663,dirus +VBS54768-6143STDY11462664,dirus +VBS54769-6143STDY11462665,dirus +VBS54770-6143STDY11462666,dirus +VBS54771-6143STDY11462667,dirus +VBS54772-6143STDY11462668,dirus +VBS54773-6143STDY11462669,dirus +VBS54776-6143STDY11462672,dirus +VBS54777-6143STDY11462673,dirus +VBS54778-6143STDY11462674,dirus +VBS54779-6143STDY11462675,dirus +VBS54780-6143STDY11462676,dirus +VBS54781-6143STDY11462677,dirus +VBS54782-6143STDY11462678,dirus +VBS54783-6143STDY11462679,dirus +VBS54784-6143STDY11462680,dirus +VBS54785-6143STDY11462681,dirus +VBS54786-6143STDY11462682,dirus +VBS54787-6143STDY11462683,dirus +VBS54788-6143STDY11462684,dirus +VBS54789-6143STDY11462685,dirus +VBS54790-6143STDY11462686,dirus +VBS54791-6143STDY11462687,dirus +VBS54792-6143STDY11462688,dirus +VBS54793-6143STDY11462689,dirus +VBS54794-6143STDY11462690,dirus +VBS54795-6143STDY11462691,dirus +VBS54796-6143STDY11462692,dirus +VBS54797-6143STDY11462693,dirus +VBS54798-6143STDY11462694,dirus +VBS54799-6143STDY11462695,dirus +VBS54800-6143STDY11462696,dirus +VBS54801-6143STDY11462697,dirus +VBS54802-6143STDY11462698,dirus +VBS54803-6143STDY11462699,dirus +VBS54804-6143STDY11462700,dirus +VBS54805-6143STDY11462701,dirus +VBS54806-6143STDY11462702,dirus +VBS54807-6143STDY11462703,dirus +VBS54808-6143STDY11462704,dirus +VBS54809-6143STDY11462705,dirus +VBS54810-6143STDY11462706,dirus +VBS54811-6143STDY11462707,dirus +VBS54812-6143STDY11462708,dirus +VBS54813-6143STDY11462709,dirus +VBS54814-6143STDY11462710,dirus +VBS54815-6143STDY11462711,dirus +VBS54816-6143STDY11462712,dirus +VBS54817-6143STDY11462713,dirus +VBS54818-6143STDY11462714,dirus +VBS54819-6143STDY11462715,dirus +VBS54820-6143STDY11462716,dirus +VBS54821-6143STDY11462717,dirus +VBS54822-6143STDY11462718,dirus +VBS54823-6143STDY11462719,dirus +VBS54824-6143STDY11462720,dirus +VBS54825-6143STDY11462721,dirus +VBS54826-6143STDY11462722,dirus +VBS54827-6143STDY11462723,dirus +VBS54828-6143STDY11462724,dirus +VBS54829-6143STDY11462725,dirus +VBS54830-6143STDY11462726,dirus +VBS54831-6143STDY11462727,dirus +VBS54832-6143STDY11462730,dirus +VBS54833-6143STDY11462731,dirus +VBS54834-6143STDY11462732,dirus +VBS54835-6143STDY11462733,dirus +VBS54836-6143STDY11462734,dirus +VBS54837-6143STDY11462735,dirus +VBS54838-6143STDY11462736,dirus +VBS54839-6143STDY11462737,dirus +VBS54840-6143STDY11462738,dirus +VBS54841-6143STDY11462739,dirus +VBS54842-6143STDY11462740,dirus +VBS54843-6143STDY11462741,dirus +VBS54844-6143STDY11462742,dirus +VBS54845-6143STDY11462743,dirus +VBS54846-6143STDY11462744,dirus +VBS54847-6143STDY11462745,dirus +VBS54848-6143STDY11462746,dirus +VBS54849-6143STDY11462747,dirus +VBS54850-6143STDY11462748,dirus +VBS54851-6143STDY11462749,dirus +VBS54852-6143STDY11462750,dirus +VBS54853-6143STDY11462751,dirus +VBS54854-6143STDY11462752,dirus +VBS54855-6143STDY11462753,dirus +VBS54856-6143STDY11462754,dirus +VBS54857-6143STDY11462755,dirus +VBS54858-6143STDY11462756,dirus +VBS54859-6143STDY11462757,dirus +VBS54860-6143STDY11462758,dirus +VBS54861-6143STDY11462759,dirus +VBS54862-6143STDY11462760,dirus +VBS54863-6143STDY11462761,dirus +VBS54864-6143STDY11462762,dirus +VBS54865-6143STDY11462763,dirus +VBS54866-6143STDY11462764,dirus +VBS54867-6143STDY11462765,dirus +VBS54868-6143STDY11462766,dirus +VBS54869-6143STDY11462767,dirus +VBS54870-6143STDY11462768,dirus +VBS54871-6143STDY11462769,dirus +VBS54872-6143STDY11462770,dirus +VBS54873-6143STDY11462771,dirus +VBS54874-6143STDY11462772,dirus +VBS54875-6143STDY11462773,dirus +VBS54876-6143STDY11462774,dirus +VBS54877-6143STDY11462775,dirus +VBS54878-6143STDY11462776,dirus +VBS54879-6143STDY11462777,dirus +VBS54880-6143STDY11462778,dirus +VBS54881-6143STDY11462779,dirus +VBS54882-6143STDY11462780,dirus +VBS54883-6143STDY11462781,dirus +VBS54884-6143STDY11462782,dirus +VBS54885-6143STDY11462783,dirus +VBS54886-6143STDY11462784,dirus +VBS54887-6143STDY11462785,dirus +VBS54888-6143STDY11462786,dirus +VBS54889-6143STDY11462787,dirus +VBS54890-6143STDY11462788,dirus +VBS54891-6143STDY11462789,dirus +VBS54892-6143STDY11462790,dirus diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv new file mode 100644 index 000000000..2f3c5ca05 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv @@ -0,0 +1,220 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45974-6296STDY9478582,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45976-6296STDY9478584,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45979-6296STDY9478587,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45982-6296STDY9478589,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46005-6296STDY9478612,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46042-6296STDY9478649,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46050-6296STDY9478657,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46059-6296STDY9478666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46066-6296STDY9478673,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46067-6296STDY9478674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46078-6296STDY9478687,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46083-6296STDY9478692,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46084-6296STDY9478693,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46087-6296STDY9478696,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46088-6296STDY9478697,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46098-6296STDY9478707,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46121-6296STDY9478730,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46141-6296STDY9478750,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46145-6296STDY9478754,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46146-6296STDY9478755,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46154-6296STDY9478763,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46168-6296STDY9478779,Thailand,THA,Surat Thani Province,TH-84,Vibhavadi +VBS46172-6296STDY9478782,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46173-6296STDY9478783,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46175-6296STDY9478785,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46180-6296STDY9478790,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46183-6296STDY9478793,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46187-6296STDY9478797,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46188-6296STDY9478798,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46189-6296STDY9478799,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46190-6296STDY9478800,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46192-6296STDY9478801,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46198-6296STDY9478807,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45975-6296STDY10244530,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45983-6296STDY10244537,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45984-6296STDY10244538,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45985-6296STDY10244539,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45986-6296STDY10244540,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45987-6296STDY10244541,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45988-6296STDY10244542,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45989-6296STDY10244543,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45991-6296STDY10244545,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45992-6296STDY10244546,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45993-6296STDY10244547,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45994-6296STDY10244548,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45995-6296STDY10244549,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45996-6296STDY10244550,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45997-6296STDY10244551,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45998-6296STDY10244552,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45999-6296STDY10244553,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46000-6296STDY10244554,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46001-6296STDY10244555,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46002-6296STDY10244556,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46003-6296STDY10244557,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46004-6296STDY10244558,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46006-6296STDY10244560,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46007-6296STDY10244561,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46008-6296STDY10244562,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46009-6296STDY10244563,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46010-6296STDY10244564,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46011-6296STDY10244565,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46012-6296STDY10244566,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46013-6296STDY10244567,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46014-6296STDY10244568,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46016-6296STDY10244570,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46017-6296STDY10244571,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46019-6296STDY10244573,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46020-6296STDY10244574,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46021-6296STDY10244575,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46022-6296STDY10244576,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46025-6296STDY10244579,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46026-6296STDY10244580,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46027-6296STDY10244581,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46028-6296STDY10244582,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46029-6296STDY10244583,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46030-6296STDY10244584,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46031-6296STDY10244585,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46032-6296STDY10244586,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46033-6296STDY10244587,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46034-6296STDY10244588,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46035-6296STDY10244589,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46036-6296STDY10244590,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46037-6296STDY10244591,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46038-6296STDY10244592,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46039-6296STDY10244593,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46040-6296STDY10244594,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46041-6296STDY10244595,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46043-6296STDY10244597,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46044-6296STDY10244598,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46045-6296STDY10244599,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46046-6296STDY10244600,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46047-6296STDY10244601,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46048-6296STDY10244602,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46049-6296STDY10244603,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46051-6296STDY10244605,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46052-6296STDY10244606,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46053-6296STDY10244607,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46054-6296STDY10244608,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46055-6296STDY10244609,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46056-6296STDY10244610,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46057-6296STDY10244611,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46060-6296STDY10244614,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46061-6296STDY10244615,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46063-6296STDY10244617,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46064-6296STDY10244618,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46065-6296STDY10244619,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46068-6296STDY10244622,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46069-6296STDY10244625,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46070-6296STDY10244626,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46071-6296STDY10244627,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46072-6296STDY10244628,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46073-6296STDY10244629,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46074-6296STDY10244630,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46075-6296STDY10244631,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46076-6296STDY10244632,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46077-6296STDY10244633,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46079-6296STDY10244635,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46080-6296STDY10244636,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46081-6296STDY10244637,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46082-6296STDY10244638,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46085-6296STDY10244641,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46086-6296STDY10244642,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46089-6296STDY10244645,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46090-6296STDY10244646,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46091-6296STDY10244647,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46092-6296STDY10244648,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46093-6296STDY10244649,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46094-6296STDY10244650,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46095-6296STDY10244651,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46096-6296STDY10244652,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46097-6296STDY10244653,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46099-6296STDY10244655,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46100-6296STDY10244656,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46101-6296STDY10244657,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46102-6296STDY10244658,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46103-6296STDY10244659,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46104-6296STDY10244660,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46105-6296STDY10244661,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46106-6296STDY10244662,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46107-6296STDY10244663,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46108-6296STDY10244664,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46109-6296STDY10244665,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46110-6296STDY10244666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46111-6296STDY10244667,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46112-6296STDY10244668,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46113-6296STDY10244669,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46114-6296STDY10244670,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46115-6296STDY10244671,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46116-6296STDY10244672,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46117-6296STDY10244673,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46118-6296STDY10244674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46119-6296STDY10244675,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46120-6296STDY10244676,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46122-6296STDY10244678,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46123-6296STDY10244679,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46124-6296STDY10244680,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46125-6296STDY10244681,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46126-6296STDY10244682,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46127-6296STDY10244683,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46128-6296STDY10244684,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46129-6296STDY10244685,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46130-6296STDY10244686,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46131-6296STDY10244687,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46132-6296STDY10244688,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46133-6296STDY10244689,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46134-6296STDY10244690,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46135-6296STDY10244691,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46136-6296STDY10244692,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46137-6296STDY10244693,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46138-6296STDY10244694,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46139-6296STDY10244695,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46140-6296STDY10244696,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46142-6296STDY10244698,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46143-6296STDY10244699,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46144-6296STDY10244700,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46147-6296STDY10244703,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46148-6296STDY10244704,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46149-6296STDY10244705,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46150-6296STDY10244706,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46151-6296STDY10244707,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46152-6296STDY10244708,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46153-6296STDY10244709,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46155-6296STDY10244711,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46156-6296STDY10244712,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46157-6296STDY10244713,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46158-6296STDY10244714,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46160-6296STDY10244716,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46161-6296STDY10244717,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46162-6296STDY10244718,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46163-6296STDY10244721,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46164-6296STDY10244722,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46165-6296STDY10244723,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46166-6296STDY10244724,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46170-6296STDY10244727,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46171-6296STDY10244728,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46174-6296STDY10244731,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46176-6296STDY10244733,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46177-6296STDY10244734,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46178-6296STDY10244735,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46179-6296STDY10244736,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46181-6296STDY10244738,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46182-6296STDY10244739,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46184-6296STDY10244741,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46185-6296STDY10244742,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46186-6296STDY10244743,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46193-6296STDY10244749,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46194-6296STDY10244750,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46195-6296STDY10244751,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46196-6296STDY10244752,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46197-6296STDY10244753,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46199-6296STDY10244755,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46200-6296STDY10244756,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46201-6296STDY10244757,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46202-6296STDY10244758,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46203-6296STDY10244759,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46204-6296STDY10244760,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46205-6296STDY10244761,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46206-6296STDY10244762,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46207-6296STDY10244763,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv new file mode 100644 index 000000000..6db6689d7 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv @@ -0,0 +1,220 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45974-6296STDY9478582,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45976-6296STDY9478584,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45979-6296STDY9478587,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_03,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45982-6296STDY9478589,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46005-6296STDY9478612,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46042-6296STDY9478649,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46050-6296STDY9478657,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46059-6296STDY9478666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46066-6296STDY9478673,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46067-6296STDY9478674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46078-6296STDY9478687,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46083-6296STDY9478692,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46084-6296STDY9478693,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46087-6296STDY9478696,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46088-6296STDY9478697,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46098-6296STDY9478707,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46121-6296STDY9478730,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46141-6296STDY9478750,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46145-6296STDY9478754,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46146-6296STDY9478755,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46154-6296STDY9478763,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46168-6296STDY9478779,THA,Surat Thani Province,TH-84,Vibhavadi,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Vibhavadi_diru_2019,TH-84_Vibhavadi_diru_2019_10,TH-84_Vibhavadi_diru_2019_Q4 +VBS46172-6296STDY9478782,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46173-6296STDY9478783,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46175-6296STDY9478785,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46180-6296STDY9478790,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46183-6296STDY9478793,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46187-6296STDY9478797,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46188-6296STDY9478798,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46189-6296STDY9478799,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46190-6296STDY9478800,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46192-6296STDY9478801,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46198-6296STDY9478807,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS45975-6296STDY10244530,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45983-6296STDY10244537,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45984-6296STDY10244538,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45985-6296STDY10244539,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45986-6296STDY10244540,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45987-6296STDY10244541,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45988-6296STDY10244542,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45989-6296STDY10244543,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45991-6296STDY10244545,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45992-6296STDY10244546,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45993-6296STDY10244547,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45994-6296STDY10244548,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45995-6296STDY10244549,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45996-6296STDY10244550,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45997-6296STDY10244551,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45998-6296STDY10244552,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45999-6296STDY10244553,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46000-6296STDY10244554,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46001-6296STDY10244555,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46002-6296STDY10244556,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46003-6296STDY10244557,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46004-6296STDY10244558,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46006-6296STDY10244560,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46007-6296STDY10244561,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46008-6296STDY10244562,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46009-6296STDY10244563,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46010-6296STDY10244564,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46011-6296STDY10244565,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46012-6296STDY10244566,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46013-6296STDY10244567,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46014-6296STDY10244568,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46016-6296STDY10244570,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46017-6296STDY10244571,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46019-6296STDY10244573,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46020-6296STDY10244574,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46021-6296STDY10244575,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46022-6296STDY10244576,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46025-6296STDY10244579,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46026-6296STDY10244580,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46027-6296STDY10244581,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46028-6296STDY10244582,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46029-6296STDY10244583,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46030-6296STDY10244584,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46031-6296STDY10244585,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46032-6296STDY10244586,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46033-6296STDY10244587,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46034-6296STDY10244588,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46035-6296STDY10244589,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46036-6296STDY10244590,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46037-6296STDY10244591,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46038-6296STDY10244592,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46039-6296STDY10244593,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46040-6296STDY10244594,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46041-6296STDY10244595,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46043-6296STDY10244597,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46044-6296STDY10244598,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46045-6296STDY10244599,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46046-6296STDY10244600,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46047-6296STDY10244601,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46048-6296STDY10244602,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46049-6296STDY10244603,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46051-6296STDY10244605,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46052-6296STDY10244606,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46053-6296STDY10244607,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46054-6296STDY10244608,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46055-6296STDY10244609,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46056-6296STDY10244610,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46057-6296STDY10244611,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46060-6296STDY10244614,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_05,TH-84_Tha-Chang_diru_2019_Q2 +VBS46061-6296STDY10244615,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_01,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_01,TH-84_Tha-Chang_diru_2019_Q1 +VBS46063-6296STDY10244617,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46064-6296STDY10244618,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46065-6296STDY10244619,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46068-6296STDY10244622,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46069-6296STDY10244625,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46070-6296STDY10244626,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46071-6296STDY10244627,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46072-6296STDY10244628,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46073-6296STDY10244629,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46074-6296STDY10244630,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46075-6296STDY10244631,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46076-6296STDY10244632,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46077-6296STDY10244633,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46079-6296STDY10244635,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46080-6296STDY10244636,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46081-6296STDY10244637,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46082-6296STDY10244638,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46085-6296STDY10244641,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46086-6296STDY10244642,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46089-6296STDY10244645,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46090-6296STDY10244646,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46091-6296STDY10244647,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46092-6296STDY10244648,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46093-6296STDY10244649,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46094-6296STDY10244650,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46095-6296STDY10244651,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46096-6296STDY10244652,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46097-6296STDY10244653,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46099-6296STDY10244655,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46100-6296STDY10244656,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46101-6296STDY10244657,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46102-6296STDY10244658,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46103-6296STDY10244659,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46104-6296STDY10244660,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46105-6296STDY10244661,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46106-6296STDY10244662,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46107-6296STDY10244663,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46108-6296STDY10244664,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46109-6296STDY10244665,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46110-6296STDY10244666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46111-6296STDY10244667,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46112-6296STDY10244668,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46113-6296STDY10244669,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46114-6296STDY10244670,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46115-6296STDY10244671,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46116-6296STDY10244672,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46117-6296STDY10244673,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46118-6296STDY10244674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46119-6296STDY10244675,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46120-6296STDY10244676,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46122-6296STDY10244678,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46123-6296STDY10244679,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46124-6296STDY10244680,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46125-6296STDY10244681,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46126-6296STDY10244682,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46127-6296STDY10244683,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46128-6296STDY10244684,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46129-6296STDY10244685,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46130-6296STDY10244686,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46131-6296STDY10244687,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46132-6296STDY10244688,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46133-6296STDY10244689,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46134-6296STDY10244690,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46135-6296STDY10244691,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46136-6296STDY10244692,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46137-6296STDY10244693,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46138-6296STDY10244694,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46139-6296STDY10244695,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46140-6296STDY10244696,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46142-6296STDY10244698,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46143-6296STDY10244699,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46144-6296STDY10244700,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46147-6296STDY10244703,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46148-6296STDY10244704,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46149-6296STDY10244705,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46150-6296STDY10244706,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46151-6296STDY10244707,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46152-6296STDY10244708,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46153-6296STDY10244709,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46155-6296STDY10244711,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46156-6296STDY10244712,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46157-6296STDY10244713,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46158-6296STDY10244714,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46160-6296STDY10244716,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46161-6296STDY10244717,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46162-6296STDY10244718,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46163-6296STDY10244721,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46164-6296STDY10244722,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46165-6296STDY10244723,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46166-6296STDY10244724,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46170-6296STDY10244727,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46171-6296STDY10244728,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46174-6296STDY10244731,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46176-6296STDY10244733,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46177-6296STDY10244734,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46178-6296STDY10244735,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46179-6296STDY10244736,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46181-6296STDY10244738,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46182-6296STDY10244739,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46184-6296STDY10244741,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46185-6296STDY10244742,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46186-6296STDY10244743,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46193-6296STDY10244749,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46194-6296STDY10244750,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46195-6296STDY10244751,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46196-6296STDY10244752,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46197-6296STDY10244753,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46199-6296STDY10244755,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46200-6296STDY10244756,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46201-6296STDY10244757,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46202-6296STDY10244758,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46203-6296STDY10244759,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46204-6296STDY10244760,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46205-6296STDY10244761,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46206-6296STDY10244762,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46207-6296STDY10244763,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv new file mode 100644 index 000000000..6393f49a5 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv @@ -0,0 +1,220 @@ +sample_id,taxon +VBS45974-6296STDY9478582,dirus +VBS45976-6296STDY9478584,dirus +VBS45979-6296STDY9478587,dirus +VBS45982-6296STDY9478589,dirus +VBS46005-6296STDY9478612,dirus +VBS46042-6296STDY9478649,dirus +VBS46050-6296STDY9478657,dirus +VBS46059-6296STDY9478666,dirus +VBS46066-6296STDY9478673,dirus +VBS46067-6296STDY9478674,dirus +VBS46078-6296STDY9478687,dirus +VBS46083-6296STDY9478692,dirus +VBS46084-6296STDY9478693,dirus +VBS46087-6296STDY9478696,dirus +VBS46088-6296STDY9478697,dirus +VBS46098-6296STDY9478707,dirus +VBS46121-6296STDY9478730,dirus +VBS46141-6296STDY9478750,dirus +VBS46145-6296STDY9478754,dirus +VBS46146-6296STDY9478755,dirus +VBS46154-6296STDY9478763,dirus +VBS46168-6296STDY9478779,dirus +VBS46172-6296STDY9478782,dirus +VBS46173-6296STDY9478783,dirus +VBS46175-6296STDY9478785,dirus +VBS46180-6296STDY9478790,dirus +VBS46183-6296STDY9478793,dirus +VBS46187-6296STDY9478797,dirus +VBS46188-6296STDY9478798,dirus +VBS46189-6296STDY9478799,dirus +VBS46190-6296STDY9478800,dirus +VBS46192-6296STDY9478801,dirus +VBS46198-6296STDY9478807,dirus +VBS45975-6296STDY10244530,dirus +VBS45983-6296STDY10244537,dirus +VBS45984-6296STDY10244538,dirus +VBS45985-6296STDY10244539,dirus +VBS45986-6296STDY10244540,dirus +VBS45987-6296STDY10244541,dirus +VBS45988-6296STDY10244542,dirus +VBS45989-6296STDY10244543,dirus +VBS45991-6296STDY10244545,dirus +VBS45992-6296STDY10244546,dirus +VBS45993-6296STDY10244547,dirus +VBS45994-6296STDY10244548,dirus +VBS45995-6296STDY10244549,dirus +VBS45996-6296STDY10244550,dirus +VBS45997-6296STDY10244551,dirus +VBS45998-6296STDY10244552,dirus +VBS45999-6296STDY10244553,dirus +VBS46000-6296STDY10244554,dirus +VBS46001-6296STDY10244555,dirus +VBS46002-6296STDY10244556,dirus +VBS46003-6296STDY10244557,dirus +VBS46004-6296STDY10244558,dirus +VBS46006-6296STDY10244560,dirus +VBS46007-6296STDY10244561,dirus +VBS46008-6296STDY10244562,dirus +VBS46009-6296STDY10244563,dirus +VBS46010-6296STDY10244564,dirus +VBS46011-6296STDY10244565,dirus +VBS46012-6296STDY10244566,dirus +VBS46013-6296STDY10244567,dirus +VBS46014-6296STDY10244568,dirus +VBS46016-6296STDY10244570,dirus +VBS46017-6296STDY10244571,dirus +VBS46019-6296STDY10244573,dirus +VBS46020-6296STDY10244574,dirus +VBS46021-6296STDY10244575,dirus +VBS46022-6296STDY10244576,dirus +VBS46025-6296STDY10244579,dirus +VBS46026-6296STDY10244580,dirus +VBS46027-6296STDY10244581,dirus +VBS46028-6296STDY10244582,dirus +VBS46029-6296STDY10244583,dirus +VBS46030-6296STDY10244584,dirus +VBS46031-6296STDY10244585,dirus +VBS46032-6296STDY10244586,dirus +VBS46033-6296STDY10244587,dirus +VBS46034-6296STDY10244588,dirus +VBS46035-6296STDY10244589,dirus +VBS46036-6296STDY10244590,dirus +VBS46037-6296STDY10244591,dirus +VBS46038-6296STDY10244592,dirus +VBS46039-6296STDY10244593,dirus +VBS46040-6296STDY10244594,dirus +VBS46041-6296STDY10244595,dirus +VBS46043-6296STDY10244597,dirus +VBS46044-6296STDY10244598,dirus +VBS46045-6296STDY10244599,dirus +VBS46046-6296STDY10244600,dirus +VBS46047-6296STDY10244601,dirus +VBS46048-6296STDY10244602,dirus +VBS46049-6296STDY10244603,dirus +VBS46051-6296STDY10244605,dirus +VBS46052-6296STDY10244606,dirus +VBS46053-6296STDY10244607,dirus +VBS46054-6296STDY10244608,dirus +VBS46055-6296STDY10244609,dirus +VBS46056-6296STDY10244610,dirus +VBS46057-6296STDY10244611,dirus +VBS46060-6296STDY10244614,dirus +VBS46061-6296STDY10244615,dirus +VBS46063-6296STDY10244617,dirus +VBS46064-6296STDY10244618,dirus +VBS46065-6296STDY10244619,dirus +VBS46068-6296STDY10244622,dirus +VBS46069-6296STDY10244625,dirus +VBS46070-6296STDY10244626,dirus +VBS46071-6296STDY10244627,dirus +VBS46072-6296STDY10244628,dirus +VBS46073-6296STDY10244629,dirus +VBS46074-6296STDY10244630,dirus +VBS46075-6296STDY10244631,dirus +VBS46076-6296STDY10244632,dirus +VBS46077-6296STDY10244633,dirus +VBS46079-6296STDY10244635,dirus +VBS46080-6296STDY10244636,dirus +VBS46081-6296STDY10244637,dirus +VBS46082-6296STDY10244638,dirus +VBS46085-6296STDY10244641,dirus +VBS46086-6296STDY10244642,dirus +VBS46089-6296STDY10244645,dirus +VBS46090-6296STDY10244646,dirus +VBS46091-6296STDY10244647,dirus +VBS46092-6296STDY10244648,dirus +VBS46093-6296STDY10244649,dirus +VBS46094-6296STDY10244650,dirus +VBS46095-6296STDY10244651,dirus +VBS46096-6296STDY10244652,dirus +VBS46097-6296STDY10244653,dirus +VBS46099-6296STDY10244655,dirus +VBS46100-6296STDY10244656,dirus +VBS46101-6296STDY10244657,dirus +VBS46102-6296STDY10244658,dirus +VBS46103-6296STDY10244659,dirus +VBS46104-6296STDY10244660,dirus +VBS46105-6296STDY10244661,dirus +VBS46106-6296STDY10244662,dirus +VBS46107-6296STDY10244663,dirus +VBS46108-6296STDY10244664,dirus +VBS46109-6296STDY10244665,dirus +VBS46110-6296STDY10244666,dirus +VBS46111-6296STDY10244667,dirus +VBS46112-6296STDY10244668,dirus +VBS46113-6296STDY10244669,dirus +VBS46114-6296STDY10244670,dirus +VBS46115-6296STDY10244671,dirus +VBS46116-6296STDY10244672,dirus +VBS46117-6296STDY10244673,dirus +VBS46118-6296STDY10244674,dirus +VBS46119-6296STDY10244675,dirus +VBS46120-6296STDY10244676,dirus +VBS46122-6296STDY10244678,dirus +VBS46123-6296STDY10244679,dirus +VBS46124-6296STDY10244680,dirus +VBS46125-6296STDY10244681,dirus +VBS46126-6296STDY10244682,dirus +VBS46127-6296STDY10244683,dirus +VBS46128-6296STDY10244684,dirus +VBS46129-6296STDY10244685,dirus +VBS46130-6296STDY10244686,dirus +VBS46131-6296STDY10244687,dirus +VBS46132-6296STDY10244688,dirus +VBS46133-6296STDY10244689,dirus +VBS46134-6296STDY10244690,dirus +VBS46135-6296STDY10244691,dirus +VBS46136-6296STDY10244692,dirus +VBS46137-6296STDY10244693,dirus +VBS46138-6296STDY10244694,dirus +VBS46139-6296STDY10244695,dirus +VBS46140-6296STDY10244696,dirus +VBS46142-6296STDY10244698,dirus +VBS46143-6296STDY10244699,dirus +VBS46144-6296STDY10244700,dirus +VBS46147-6296STDY10244703,dirus +VBS46148-6296STDY10244704,dirus +VBS46149-6296STDY10244705,dirus +VBS46150-6296STDY10244706,dirus +VBS46151-6296STDY10244707,dirus +VBS46152-6296STDY10244708,dirus +VBS46153-6296STDY10244709,dirus +VBS46155-6296STDY10244711,dirus +VBS46156-6296STDY10244712,dirus +VBS46157-6296STDY10244713,dirus +VBS46158-6296STDY10244714,dirus +VBS46160-6296STDY10244716,dirus +VBS46161-6296STDY10244717,dirus +VBS46162-6296STDY10244718,dirus +VBS46163-6296STDY10244721,dirus +VBS46164-6296STDY10244722,dirus +VBS46165-6296STDY10244723,dirus +VBS46166-6296STDY10244724,dirus +VBS46170-6296STDY10244727,dirus +VBS46171-6296STDY10244728,dirus +VBS46174-6296STDY10244731,dirus +VBS46176-6296STDY10244733,dirus +VBS46177-6296STDY10244734,dirus +VBS46178-6296STDY10244735,dirus +VBS46179-6296STDY10244736,dirus +VBS46181-6296STDY10244738,dirus +VBS46182-6296STDY10244739,dirus +VBS46184-6296STDY10244741,dirus +VBS46185-6296STDY10244742,dirus +VBS46186-6296STDY10244743,dirus +VBS46193-6296STDY10244749,dirus +VBS46194-6296STDY10244750,dirus +VBS46195-6296STDY10244751,dirus +VBS46196-6296STDY10244752,dirus +VBS46197-6296STDY10244753,dirus +VBS46199-6296STDY10244755,dirus +VBS46200-6296STDY10244756,dirus +VBS46201-6296STDY10244757,dirus +VBS46202-6296STDY10244758,dirus +VBS46203-6296STDY10244759,dirus +VBS46204-6296STDY10244760,dirus +VBS46205-6296STDY10244761,dirus +VBS46206-6296STDY10244762,dirus +VBS46207-6296STDY10244763,dirus diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..6618ab19d --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 +1,VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 +2,VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 +3,VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 +4,VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 +5,VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 +6,VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 +8,VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 +9,VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 +10,VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 +11,VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 +12,VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 +13,VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 +14,VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 +15,VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 +16,VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 +17,VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 +19,VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 +20,VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 +21,VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 +22,VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 +23,VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 +24,VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 +25,VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 +26,VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 +27,VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 +28,VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 +29,VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 +30,VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 +31,VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 +32,VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 +33,VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 +34,VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 +35,VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 +36,VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 +37,VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 +38,VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 +39,VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 +40,VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 +41,VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 +42,VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 +43,VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 +44,VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 +45,VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 +46,VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 +47,VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 +48,VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 +49,VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 +50,VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 +51,VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 +52,VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 +53,VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 +54,VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 +56,VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 +57,VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 +58,VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 +59,VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 +60,VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 +61,VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 +62,VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 +63,VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 +64,VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 +65,VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 +66,VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 +67,VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 +68,VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 +69,VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 +70,VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 +71,VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 +72,VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 +73,VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 +74,VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 +75,VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 +76,VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 +77,VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 +79,VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 +80,VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 +81,VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 +82,VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 +83,VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 +84,VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 +85,VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 +86,VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 +87,VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 +88,VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 +89,VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 +90,VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 +91,VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 +92,VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 +93,VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 +94,VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 +95,VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 +96,VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 +97,VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 +98,VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 +99,VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 +100,VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 +101,VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 +102,VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 +103,VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 +104,VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 +105,VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 +106,VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 +107,VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 +108,VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 +109,VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 +110,VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 +111,VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 +112,VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 +113,VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 +114,VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 +115,VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 +116,VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 +117,VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 +118,VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 +119,VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 +120,VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 +121,VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 +122,VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 +123,VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 +124,VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 +125,VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 +126,VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 +127,VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 +128,VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 +129,VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 +130,VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 +131,VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 +132,VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 +133,VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 +134,VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 +135,VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 +136,VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 +137,VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 +138,VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 +139,VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 +140,VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 +141,VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 +142,VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 +143,VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 +144,VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 +145,VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 +146,VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 +147,VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 +148,VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 +149,VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 +150,VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 +151,VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 +152,VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 +153,VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 +154,VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 +155,VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 +156,VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 +157,VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 +158,VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 +159,VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 +160,VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 +161,VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 +162,VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 +163,VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 +164,VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 +165,VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 +166,VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 +167,VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 +168,VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 +169,VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 +170,VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 +171,VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 +172,VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 +173,VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 +174,VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 +175,VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 +176,VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 +177,VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 +178,VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 +179,VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 +180,VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 +181,VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 +182,VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 +183,VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 +184,VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 +185,VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 +186,VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 +187,VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 +188,VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 +189,VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 +190,VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 +191,VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 +192,VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 +193,VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 +194,VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 +195,VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 +196,VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 +197,VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 +198,VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 +199,VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 +200,VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 +201,VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 +202,VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 +203,VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 +204,VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 +205,VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 +206,VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 +207,VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 +208,VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 +209,VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 +210,VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 +211,VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 +212,VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 +213,VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 +214,VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 +215,VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 +216,VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 +217,VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 +218,VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 +219,VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 +220,VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 +221,VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 +222,VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 +223,VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 +224,VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 +225,VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 +226,VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 +227,VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 +228,VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 +229,VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 +230,VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 +231,VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 +232,VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 +233,VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 +234,VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 +235,VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 +236,VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 +237,VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 +238,VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 +239,VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 +240,VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 +241,VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 +242,VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 +243,VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 +244,VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 +245,VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 +246,VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 +247,VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 +248,VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 +249,VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 +250,VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 +251,VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..d6c6cebde --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +0,VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 +1,VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 +2,VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 +3,VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 +5,VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 +6,VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 +7,VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 +8,VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 +9,VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 +10,VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 +11,VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 +12,VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 +13,VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 +14,VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 +15,VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 +16,VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 +17,VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 +18,VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 +19,VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 +20,VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 +21,VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 +22,VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 +23,VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 +24,VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 +25,VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 +26,VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 +27,VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 +28,VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 +29,VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 +30,VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 +31,VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 +32,VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 +33,VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 +34,VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 +35,VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 +36,VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 +37,VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 +38,VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 +39,VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 +40,VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 +41,VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 +42,VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 +43,VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 +44,VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 +45,VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 +46,VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 +47,VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 +48,VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 +49,VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 +50,VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 +51,VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 +52,VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 +53,VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 +54,VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 +55,VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 +56,VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 +57,VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 +58,VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 +59,VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 +60,VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 +61,VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 +62,VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 +63,VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 +64,VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 +65,VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 +66,VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 +67,VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 +68,VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 +69,VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 +70,VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 +71,VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 +72,VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 +73,VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 +74,VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 +75,VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 +77,VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 +78,VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 +79,VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 +81,VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 +82,VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 +83,VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 +84,VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 +85,VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 +86,VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 +87,VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 +88,VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 +89,VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 +90,VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 +91,VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 +92,VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 +93,VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 +94,VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 +95,VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 +96,VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 +97,VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 +98,VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 +99,VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 +100,VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 +101,VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 +102,VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 +103,VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 +104,VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 +105,VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 +106,VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 +107,VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 +108,VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 +109,VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 +110,VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 +111,VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 +112,VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 +113,VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 +114,VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 +115,VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 +116,VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 +117,VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 +118,VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 +119,VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 +120,VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 +121,VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 +122,VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 +123,VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 +124,VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 +125,VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 +126,VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 +127,VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 +128,VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 +129,VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 +130,VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 +131,VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 +132,VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 +133,VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 +134,VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 +135,VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 +136,VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 +137,VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 +138,VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 +139,VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 +140,VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 +141,VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 +142,VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 +143,VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 +144,VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 +145,VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 +146,VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 +147,VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 +148,VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 +149,VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 +150,VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 +151,VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 +152,VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 +153,VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 +154,VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 +155,VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 +156,VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 +157,VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 +158,VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 +159,VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 +160,VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 +161,VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 +162,VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 +163,VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 +164,VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 +165,VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 +166,VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 +167,VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 +168,VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 +169,VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 +170,VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 +171,VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 +172,VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 +173,VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 +174,VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 +175,VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 +176,VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 +178,VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 +179,VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 +180,VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 +181,VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 +182,VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 +183,VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 +184,VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 +185,VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 +186,VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 +187,VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 +188,VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 +189,VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 +190,VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 +191,VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 +192,VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 +193,VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 +194,VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 +195,VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 +196,VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 +197,VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 +198,VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 +199,VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 +200,VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 +201,VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 +202,VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 +203,VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 +204,VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 +205,VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 +206,VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 +207,VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 +208,VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 +209,VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 +210,VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 +211,VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 +212,VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 +213,VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 +214,VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 +215,VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 +216,VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 +217,VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 +218,VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 +219,VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 +220,VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 +221,VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 +222,VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv index e3739eada..f10d3bef8 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv @@ -1,48 +1,48 @@ -sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude -VBS46299-6321STDY9453299,VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 -VBS46307-6321STDY9453307,VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46315-6321STDY9453315,VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 -VBS46323-6321STDY9453323,VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 -VBS46331-6321STDY9453331,VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 -VBS46339-6321STDY9453339,VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288 -VBS46300-6321STDY9453300,VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 -VBS46308-6321STDY9453308,VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46316-6321STDY9453316,VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 -VBS46324-6321STDY9453324,VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 -VBS46332-6321STDY9453332,VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 -VBS46340-6321STDY9453340,VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203 -VBS46301-6321STDY9453301,VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194 -VBS46309-6321STDY9453309,VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46317-6321STDY9453317,VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 -VBS46325-6321STDY9453325,VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 -VBS46333-6321STDY9453333,VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 -VBS46341-6321STDY9453341,VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 -VBS46302-6321STDY9453302,VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288 -VBS46310-6321STDY9453310,VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282 -VBS46318-6321STDY9453318,VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 -VBS46326-6321STDY9453326,VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203 -VBS46334-6321STDY9453334,VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 -VBS46342-6321STDY9453342,VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 -VBS46303-6321STDY9453303,VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288 -VBS46311-6321STDY9453311,VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194 -VBS46319-6321STDY9453319,VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 -VBS46327-6321STDY9453327,VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194 -VBS46335-6321STDY9453335,VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 -VBS46343-6321STDY9453343,VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282 -VBS46304-6321STDY9453304,VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46312-6321STDY9453312,VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 -VBS46320-6321STDY9453320,VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 -VBS46328-6321STDY9453328,VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194 -VBS46336-6321STDY9453336,VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 -VBS46344-6321STDY9453344,VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203 -VBS46305-6321STDY9453305,VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46313-6321STDY9453313,VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288 -VBS46321-6321STDY9453321,VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 -VBS46329-6321STDY9453329,VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288 -VBS46337-6321STDY9453337,VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 -VBS46345-6321STDY9453345,VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203 -VBS46306-6321STDY9453306,VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203 -VBS46314-6321STDY9453314,VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203 -VBS46322-6321STDY9453322,VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194 -VBS46330-6321STDY9453330,VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203 -VBS46338-6321STDY9453338,VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282 +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288,UKN +VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203,UKN +VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282,UKN +VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203,UKN +VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194,UKN +VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288,UKN +VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv index 8cc1f9da5..d793d086b 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -1,48 +1,48 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS46299-6321STDY9453299,41.69,42,43,42.02,42,43,41.69,42,42,43.08,43,43,39.73,40,41,41.48,42,42,0.957,0.03433 -1,VBS46300-6321STDY9453300,52.55,53,54,53.0,54,54,52.56,53,54,54.34,55,55,49.91,51,52,52.35,53,53,0.957,0.03436 -2,VBS46301-6321STDY9453301,67.77,69,70,68.26,69,70,67.76,69,69,70.22,71,71,64.45,66,68,67.48,69,70,0.957,0.03442 -3,VBS46302-6321STDY9453302,62.53,63,64,63.09,64,64,62.5,63,64,64.97,65,65,59.1,61,62,62.21,63,64,0.958,0.03441 -4,VBS46303-6321STDY9453303,44.29,45,45,44.67,45,45,44.25,45,45,45.88,46,46,42.03,43,44,44.14,45,45,0.959,0.03424 -5,VBS46304-6321STDY9453304,63.22,64,65,63.72,64,65,63.19,64,65,65.51,66,66,59.98,61,63,63.0,64,65,0.958,0.03448 -6,VBS46305-6321STDY9453305,66.57,68,68,67.22,68,68,66.65,68,67,69.32,70,69,62.55,64,66,66.17,67,68,0.957,0.03441 -7,VBS46306-6321STDY9453306,55.32,56,57,55.87,56,57,55.26,56,57,57.67,58,58,52.19,54,55,54.9,56,57,0.957,0.03434 -8,VBS46307-6321STDY9453307,47.91,48,49,48.35,49,49,47.96,48,49,49.81,50,49,45.08,46,48,47.73,48,49,0.958,0.03415 -9,VBS46308-6321STDY9453308,60.89,62,62,61.42,62,63,60.85,62,62,63.53,64,63,57.36,59,60,60.56,62,62,0.958,0.03438 -10,VBS46309-6321STDY9453309,56.93,58,58,57.43,58,58,56.96,58,58,58.55,59,59,54.33,56,57,56.72,58,58,0.959,0.03429 -11,VBS46310-6321STDY9453310,63.49,64,64,63.85,64,64,63.43,64,65,64.99,65,65,61.5,63,63,63.23,64,64,0.958,0.03447 -12,VBS46311-6321STDY9453311,61.87,63,63,62.59,63,64,61.86,63,63,64.63,65,65,57.85,59,61,61.49,62,62,0.958,0.03439 -13,VBS46312-6321STDY9453312,73.44,75,76,73.98,75,76,73.41,75,76,75.79,76,76,69.98,72,74,73.31,75,75,0.959,0.0345 -14,VBS46313-6321STDY9453313,53.08,54,54,53.62,54,54,53.13,54,54,55.22,55,55,49.87,51,53,52.85,54,53,0.959,0.03427 -15,VBS46314-6321STDY9453314,46.94,48,48,47.42,48,48,46.97,47,48,48.91,49,49,43.98,45,46,46.76,47,48,0.959,0.03424 -16,VBS46315-6321STDY9453315,40.19,40,40,40.49,41,41,40.18,40,40,41.62,41,41,38.19,39,39,40.06,40,40,0.956,0.03426 -17,VBS46316-6321STDY9453316,50.42,51,51,50.86,51,52,50.34,51,51,52.46,53,53,47.63,49,50,50.25,51,51,0.957,0.03433 -18,VBS46317-6321STDY9453317,56.41,57,58,56.99,58,58,56.45,57,57,58.84,59,59,52.81,54,56,56.17,57,57,0.959,0.0343 -19,VBS46318-6321STDY9453318,60.31,61,62,60.96,62,62,60.39,61,61,62.89,63,63,56.35,58,59,60.12,61,62,0.961,0.03434 -20,VBS46319-6321STDY9453319,55.85,57,57,56.41,57,57,55.8,56,57,58.31,58,58,52.45,54,55,55.54,56,56,0.957,0.03435 -21,VBS46320-6321STDY9453320,53.39,54,55,53.77,54,55,53.38,54,55,55.44,56,55,50.6,52,53,53.18,54,55,0.957,0.03434 -22,VBS46321-6321STDY9453321,69.25,70,71,70.16,71,72,69.19,70,71,72.5,73,73,64.38,67,69,68.95,70,71,0.96,0.03429 -23,VBS46322-6321STDY9453322,76.33,78,78,77.0,78,79,76.25,78,78,79.39,80,80,72.09,75,76,76.0,78,78,0.958,0.03438 -24,VBS46323-6321STDY9453323,50.47,51,52,50.99,52,52,50.51,51,51,52.64,53,53,47.38,49,50,50.14,51,51,0.959,0.03426 -25,VBS46324-6321STDY9453324,47.33,48,48,47.78,48,49,47.28,48,48,49.09,49,49,44.91,46,47,47.01,48,48,0.957,0.0343 -26,VBS46325-6321STDY9453325,64.46,65,66,65.24,66,66,64.38,65,66,67.53,68,68,60.2,62,63,63.97,65,65,0.958,0.03439 -27,VBS46326-6321STDY9453326,57.67,58,59,58.34,59,59,57.73,58,58,60.27,60,60,53.65,55,57,57.48,58,59,0.96,0.03432 -28,VBS46327-6321STDY9453327,63.05,64,64,63.63,64,65,62.97,64,64,65.63,66,66,59.43,61,63,62.83,64,64,0.958,0.0344 -29,VBS46328-6321STDY9453328,56.21,57,57,56.79,57,58,56.29,57,58,58.57,59,59,52.63,54,55,55.95,57,57,0.959,0.03423 -30,VBS46329-6321STDY9453329,62.43,63,64,62.99,64,64,62.48,63,64,64.93,65,65,58.89,61,62,62.05,63,63,0.958,0.03439 -31,VBS46330-6321STDY9453330,67.2,68,69,67.98,69,69,67.11,68,68,70.18,70,70,62.79,64,66,66.97,68,69,0.958,0.03445 -32,VBS46331-6321STDY9453331,53.05,54,54,53.73,54,54,53.12,54,54,55.63,56,55,49.1,50,51,52.74,53,54,0.959,0.03424 -33,VBS46332-6321STDY9453332,32.34,32,32,32.43,32,32,32.3,32,32,33.45,33,33,30.72,31,32,32.62,33,33,0.958,0.03412 -34,VBS46333-6321STDY9453333,59.06,59,59,59.92,60,59,58.94,59,59,61.85,62,61,54.62,55,56,58.97,59,59,0.957,0.03442 -35,VBS46334-6321STDY9453334,59.96,61,61,60.67,61,61,59.99,61,61,62.7,63,63,55.97,57,58,59.49,60,61,0.958,0.0343 -36,VBS46335-6321STDY9453335,66.27,67,68,67.01,68,69,66.31,67,68,69.36,70,70,61.73,64,66,65.94,67,68,0.961,0.03436 -37,VBS46336-6321STDY9453336,54.48,55,55,55.03,56,56,54.46,55,55,56.94,57,57,51.12,52,53,54.09,55,55,0.958,0.03428 -38,VBS46337-6321STDY9453337,46.2,47,47,46.67,47,47,46.16,46,47,47.99,48,47,43.58,44,46,45.98,46,47,0.957,0.03426 -39,VBS46338-6321STDY9453338,49.41,50,50,49.9,50,51,49.54,50,50,51.4,51,51,46.42,48,48,49.09,50,50,0.959,0.03421 -40,VBS46339-6321STDY9453339,58.79,59,59,59.58,60,60,58.66,59,59,61.93,62,61,54.38,55,57,58.41,59,59,0.957,0.03436 -41,VBS46340-6321STDY9453340,55.71,56,57,56.39,57,57,55.77,56,56,58.7,59,58,51.33,53,53,55.44,56,56,0.959,0.0343 -42,VBS46341-6321STDY9453341,50.85,51,51,51.53,52,52,50.85,51,51,53.54,53,53,46.94,48,49,50.45,51,51,0.957,0.03431 -43,VBS46342-6321STDY9453342,64.95,66,66,65.69,66,66,64.93,66,66,68.1,68,68,60.45,62,63,64.55,66,66,0.96,0.03433 -44,VBS46343-6321STDY9453343,53.7,54,54,54.3,55,55,53.54,54,53,56.01,56,55,49.93,51,52,54.05,55,54,0.958,0.03425 -45,VBS46344-6321STDY9453344,40.85,41,41,41.28,41,41,40.87,41,41,42.55,42,42,38.45,39,40,40.49,41,41,0.956,0.03424 -46,VBS46345-6321STDY9453345,68.49,70,70,69.4,70,71,68.49,69,70,71.95,72,72,63.35,65,66,68.14,69,70,0.96,0.03438 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672491,median_cov_KB672491,mode_cov_KB672491,mean_cov_KB672492,median_cov_KB672492,mode_cov_KB672492,mean_cov_KB672503,median_cov_KB672503,mode_cov_KB672503,mean_cov_KB672514,median_cov_KB672514,mode_cov_KB672514,mean_cov_KB672525,median_cov_KB672525,mode_cov_KB672525,mean_cov_KB672536,median_cov_KB672536,mode_cov_KB672536,mean_cov_KB672547,median_cov_KB672547,mode_cov_KB672547,mean_cov_KB672558,median_cov_KB672558,mode_cov_KB672558,mean_cov_KB672569,median_cov_KB672569,mode_cov_KB672569,mean_cov_KB672580,median_cov_KB672580,mode_cov_KB672580,mean_cov_KB672591,median_cov_KB672591,mode_cov_KB672591,mean_cov_KB672602,median_cov_KB672602,mode_cov_KB672602,mean_cov_KB672603,median_cov_KB672603,mode_cov_KB672603,mean_cov_KB672614,median_cov_KB672614,mode_cov_KB672614,mean_cov_KB672625,median_cov_KB672625,mode_cov_KB672625,mean_cov_KB672636,median_cov_KB672636,mode_cov_KB672636,mean_cov_KB672647,median_cov_KB672647,mode_cov_KB672647,mean_cov_KB672658,median_cov_KB672658,mode_cov_KB672658,mean_cov_KB672680,median_cov_KB672680,mode_cov_KB672680,mean_cov_KB672691,median_cov_KB672691,mode_cov_KB672691,mean_cov_KB672702,median_cov_KB672702,mode_cov_KB672702,mean_cov_KB672713,median_cov_KB672713,mode_cov_KB672713,mean_cov_KB672714,median_cov_KB672714,mode_cov_KB672714,mean_cov_KB672725,median_cov_KB672725,mode_cov_KB672725,mean_cov_KB672736,median_cov_KB672736,mode_cov_KB672736,mean_cov_KB672747,median_cov_KB672747,mode_cov_KB672747,mean_cov_KB672758,median_cov_KB672758,mode_cov_KB672758,mean_cov_KB672769,median_cov_KB672769,mode_cov_KB672769,mean_cov_KB672780,median_cov_KB672780,mode_cov_KB672780,mean_cov_KB672788,median_cov_KB672788,mode_cov_KB672788,mean_cov_KB672789,median_cov_KB672789,mode_cov_KB672789,mean_cov_KB672790,median_cov_KB672790,mode_cov_KB672790,mean_cov_KB672791,median_cov_KB672791,mode_cov_KB672791,mean_cov_KB672792,median_cov_KB672792,mode_cov_KB672792,mean_cov_KB672793,median_cov_KB672793,mode_cov_KB672793,mean_cov_KB672794,median_cov_KB672794,mode_cov_KB672794,mean_cov_KB672795,median_cov_KB672795,mode_cov_KB672795,mean_cov_KB672796,median_cov_KB672796,mode_cov_KB672796,mean_cov_KB672797,median_cov_KB672797,mode_cov_KB672797,mean_cov_KB672798,median_cov_KB672798,mode_cov_KB672798,mean_cov_KB672799,median_cov_KB672799,mode_cov_KB672799,mean_cov_KB672800,median_cov_KB672800,mode_cov_KB672800,mean_cov_KB672801,median_cov_KB672801,mode_cov_KB672801,mean_cov_KB672802,median_cov_KB672802,mode_cov_KB672802,mean_cov_KB672803,median_cov_KB672803,mode_cov_KB672803,mean_cov_KB672804,median_cov_KB672804,mode_cov_KB672804,mean_cov_KB672805,median_cov_KB672805,mode_cov_KB672805,mean_cov_KB672806,median_cov_KB672806,mode_cov_KB672806,mean_cov_KB672807,median_cov_KB672807,mode_cov_KB672807,mean_cov_KB672808,median_cov_KB672808,mode_cov_KB672808,mean_cov_KB672809,median_cov_KB672809,mode_cov_KB672809,mean_cov_KB672810,median_cov_KB672810,mode_cov_KB672810,mean_cov_KB672811,median_cov_KB672811,mode_cov_KB672811,mean_cov_KB672812,median_cov_KB672812,mode_cov_KB672812,mean_cov_KB672813,median_cov_KB672813,mode_cov_KB672813,mean_cov_KB672814,median_cov_KB672814,mode_cov_KB672814,mean_cov_KB672815,median_cov_KB672815,mode_cov_KB672815,mean_cov_KB672816,median_cov_KB672816,mode_cov_KB672816,mean_cov_KB672817,median_cov_KB672817,mode_cov_KB672817,mean_cov_KB672818,median_cov_KB672818,mode_cov_KB672818,mean_cov_KB672819,median_cov_KB672819,mode_cov_KB672819,mean_cov_KB672820,median_cov_KB672820,mode_cov_KB672820,mean_cov_KB672821,median_cov_KB672821,mode_cov_KB672821,mean_cov_KB672823,median_cov_KB672823,mode_cov_KB672823,mean_cov_KB672824,median_cov_KB672824,mode_cov_KB672824,mean_cov_KB672825,median_cov_KB672825,mode_cov_KB672825,mean_cov_KB672826,median_cov_KB672826,mode_cov_KB672826,mean_cov_KB672827,median_cov_KB672827,mode_cov_KB672827,mean_cov_KB672828,median_cov_KB672828,mode_cov_KB672828,mean_cov_KB672829,median_cov_KB672829,mode_cov_KB672829,mean_cov_KB672830,median_cov_KB672830,mode_cov_KB672830,mean_cov_KB672832,median_cov_KB672832,mode_cov_KB672832,mean_cov_KB672833,median_cov_KB672833,mode_cov_KB672833,mean_cov_KB672835,median_cov_KB672835,mode_cov_KB672835,mean_cov_KB672837,median_cov_KB672837,mode_cov_KB672837,mean_cov_KB672838,median_cov_KB672838,mode_cov_KB672838,mean_cov_KB672839,median_cov_KB672839,mode_cov_KB672839,mean_cov_KB672843,median_cov_KB672843,mode_cov_KB672843,mean_cov_KB672845,median_cov_KB672845,mode_cov_KB672845,mean_cov_KB672846,median_cov_KB672846,mode_cov_KB672846,mean_cov_KB672849,median_cov_KB672849,mode_cov_KB672849,mean_cov_KB672851,median_cov_KB672851,mode_cov_KB672851,mean_cov_KB672855,median_cov_KB672855,mode_cov_KB672855,mean_cov_KB672857,median_cov_KB672857,mode_cov_KB672857,mean_cov_KB672859,median_cov_KB672859,mode_cov_KB672859,mean_cov_KB672861,median_cov_KB672861,mode_cov_KB672861,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672869,median_cov_KB672869,mode_cov_KB672869,mean_cov_KB672871,median_cov_KB672871,mode_cov_KB672871,mean_cov_KB672873,median_cov_KB672873,mode_cov_KB672873,mean_cov_KB672877,median_cov_KB672877,mode_cov_KB672877,mean_cov_KB672880,median_cov_KB672880,mode_cov_KB672880,mean_cov_KB672884,median_cov_KB672884,mode_cov_KB672884,mean_cov_KB672891,median_cov_KB672891,mode_cov_KB672891,mean_cov_KB672892,median_cov_KB672892,mode_cov_KB672892,mean_cov_KB672894,median_cov_KB672894,mode_cov_KB672894,mean_cov_KB672900,median_cov_KB672900,mode_cov_KB672900,mean_cov_KB672901,median_cov_KB672901,mode_cov_KB672901,mean_cov_KB672902,median_cov_KB672902,mode_cov_KB672902,mean_cov_KB672905,median_cov_KB672905,mode_cov_KB672905,mean_cov_KB672907,median_cov_KB672907,mode_cov_KB672907,mean_cov_KB672913,median_cov_KB672913,mode_cov_KB672913,mean_cov_KB672914,median_cov_KB672914,mode_cov_KB672914,mean_cov_KB672915,median_cov_KB672915,mode_cov_KB672915,mean_cov_KB672924,median_cov_KB672924,mode_cov_KB672924,mean_cov_KB672930,median_cov_KB672930,mode_cov_KB672930,mean_cov_KB672932,median_cov_KB672932,mode_cov_KB672932,mean_cov_KB672935,median_cov_KB672935,mode_cov_KB672935,mean_cov_KB672946,median_cov_KB672946,mode_cov_KB672946,mean_cov_KB672954,median_cov_KB672954,mode_cov_KB672954,mean_cov_KB672957,median_cov_KB672957,mode_cov_KB672957,mean_cov_KB672964,median_cov_KB672964,mode_cov_KB672964,mean_cov_KB672968,median_cov_KB672968,mode_cov_KB672968,mean_cov_KB672975,median_cov_KB672975,mode_cov_KB672975,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB672980,median_cov_KB672980,mode_cov_KB672980,mean_cov_KB672991,median_cov_KB672991,mode_cov_KB672991,mean_cov_KB673001,median_cov_KB673001,mode_cov_KB673001,mean_cov_KB673002,median_cov_KB673002,mode_cov_KB673002,mean_cov_KB673013,median_cov_KB673013,mode_cov_KB673013,mean_cov_KB673024,median_cov_KB673024,mode_cov_KB673024,mean_cov_KB673027,median_cov_KB673027,mode_cov_KB673027,mean_cov_KB673028,median_cov_KB673028,mode_cov_KB673028,mean_cov_KB673035,median_cov_KB673035,mode_cov_KB673035,mean_cov_KB673044,median_cov_KB673044,mode_cov_KB673044,mean_cov_KB673046,median_cov_KB673046,mode_cov_KB673046,mean_cov_KB673057,median_cov_KB673057,mode_cov_KB673057,mean_cov_KB673068,median_cov_KB673068,mode_cov_KB673068,mean_cov_KB673070,median_cov_KB673070,mode_cov_KB673070,mean_cov_KB673079,median_cov_KB673079,mode_cov_KB673079,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673091,median_cov_KB673091,mode_cov_KB673091,mean_cov_KB673102,median_cov_KB673102,mode_cov_KB673102,mean_cov_KB673113,median_cov_KB673113,mode_cov_KB673113,mean_cov_KB673124,median_cov_KB673124,mode_cov_KB673124,mean_cov_KB673130,median_cov_KB673130,mode_cov_KB673130,mean_cov_KB673135,median_cov_KB673135,mode_cov_KB673135,mean_cov_KB673138,median_cov_KB673138,mode_cov_KB673138,mean_cov_KB673146,median_cov_KB673146,mode_cov_KB673146,mean_cov_KB673157,median_cov_KB673157,mode_cov_KB673157,mean_cov_KB673168,median_cov_KB673168,mode_cov_KB673168,mean_cov_KB673179,median_cov_KB673179,mode_cov_KB673179,mean_cov_KB673187,median_cov_KB673187,mode_cov_KB673187,mean_cov_KB673190,median_cov_KB673190,mode_cov_KB673190,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,mean_cov_KB673202,median_cov_KB673202,mode_cov_KB673202,mean_cov_KB673213,median_cov_KB673213,mode_cov_KB673213,mean_cov_KB673224,median_cov_KB673224,mode_cov_KB673224,mean_cov_KB673235,median_cov_KB673235,mode_cov_KB673235,mean_cov_KB673246,median_cov_KB673246,mode_cov_KB673246,mean_cov_KB673257,median_cov_KB673257,mode_cov_KB673257,mean_cov_KB673268,median_cov_KB673268,mode_cov_KB673268,mean_cov_KB673279,median_cov_KB673279,mode_cov_KB673279,mean_cov_KB673290,median_cov_KB673290,mode_cov_KB673290,mean_cov_KB673301,median_cov_KB673301,mode_cov_KB673301,mean_cov_KB673312,median_cov_KB673312,mode_cov_KB673312,mean_cov_KB673313,median_cov_KB673313,mode_cov_KB673313,mean_cov_KB673324,median_cov_KB673324,mode_cov_KB673324,mean_cov_KB673335,median_cov_KB673335,mode_cov_KB673335,mean_cov_KB673346,median_cov_KB673346,mode_cov_KB673346,mean_cov_KB673357,median_cov_KB673357,mode_cov_KB673357,mean_cov_KB673368,median_cov_KB673368,mode_cov_KB673368,mean_cov_KB673379,median_cov_KB673379,mode_cov_KB673379,mean_cov_KB673390,median_cov_KB673390,mode_cov_KB673390,mean_cov_KB673401,median_cov_KB673401,mode_cov_KB673401,mean_cov_KB673412,median_cov_KB673412,mode_cov_KB673412,mean_cov_KB673423,median_cov_KB673423,mode_cov_KB673423,mean_cov_KB673424,median_cov_KB673424,mode_cov_KB673424,mean_cov_KB673435,median_cov_KB673435,mode_cov_KB673435,mean_cov_KB673446,median_cov_KB673446,mode_cov_KB673446,mean_cov_KB673457,median_cov_KB673457,mode_cov_KB673457,mean_cov_KB673468,median_cov_KB673468,mode_cov_KB673468,mean_cov_KB673479,median_cov_KB673479,mode_cov_KB673479,mean_cov_KB673490,median_cov_KB673490,mode_cov_KB673490,mean_cov_KB673501,median_cov_KB673501,mode_cov_KB673501,mean_cov_KB673512,median_cov_KB673512,mode_cov_KB673512,mean_cov_KB673523,median_cov_KB673523,mode_cov_KB673523,mean_cov_KB673534,median_cov_KB673534,mode_cov_KB673534,mean_cov_KB673535,median_cov_KB673535,mode_cov_KB673535,mean_cov_KB673546,median_cov_KB673546,mode_cov_KB673546,mean_cov_KB673557,median_cov_KB673557,mode_cov_KB673557,mean_cov_KB673568,median_cov_KB673568,mode_cov_KB673568,mean_cov_KB673579,median_cov_KB673579,mode_cov_KB673579,mean_cov_KB673590,median_cov_KB673590,mode_cov_KB673590,mean_cov_KB673601,median_cov_KB673601,mode_cov_KB673601,mean_cov_KB673612,median_cov_KB673612,mode_cov_KB673612,mean_cov_KB673623,median_cov_KB673623,mode_cov_KB673623,mean_cov_KB673634,median_cov_KB673634,mode_cov_KB673634,mean_cov_KB673645,median_cov_KB673645,mode_cov_KB673645,mean_cov_KB673646,median_cov_KB673646,mode_cov_KB673646,mean_cov_KB673657,median_cov_KB673657,mode_cov_KB673657,mean_cov_KB673668,median_cov_KB673668,mode_cov_KB673668,mean_cov_KB673679,median_cov_KB673679,mode_cov_KB673679,mean_cov_KB673690,median_cov_KB673690,mode_cov_KB673690,mean_cov_KB673701,median_cov_KB673701,mode_cov_KB673701,mean_cov_KB673712,median_cov_KB673712,mode_cov_KB673712,mean_cov_KB673723,median_cov_KB673723,mode_cov_KB673723,mean_cov_KB673734,median_cov_KB673734,mode_cov_KB673734,mean_cov_KB673745,median_cov_KB673745,mode_cov_KB673745,frac_gen_cov,divergence +VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,43.79,44,45,60.55,27,250,16.23,11,4,38.94,39,42,44.94,45,43,54.29,35,9,45.56,42,2,52.79,54,2,34.42,29,5,55.21,47,5,47,48,50,40.02,40,41,26.22,26,4,36.38,27,2,39.86,25,8,40.5,42,44,37.91,20,11,59.17,38,35,30.22,30,47,87.41,72,250,99.45,56,250,40.2,41,42,78.14,49,30,38.88,37,37,83.94,34,12,66.36,21,250,38.76,40,37,39.03,38,39,59.96,28,250,156.93,227,250,198.16,249,250,97.68,64,250,39.5,40,41,41.69,42,42,41.74,38,41,41.35,32,33,30.58,28,13,65.33,35,250,44.28,41,40,49.37,38,44,24.49,23,22,30.33,31,15,36.77,39,39,40.66,41,42,30.6,31,41,26.96,26,23,36.19,24,3,32.29,22,23,35.4,38,41,41.02,23,2,39.73,34,43,81.5,66,21,53.69,38,5,34.67,36,40,41.7,42,43,33.54,35,37,28.07,26,13,77.45,27,250,38.85,42,45,54.61,39,3,28.84,18,2,35.55,36,38,134.14,139,250,64.91,24,2,42.47,43,43,62.35,29,250,13.41,14,13,114.89,51,250,55.01,38,250,46.89,35,14,101.41,72,250,39.55,25,10,86.38,50,250,40.47,41,41,40.24,34,10,49.96,38,7,29.04,29,28,52.07,21,3,104.64,54,250,39.58,41,41,73.95,43,6,138.3,127,250,92.6,44,250,42.19,42,43,35.91,36,35,94.91,64,250,41.69,42,42,40.46,41,41,44.44,27,9,29.76,29,2,73.41,93,10,40.08,41,41,70.99,61,250,42.22,41,42,52.12,28,3,48.28,26,3,54.92,44,29,21.33,15,2,39.97,41,41,47.79,27,2,131.4,123,250,40.01,40,41,38.28,29,4,50.06,46,39,38.71,40,40,28.73,28,28,36.66,32,15,42.06,40,41,40.04,40,41,83.07,33,250,37.81,39,40,42.39,43,45,41.88,41,42,50.39,45,5,43.08,43,43,40.01,40,42,38.86,40,42,60.32,60,8,40.04,40,41,40.55,41,41,41,38,40,52.51,32,3,101.08,61,250,41.7,42,42,40.63,34,26,43.94,44,43,40.55,41,42,40.81,41,41,22.44,11,6,44.21,45,45,39.73,40,41,41.93,41,42,40.24,41,42,38.84,39,41,44.91,41,41,35.1,37,37,42.02,43,42,232.25,250,250,38.77,39,39,40.06,41,41,36.63,37,40,40.41,41,42,2.45,2,2,41.75,42,42,41.48,42,42,40,41,41,39.07,40,41,41.43,39,41,70.47,29,250,40.79,39,38,39.76,41,40,39.15,35,42,41.15,40,40,42.83,42,43,76.39,32,250,42.02,42,42,45.23,39,40,39.8,39,40,45.23,42,40,39.32,40,42,42.4,39,38,41.98,39,41,57.08,29,250,40.08,40,40,37.03,38,41,44.01,41,43,42.85,43,43,40.93,38,37,70.11,50,250,50.12,32,25,83.34,64,250,32.28,29,2,42.77,36,41,40.47,41,41,39.04,37,37,72.68,26,250,55.31,53,3,40.12,41,42,69.35,34,250,51.5,32,3,41.52,42,45,55.5,39,250,49.38,28,250,41.06,22,2,38.34,36,37,41.41,39,42,70.15,35,250,40.96,39,38,41.08,41,42,44.65,34,4,62.66,46,4,42,41,42,51.54,18,250,105.22,76,250,69.42,34,250,42.66,39,41,24.68,18,2,33.62,31,4,66.75,52,7,0.946,0.03433 +VBS46300-6321STDY9453300,52.17,53,53,53,54,54,55.48,56,56,75.61,40,250,27.9,21,2,48.46,50,51,58.59,56,50,67.28,41,250,101.45,69,250,52.44,39,5,41.34,33,15,84.55,66,15,57.66,59,62,50.13,51,52,32.54,33,5,44.01,33,2,50.52,41,2,51.84,54,55,44.1,25,250,79.53,48,250,37.46,31,25,110.62,91,250,118.04,80,250,50.65,52,54,122.63,88,250,46.91,46,49,91.77,74,2,67.97,39,250,48.13,49,47,45.75,47,48,77.52,36,250,160.03,223,250,127.56,131,131,101.74,72,250,49.78,51,53,54.64,54,51,51.32,49,53,48.8,41,44,37.18,35,12,77.18,45,250,42.32,41,49,56.41,47,47,30.18,30,36,38.52,39,55,45.84,50,51,50.56,51,53,39.03,39,41,34.74,34,24,40.26,32,32,48.64,34,2,44.22,48,51,42.33,22,2,49,43,51,109.61,82,250,66.17,54,3,42.26,44,50,52.61,54,54,43.24,46,47,33.99,32,29,74.41,35,250,50.92,53,51,103.89,99,6,44.47,29,4,44.69,46,45,141.24,171,250,75.33,30,250,53.68,54,56,75.21,35,250,6.37,4,2,115.58,71,250,60.85,44,250,41.06,25,19,101.74,71,250,52.25,32,9,91.08,43,250,50.72,51,53,42.43,29,24,75.23,58,2,34.28,33,31,61.49,32,250,116.94,77,250,49.66,51,53,68.06,37,3,131.88,137,250,103.57,50,250,53.15,54,54,44.3,45,47,115.65,79,250,52.56,53,54,50.65,51,53,55.69,24,2,34.59,38,2,139.03,184,250,50.47,51,52,91.42,79,250,53.06,52,53,54.54,32,2,59.11,36,2,110.93,95,250,29.28,16,3,50.36,52,53,57.87,32,24,129.38,76,250,50.54,51,52,45.42,34,4,61.98,55,42,48.82,50,51,46.88,45,18,44.56,41,33,52.15,51,50,49.46,50,52,79.16,39,250,47.39,49,52,82.82,56,47,52.26,52,52,50.27,45,39,54.34,55,55,50.36,51,52,49.82,51,51,92.16,105,6,50.28,51,51,51,51,53,50.28,48,49,58.91,34,13,119.93,103,250,52.12,52,53,51.06,46,4,55.19,56,58,50.19,51,52,51,51,52,30.93,16,10,56.05,56,56,49.91,51,52,51.76,51,52,50.49,51,52,49.52,49,51,55.79,52,54,44.73,48,48,53.72,55,54,227.09,250,250,48.17,49,50,50.25,52,54,45.5,47,51,51.22,52,54,4.23,4,2,52.44,52,53,52.35,53,53,50.43,51,53,48.65,50,50,51.75,50,52,85.26,41,250,52.02,50,52,49.92,51,52,47.06,43,49,50.34,50,50,49.83,51,52,81.73,43,250,52.88,53,54,54.08,48,52,50.04,50,49,56.56,53,55,48.65,50,50,51.85,50,49,50.3,49,48,66.83,34,250,50.51,51,53,46.15,49,51,52.94,51,50,54.02,54,54,50.9,49,50,92.23,75,250,58.63,40,2,91.35,76,250,48.03,43,4,51.05,45,49,50.84,51,50,48.7,47,49,84.9,37,250,76.67,85,3,50.6,52,53,73.6,38,250,68.06,41,2,52.49,52,53,68,51,2,54.88,34,250,48.54,26,3,47.54,45,48,53.87,49,48,87.34,48,250,51.48,50,52,51.67,53,53,66.04,54,2,79.52,59,250,52.38,52,54,61.88,36,250,115.86,104,250,62.48,37,250,54.35,49,49,34.01,25,6,40.94,40,4,87.3,66,4,0.946,0.03436 +VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,71.02,72,72,73.54,39,250,28.38,18,12,60.78,64,71,72.67,74,75,82.42,51,4,111.85,91,250,53.46,33,24,51.9,44,2,95.56,105,250,76.59,77,78,64.76,66,68,41.06,41,4,51.7,42,3,60.86,58,3,67.5,70,75,54.61,31,250,88.06,63,250,51.55,52,6,133.29,148,250,132.9,116,250,65.09,67,69,121.71,78,250,57.62,56,5,121.34,102,250,92.74,31,250,63.85,66,70,63.91,62,63,76.97,44,250,154.72,193,250,191.05,219,250,109.5,66,250,63.64,66,68,68.84,70,67,66,64,69,58.17,54,250,44.44,43,17,81.76,54,250,53.71,54,63,66.52,59,250,41.34,40,42,47.12,45,31,56.99,64,65,65.59,67,68,46.78,47,35,44.91,44,31,53.77,42,4,53.52,36,35,56.81,62,69,52.79,30,3,57.93,49,4,112.18,104,250,83.16,73,2,55.46,59,63,67.92,69,70,54.63,58,60,43.31,41,67,84.58,44,250,66.05,69,68,82.62,75,250,48.47,28,3,60.37,64,68,142.35,174,250,80.68,34,250,68.8,70,71,82.5,46,250,4.57,3,3,111.68,65,250,72.6,60,250,75.79,58,21,128.85,130,250,63.22,39,250,107.06,67,250,65.47,67,68,60.86,55,18,63.06,50,2,47.64,47,46,62.29,35,250,121.73,86,250,64.94,67,68,83.08,44,250,151.59,181,250,110.05,65,250,68.62,69,70,53.38,54,72,112.13,81,250,67.76,69,69,65.31,67,67,74.43,43,250,47.2,55,2,107.89,117,2,65.06,67,68,113.94,121,250,67.98,67,68,66.66,38,2,72.11,38,250,82.47,62,32,36.24,25,2,64.78,67,69,72.51,37,19,147.92,173,250,65.52,67,68,61.01,49,6,79.85,73,65,63.23,65,67,45.4,48,60,47.86,45,2,66.97,66,67,63.72,66,67,94.79,55,250,60.71,64,67,50.62,55,63,67.19,67,67,75.74,67,4,70.22,71,71,65.13,67,67,64.6,67,68,85.51,91,30,65.04,66,67,65.68,66,66,64.01,63,66,88.49,53,250,131.69,155,250,67.81,68,68,60.69,62,2,70.8,71,72,65.72,67,68,65.7,67,68,35.61,21,14,72.21,73,73,64.45,66,68,65.58,66,71,65.18,67,68,61.86,63,68,70.81,67,68,57.23,61,68,68.21,70,71,226.32,250,250,63.48,65,65,65.43,67,67,58.41,61,66,66.45,68,70,4.08,3,2,67.92,68,69,67.48,69,70,64.53,66,66,63.37,65,65,65.43,65,65,88.13,51,250,66.04,65,66,64.08,67,68,60.11,56,67,65.37,65,65,64.31,67,69,103.44,49,250,68.29,69,70,68.83,64,250,64.21,65,67,70.24,68,70,62.98,65,65,63.85,65,70,62.4,63,68,75.59,47,250,65.16,66,68,60.05,63,68,66.81,66,65,69.75,70,70,64.37,62,63,109.88,94,250,75.8,58,250,111.92,92,250,47.65,41,3,65.01,60,250,66.34,68,70,62.83,63,67,96.86,46,250,93.39,89,5,65.34,67,68,82.38,50,250,68.6,43,2,66.04,67,68,70.91,54,250,67.99,44,250,64.82,36,2,58.33,59,63,70.34,67,67,95.68,55,250,65.85,65,68,66.39,68,69,74.81,55,250,100.29,70,250,66.99,67,69,61.16,28,250,136.51,138,250,75.25,42,250,68.41,64,62,40.71,33,3,52.48,48,4,94.22,70,250,0.948,0.03442 +VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,66.29,67,66,76.23,39,250,27.97,21,10,58.09,60,60,69.48,69,73,68.46,47,2,79.75,55,2,59.53,41,23,49.67,39,3,95.15,94,250,71.28,72,68,59.33,61,61,37.78,38,4,48.06,39,3,54.06,41,3,62.73,65,68,48.81,30,6,79.52,52,250,45.08,41,3,120.06,107,250,128.8,108,250,59.84,61,63,111.5,82,250,55.31,53,54,108.91,74,250,78.26,34,250,57.83,60,61,67.75,56,56,78.55,42,250,168.15,249,250,181.46,196,250,112.61,70,250,59.05,61,63,66.13,67,66,55.38,54,59,55.34,50,55,44.01,41,9,75.47,49,250,47.25,46,50,63.37,54,250,39.25,39,32,44.41,45,67,53.01,57,61,60.06,61,63,45.52,46,32,41.05,40,32,48.25,37,20,46.37,32,32,53.6,59,65,52.7,28,2,58.06,48,4,113.67,93,250,73.77,58,3,49.11,51,60,62.59,64,64,50.28,54,57,41.16,39,24,82.03,40,250,59.76,62,66,63.85,44,250,44.95,22,8,52.82,55,57,151.04,234,250,80.43,35,250,64,65,67,78.3,46,250,7.88,3,2,123.41,69,250,82.37,59,250,69.36,50,23,114.72,120,250,59.16,39,250,92.34,44,250,60,61,62,58.52,54,59,88.15,78,5,43.18,43,47,63.96,35,250,133.95,121,250,59.93,62,62,93.5,60,250,149.35,176,250,107.32,60,250,63.12,64,65,49.56,52,58,110.53,85,250,62.5,63,64,60.06,61,62,74.06,44,250,54.73,50,51,128.92,174,250,59.48,61,61,111.51,114,250,62.93,62,62,57.16,36,2,71.23,46,4,84.9,55,250,41.46,32,3,59.77,61,63,61.27,30,16,142.06,171,250,59.32,60,61,53.27,49,20,73.52,65,54,58.08,59,60,72.33,78,29,45.84,47,53,61.34,60,60,58.51,60,63,88.64,41,250,55.48,58,61,83.63,55,47,61.15,61,61,67.9,55,27,64.97,65,65,59.6,61,62,59.44,61,63,83.85,86,27,59.16,60,62,59.4,60,60,58.75,57,59,87.05,56,6,135.19,154,250,62.58,63,64,63.51,57,58,66.34,67,67,59.35,61,63,59.64,60,62,33.07,14,14,66.92,67,65,59.1,61,62,61.66,61,62,59.62,61,61,57.15,58,60,63.05,61,63,52.26,56,57,63.81,65,65,224.74,250,250,57.14,58,59,60.28,62,62,54.19,56,61,60.29,61,62,5.31,4,3,62.11,62,60,62.21,63,64,59.13,60,61,57.52,59,62,59.02,58,59,89.76,49,250,60.47,59,59,58.21,60,61,57.98,53,59,58.65,58,61,59.2,61,61,93.09,45,250,63.07,64,64,63.99,58,60,58.85,59,61,64.87,63,63,58.13,60,59,62.58,58,57,58.73,57,57,68.58,38,250,58.14,59,60,54.39,58,62,61.31,61,61,64.26,65,65,58.09,57,58,97.23,76,250,67.72,52,250,101.61,75,250,43.39,37,2,61.17,55,250,61.97,63,60,57.34,56,60,83.01,35,250,116.87,135,250,60.11,62,63,81.43,47,250,63.84,48,2,60.7,62,61,73.92,54,250,58.98,37,250,70.78,53,250,53.44,53,57,61.14,58,58,87.87,53,250,61.1,59,58,61.13,62,63,82.47,67,2,98.72,70,250,61.97,63,67,68.69,49,250,130.84,125,250,82.41,39,250,64.13,60,62,60.15,44,2,43.93,41,6,88.46,70,250,0.947,0.03441 +VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,46.41,47,47,66.42,29,250,21.5,15,3,42.14,43,45,49.5,49,48,50.85,34,2,103.98,58,250,39.9,31,8,35.31,31,2,79.6,79,14,49.03,50,54,42.54,43,44,26.17,25,20,41.08,32,4,30.13,22,3,43.9,45,49,39.44,21,15,68.3,42,250,32.86,30,19,91.85,73,250,106.34,72,250,42.71,44,44,93.23,51,250,41.04,42,45,103.59,62,250,64.92,24,250,42.07,43,43,41.43,40,41,68.04,30,250,87.1,99,45,185.44,235,250,95.32,54,250,42.13,43,44,45.3,46,45,44.4,41,45,44.87,36,37,39.6,36,10,74.21,38,250,37.06,34,35,52.07,41,44,25.57,26,31,32.1,30,18,37.03,39,43,43.37,44,45,31.69,33,40,29.3,28,22,34.54,29,5,39.43,24,15,36.72,40,41,29.51,21,2,41.43,35,44,105.06,85,250,55.27,41,5,36.84,38,39,44.36,45,45,37.24,40,46,28.17,27,19,74.16,27,250,39.82,43,47,101.43,86,250,36.78,21,2,40.91,43,45,141.85,191,250,61.77,18,6,44.99,46,46,68.52,31,250,7.99,4,2,107.13,68,250,54.58,39,250,55.25,29,20,98.25,77,250,42.92,27,36,82.72,55,250,43.18,44,44,47.22,45,45,67.08,55,2,30.88,30,27,52.68,25,4,107.7,62,250,42.52,44,45,63.53,30,9,151.21,161,250,98.73,47,250,44.89,45,46,35.44,36,41,88.09,61,250,44.25,45,45,43,43,44,47.51,29,23,33.45,37,2,105.86,126,3,42.87,43,44,78.48,74,250,45.46,44,44,46,24,2,46.78,28,4,64.59,60,48,20.29,14,6,42.63,43,44,44.24,23,15,91.96,96,2,43.25,44,44,78.08,43,250,54.12,49,40,41.61,42,43,22.71,23,23,32.01,32,37,45.21,43,44,42.32,43,44,83.43,33,250,39.85,41,43,53.2,46,2,44.62,44,44,47.78,42,17,45.88,46,46,43.54,44,44,42.03,43,43,85.61,96,6,42.69,43,44,43.47,44,44,43.56,41,42,71.54,35,6,112.9,72,250,44.46,44,44,39.56,40,45,46.53,46,47,43.2,44,44,43.29,44,44,34.9,25,3,47.05,47,48,42.03,43,44,44.53,43,44,43.13,44,44,42.03,42,42,47.73,44,44,38.84,41,44,44.75,46,47,229.83,250,250,41.64,43,44,42.38,43,46,37.02,38,43,43.55,44,44,3.3,3,2,44.58,45,45,44.14,45,45,43.1,44,45,42.16,43,42,44.87,43,43,80.52,43,250,44.07,43,45,42.64,44,46,41.85,37,41,43.66,43,42,41.83,43,45,81.71,40,250,44.63,45,45,48.52,42,43,43.39,44,46,48.22,44,43,42.56,43,44,43.86,42,43,46.83,43,42,69.97,34,250,43.2,44,46,40.49,42,45,45.95,43,44,45.51,46,46,44.14,42,43,74.34,52,250,52.81,36,31,74.73,62,250,40.37,31,3,46.13,38,44,44.44,46,50,41.34,40,40,84.39,42,250,61.76,66,73,42.81,44,45,66.01,32,250,47.25,30,2,43.96,44,48,51.44,35,4,48.07,28,250,53.64,39,3,42.36,40,47,46.31,43,44,77.5,40,250,44.31,43,45,43.64,44,45,61.32,38,3,65.4,46,11,45.48,45,45,67.83,23,250,103.02,82,250,54.57,34,3,46.5,44,44,32.37,25,6,35.41,32,8,62.61,51,6,0.947,0.03424 +VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,66.94,67,67,79.63,40,250,26.99,21,7,58.06,59,62,71.97,71,71,75.27,55,250,115.12,97,250,73.85,68,250,47.24,38,6,95.45,97,250,74.23,75,79,60.16,61,62,42.97,42,3,52.94,45,9,63.2,31,25,61.93,65,67,46.23,29,5,86.5,57,250,64.12,53,2,124.93,117,250,125.3,72,250,60.8,62,64,119.09,83,250,64.14,56,3,111.9,73,250,93.48,33,250,58.33,60,63,68.1,57,250,79.27,45,250,167.63,249,250,222.33,250,250,109.33,67,250,60,62,62,66.09,66,67,61.58,56,58,57.22,50,250,52.81,47,43,84.18,57,250,50.68,49,50,65.35,57,250,37.02,37,38,44.46,43,29,53.41,57,60,61.28,62,64,45.39,47,56,42.44,42,30,53.84,43,13,56.44,37,250,51.64,56,65,62.34,30,3,62.76,52,58,130.3,102,250,81.82,70,250,49.77,53,62,63.38,64,64,52.13,55,59,40.34,39,39,84.92,41,250,59.06,62,66,105.89,90,250,56.37,34,31,56.09,57,56,146.38,193,250,83.34,35,250,64.82,65,65,81.82,48,250,5.91,4,3,128.26,85,250,70.11,52,250,64.3,47,41,131.64,127,250,69.82,38,250,111.7,74,250,60.78,61,62,45.52,31,25,81.26,61,250,41.68,42,37,75.82,41,250,141.93,135,250,60.07,62,62,90.01,72,250,131.24,150,250,104.39,61,250,63.72,64,64,57.31,57,56,114.96,92,250,63.19,64,65,60.99,61,63,83.08,44,250,54.55,52,2,112.64,128,9,60.67,62,63,115.6,101,250,63.07,62,62,70.07,44,4,75.08,46,250,116.31,97,250,52.49,33,2,60.72,62,64,92.76,56,250,140.01,122,250,60.45,61,62,77.65,51,29,76.08,69,62,58.57,60,61,50.99,52,81,64.33,59,36,63.02,61,62,60.31,61,61,93.56,52,250,56.84,59,61,48.67,50,49,62.53,62,63,72.55,53,250,65.51,66,66,60.38,61,63,59.02,61,61,131.64,144,250,60.7,61,61,60.73,61,62,60.03,58,58,94.67,47,250,117.55,65,250,62.85,63,63,62.34,53,3,67.03,67,67,60.49,61,62,61.05,61,62,47.01,28,2,67.54,68,67,59.98,61,63,62.52,62,62,60.52,61,62,58.63,58,59,64.95,61,62,56.58,55,60,64.07,65,64,230.34,250,250,58.3,59,59,60.35,62,64,54.74,56,60,61.52,62,61,5.35,5,2,63.18,63,63,63,64,65,60.24,61,62,57.66,59,62,61.19,59,60,93.71,54,250,62.31,60,63,58.87,60,60,59.12,54,64,59.53,60,59,59.5,62,62,107.19,53,250,63.63,64,65,64.34,58,63,62.42,61,63,67.16,63,64,60.9,62,65,65,59,61,64.14,59,59,83.67,51,250,59.39,60,60,55.53,58,62,62.46,60,61,65.02,65,65,59.07,57,59,111.53,91,250,72.73,50,250,101.11,77,250,50.75,44,9,65.06,55,250,63.94,65,68,59.86,56,56,118.04,64,250,95.8,88,250,60.92,62,64,88.96,52,250,66.77,43,250,65.61,63,65,85.09,61,250,68.17,44,250,78.11,58,2,57.28,53,60,65.41,60,61,103.21,62,250,60.84,58,57,61.96,63,63,79.73,55,250,88.15,67,250,62.7,63,64,72.07,46,250,140.52,138,250,84.57,44,250,66.28,62,66,49.52,46,27,56.32,51,52,95.21,83,4,0.948,0.03448 +VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,71.5,72,71,60.43,42,250,27.14,22,3,59.42,62,66,74.83,76,84,74.68,50,250,50.94,49,3,66.4,51,12,53.34,47,2,97.93,106,250,78.77,78,78,62.61,64,65,40.13,41,2,52.34,42,2,43.67,31,2,66.59,69,71,65.31,31,250,84.42,58,250,45.71,47,30,122.54,125,250,129.02,90,250,63.45,65,67,117.51,87,250,58.91,58,65,127.47,124,250,78.41,30,250,60.6,62,61,58.05,57,54,79.83,42,250,160.73,216,250,214.67,249,250,107.41,74,250,62.3,64,66,68.81,68,66,61.56,59,61,56.44,50,250,43.23,41,6,82.78,58,250,48.59,47,54,64.59,56,250,38.96,38,17,47,46,30,56.32,61,65,63.77,65,66,49.07,50,51,43.61,42,28,51.56,41,6,58.33,42,33,54.89,60,63,66.77,34,7,59.58,54,66,132.36,127,250,73.53,62,250,51.2,52,63,67.03,68,69,50.99,55,55,43.44,41,32,85.78,44,250,66.92,70,70,58.53,54,2,48.79,27,8,54.48,58,60,141.48,168,250,86.66,31,250,68.3,69,70,73.93,41,250,5.7,5,2,119.45,70,250,70.67,55,250,68.48,50,22,118.04,109,250,62.61,36,2,105.5,76,250,62.92,64,64,58.15,54,58,87.83,62,2,47.75,46,41,68.78,35,250,126.09,90,250,63.5,65,67,101.37,67,250,169.75,193,250,113.7,71,250,67.06,68,68,55.31,57,60,119.24,78,250,66.65,68,67,63.09,64,66,76.12,43,250,42.59,47,4,124.81,153,3,62.29,64,66,92.72,79,250,65.07,65,66,46.73,28,2,81.09,48,3,82.59,70,50,35.89,18,2,63.35,65,65,66.94,42,11,134.4,134,250,62.08,63,64,67.1,40,4,75.7,67,54,61.07,62,65,92.11,91,22,52.1,52,52,64.44,63,64,61.45,63,64,98.32,53,250,58.51,61,63,83.78,68,69,65.21,65,66,67.82,61,4,69.32,70,69,62.29,63,66,62.51,64,66,107.65,114,27,62.22,63,65,61.71,62,63,60.86,59,60,77.89,39,250,122.77,131,250,66.41,67,66,51.3,39,31,71.12,71,73,63.32,65,64,61.84,63,64,36.36,19,6,71.89,72,69,62.55,64,66,64.71,64,66,62.87,64,64,58.99,59,60,67.95,64,64,58.57,59,67,67.81,69,69,229.48,250,250,58.74,60,62,63.74,65,65,56.18,58,60,64.13,65,66,3.32,3,4,65.67,65,65,66.17,67,68,61.36,63,64,60.4,61,61,61.35,60,61,101,60,250,62.05,61,64,60.65,63,64,58.22,54,65,60.71,60,62,62.21,64,66,93.54,63,250,66.84,68,68,66.47,61,250,63.23,64,64,68.11,66,67,61.31,63,64,63.03,61,62,61.42,60,61,77.53,48,250,60.2,61,59,56.79,60,67,64.27,63,61,68.69,69,69,60.92,60,61,106.46,84,250,71.55,52,250,100.6,89,250,46.75,43,3,62.76,56,250,68.03,71,74,59.64,59,63,98.79,52,250,85.07,78,91,63.81,66,67,84.58,50,250,71.11,46,250,64.92,65,67,73.03,58,250,67.01,42,250,53.91,32,2,54.94,54,58,64.7,60,58,95.92,59,250,59.02,58,59,64.76,66,67,68.93,52,250,104.32,85,250,65.26,65,64,62.1,36,250,131.8,135,250,78.48,46,250,60.55,59,69,31.93,25,4,51.39,47,4,83.57,65,2,0.947,0.03441 +VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,59.29,59,59,69.36,30,250,22.03,17,6,52.93,53,55,62.22,62,57,70.71,43,250,35.91,38,3,74.99,60,8,43.41,36,3,80.78,72,250,66.33,67,66,52.42,53,55,35.62,38,2,46.37,36,3,47.67,29,9,54.7,57,58,49.94,30,250,72.85,46,250,44.71,41,2,103.47,98,250,116.18,64,250,52.92,54,55,117.67,83,250,48.18,46,50,120.93,72,250,96.83,38,250,51.57,53,53,49.05,49,50,74.39,34,250,158.75,217,250,201.14,249,250,100.57,52,250,52.25,54,55,57.46,57,58,50.58,48,49,50.07,43,52,40.03,38,6,74.47,45,250,42.12,40,44,57.37,48,50,32.21,31,32,40.54,39,20,44.48,48,51,53.13,54,54,40.41,42,51,34.89,34,26,43.97,32,11,44.24,26,28,47.35,52,54,48.07,26,3,50.68,42,8,131.16,122,250,79.87,72,250,44.54,47,55,55.63,57,56,43.85,47,53,34.03,33,46,79.59,36,250,52.38,57,59,91.22,64,250,41.76,28,23,47.6,49,52,131.16,123,250,76.91,33,250,56.65,57,58,76.22,38,250,13.7,14,4,114.63,109,250,67.17,50,250,58.51,33,14,104.48,82,250,51.89,33,6,104.68,63,250,52.71,53,54,40.9,31,21,82.32,70,4,38.16,37,32,60.45,27,13,121.1,90,250,52.92,54,55,82.77,43,250,146.94,155,250,116.84,74,250,55.61,56,56,45.66,49,56,99.79,81,250,55.26,56,57,53.06,54,55,70.55,39,250,38.8,41,3,137.07,181,250,52.53,54,55,109.72,117,250,55.22,54,55,52.76,20,2,58.7,41,14,77.55,62,29,35.42,30,2,52.71,54,55,64.07,33,21,153.64,206,250,52.49,53,54,67.96,45,6,65.85,61,54,50.77,52,53,78.82,86,102,46.34,44,45,54.9,53,54,51.93,53,54,93.1,50,250,49.03,51,55,98,56,49,54.7,54,56,62.58,54,2,57.67,58,58,52.62,53,54,52.02,53,55,110.92,126,250,52.75,53,54,51.24,52,52,51.46,50,52,83.39,42,250,115.55,104,250,54.59,55,55,55.89,48,2,59.02,59,59,53.38,54,56,52.07,53,55,31.94,17,14,60.15,60,59,52.19,54,55,55.24,54,53,53.44,54,56,50.88,51,53,59.13,54,54,42.55,48,50,57.1,58,59,230.65,250,250,49.36,50,50,52.75,54,56,47.56,49,51,53.93,55,55,5.16,5,6,55,55,55,54.9,56,57,51.76,53,53,50.88,52,51,52.61,51,51,91.55,60,250,53.48,52,52,51.07,53,54,49.22,44,50,51.99,51,52,52.12,54,53,103.04,47,250,55.56,56,56,57.19,51,55,52.99,54,56,56,56,58,51.47,52,53,54.61,50,50,54.52,51,50,77.6,44,250,51.48,52,53,48.18,50,54,54.34,52,53,57.05,57,58,51.32,49,49,98.81,78,250,65.85,46,250,102.68,81,250,41.5,37,2,55.95,48,53,58.18,60,64,49.62,49,47,98.41,61,250,81.96,88,90,53,54,55,76.95,40,250,63.95,40,250,55.43,55,56,61.99,46,3,60.22,37,250,60.4,36,2,47.4,47,52,54.03,51,52,81.59,48,250,52.65,50,51,54.06,55,56,55.63,47,7,88.66,69,250,54.29,54,55,78.6,55,250,107.76,95,250,77.16,51,250,53.72,50,48,20.73,19,4,42.64,40,48,68.22,59,3,0.946,0.03434 +VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,51.58,52,51,63.28,25,250,21.94,15,3,44.29,44,46,54.87,55,56,55.33,36,4,58.62,52,5,46.75,31,14,40.38,33,2,63.31,54,8,57.57,58,59,45.18,46,46,30.53,32,3,39.55,30,5,31.5,25,4,47.09,48,48,38.42,21,250,69.59,41,250,40.32,35,28,103.91,90,250,103.98,64,250,46.13,47,48,98.72,52,250,41.45,40,41,79.84,41,2,68.6,23,250,43.37,45,46,54.93,42,40,68.48,30,250,145.07,186,250,100.49,86,84,86.4,42,250,45.02,46,47,50.56,51,52,44.66,41,43,45.07,37,40,33.15,25,2,62.56,34,250,37.25,35,38,51.82,41,40,27.46,27,29,32.4,31,14,39,42,45,45.92,47,48,34.01,36,37,32.43,31,25,30.9,25,22,34.62,22,19,40.16,43,44,36.92,23,2,43.31,35,49,94,77,24,59.33,45,250,37.04,38,41,48.09,49,49,38.53,40,39,28.76,27,16,74.69,28,250,46.61,48,53,77.64,55,7,34.88,26,2,40.44,42,42,138.09,133,250,57.45,22,3,49.36,50,50,69.23,34,250,13.15,14,2,89.76,60,250,56.5,41,250,38.09,26,9,94.27,84,250,45.74,27,2,87.31,37,250,45.62,46,47,38.96,22,17,64.95,52,2,34.33,34,33,51.66,24,3,116.86,119,250,45.58,47,48,69.44,40,2,118.65,121,21,100.61,53,250,48.37,49,49,38.3,39,45,88.68,63,250,47.96,48,49,45.55,46,47,58.12,30,28,34.61,36,43,117.1,141,6,45.26,46,46,79.35,74,250,47.59,47,47,44.9,26,4,45.21,28,5,84.8,63,250,33.05,29,2,45.49,46,47,48.58,35,3,97.85,85,24,45,45,46,57.18,41,9,56.31,51,45,43.88,44,46,26.96,27,18,29.47,31,34,47.08,45,45,44.57,45,46,83.84,31,250,42.34,44,45,36.04,37,35,47.05,46,48,44.65,39,2,49.81,50,49,45.27,46,46,45.23,46,47,65.98,65,22,45.09,45,45,44.4,45,44,45.15,43,43,51.31,20,8,127.74,134,250,47.49,48,49,42.65,37,2,51.63,51,52,45.46,46,47,45.37,45,45,25.98,15,3,51.7,52,52,45.08,46,48,48.81,46,46,45.38,46,48,43.74,43,45,49.76,45,45,39.77,42,47,49.75,50,52,230.2,250,250,42.47,43,43,46.09,47,47,40.61,41,43,46.63,47,47,5.13,4,4,47.25,47,47,47.73,48,49,44.48,45,48,43.28,44,45,45.87,44,44,73.95,35,250,45.93,44,44,43.53,45,45,41.45,38,47,44.02,44,43,45.25,47,47,83.47,36,250,48.26,49,49,49.68,43,47,46.48,45,45,50.65,48,48,45.18,46,46,46.87,42,44,45.25,43,47,63.68,32,250,43.89,44,43,40.32,42,42,48.66,46,46,49.42,50,49,45.84,44,42,76.6,61,250,52.43,36,36,78.34,54,250,30.33,27,4,46.87,39,45,49.23,49,46,43.13,41,41,84.52,40,250,55.56,51,50,45.89,47,47,71.14,36,250,56.12,35,4,46.46,46,45,52.77,38,3,51.4,28,250,55.23,43,4,40.99,38,38,46.54,43,46,82.38,39,250,44.56,42,43,46.83,48,48,47.02,39,2,71.31,50,3,46.64,46,43,57.2,30,250,101.56,79,250,61.6,34,3,46.65,43,45,31.1,27,3,35.15,32,3,67.06,57,7,0.947,0.03415 +VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,65.06,65,65,73.45,41,250,24.55,16,3,55.53,58,61,65.99,67,68,64.8,43,250,79.95,44,3,69.82,57,3,47.67,40,10,94.2,90,250,69.96,70,64,57.55,59,59,35.28,36,3,47.54,34,2,51.53,30,5,61.93,64,67,48.23,28,2,73.24,54,250,40.43,38,3,115.01,108,250,127.92,101,250,58.21,60,61,102.08,59,250,53.01,53,2,104.8,49,250,80.65,34,250,56.45,58,58,62.69,54,55,75.84,37,250,165.24,246,250,215.02,249,250,109.94,75,250,57.13,59,60,62.3,63,65,56.28,54,59,55.54,49,51,57.81,41,250,81.24,53,250,46.5,45,50,62.08,54,250,34.72,33,32,42.29,40,33,49.8,54,55,58.48,59,60,43.21,43,27,40.77,41,29,46.52,38,4,45.67,31,25,51.58,56,62,43.33,24,2,53.93,47,4,124.74,114,250,70.79,53,250,49.03,51,62,61.22,62,63,48.47,52,56,39.17,38,23,80.18,34,250,56.14,60,60,111.6,100,250,42.01,25,26,51.27,53,53,146.36,210,250,76.49,29,250,62.41,63,65,73.08,37,250,6.38,5,2,109.95,79,250,69.83,54,250,63.33,41,9,102.81,76,250,51.81,33,3,98.03,57,250,58.35,59,60,44.21,28,19,68.3,45,12,41.48,40,34,58.12,29,2,122.62,85,250,58.44,60,61,78.21,48,250,139.26,151,250,111.3,73,250,61.48,62,62,49.04,52,59,102.98,76,250,60.85,62,62,57.94,59,60,70.33,41,250,44.6,46,3,137.52,167,250,57.66,59,60,97.64,93,250,60.51,60,60,60.3,43,4,63.31,32,6,99.82,87,250,39.92,30,6,57.86,59,61,58.32,32,27,137.55,149,250,57.49,58,60,62.35,40,29,70.25,63,54,56.14,57,60,43.34,33,20,44.04,47,55,59.51,58,59,56.63,58,58,91.92,47,250,54.1,57,60,79.83,86,6,59.79,59,60,62.98,51,22,63.53,64,63,57.88,59,59,57.15,59,59,124.56,132,250,57.58,58,59,57.01,58,59,57.09,56,58,75.22,38,6,107.53,80,2,60.73,61,62,59.25,55,3,64.64,65,66,57.8,59,60,57.86,58,59,33.89,19,10,65.46,66,65,57.36,59,60,60.48,59,61,58.15,59,60,55.18,56,58,63.67,59,60,52.63,55,58,61.36,62,63,221.8,250,250,54.67,56,57,57.98,59,59,51.95,54,57,58.87,59,61,5,4,2,60.07,60,61,60.56,62,62,57.05,58,58,55.38,56,58,58.68,57,58,91.29,57,250,58.09,57,60,57.02,59,61,53.13,50,56,56.84,57,56,56.77,59,59,89.43,48,250,61.3,62,62,60.24,55,57,57.33,58,60,63.98,62,64,56.74,59,57,58.64,55,54,57.9,55,57,71.5,41,250,56.36,57,58,52.25,55,59,61.11,59,59,62.82,63,63,57.09,56,57,98.81,84,250,71.19,50,250,92.49,63,250,43.79,39,2,59.42,53,59,61.24,64,65,55.21,55,56,100.47,44,250,61.45,58,3,58.45,60,61,79.27,42,250,58.6,40,2,59.15,60,65,66.26,48,2,60.18,37,250,59.27,33,28,53.55,53,59,60.89,58,57,93.47,54,250,56.82,55,54,59.52,61,62,66.27,47,2,76.03,61,250,60.17,60,60,69.59,30,250,133.62,134,250,63.04,40,250,48.99,49,57,31.46,27,3,47.89,45,59,101.38,76,250,0.947,0.03438 +VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,59.12,60,60,65.99,33,250,27.44,23,6,52.68,54,57,60.05,59,59,69.2,43,250,88.26,59,5,67.49,52,34,49.04,43,19,91.79,83,250,62.9,64,68,54.51,56,57,32.79,34,4,41.52,32,3,47.63,33,10,56.64,58,58,56.75,24,5,77.65,52,250,38.9,38,31,101.21,83,250,126.09,101,250,54.61,56,57,111.11,73,250,54.94,51,54,87.18,42,8,89.93,34,250,52.06,53,53,63.36,54,56,75.22,39,250,129.82,143,60,97.84,98,95,103.75,64,250,54.22,56,57,56.72,57,57,53.07,50,55,51.35,44,45,50.39,43,3,78.23,48,250,48.07,47,50,61.58,51,250,34.44,33,31,41.37,40,30,48.36,53,55,55.03,56,57,39.76,40,49,39.7,39,32,45.52,36,5,51.28,30,28,48.29,53,54,46.95,25,3,55.79,43,52,132.51,129,250,69.27,49,250,45.75,47,50,56.98,58,59,47.55,51,54,37.74,36,29,78.77,36,250,56.23,59,63,70.37,51,11,44.83,27,18,50.6,53,56,140.26,191,250,70.59,18,5,57.6,59,59,75.51,38,250,7.08,5,3,113.56,52,250,73.35,55,250,59.43,24,7,114.89,106,250,52.49,31,7,90.18,58,250,55.13,56,57,53.37,40,250,90.94,85,7,38.27,38,49,64.21,31,250,126.7,88,250,54.65,56,57,86.96,55,250,163.96,177,250,104.83,58,250,57.44,58,58,46.66,46,42,107.35,83,250,56.96,58,58,54.99,56,56,73.31,40,250,50.72,53,3,131.38,159,250,54.62,55,57,103.31,98,250,57.22,56,58,61.39,38,4,66.87,41,6,118.53,107,250,37.86,29,2,54.6,56,57,63.45,31,16,141.06,169,250,54.55,55,55,64.72,49,19,66.83,60,53,52.93,54,56,34.73,37,41,45.6,48,50,56.76,55,56,54.15,55,57,90.16,43,250,51.51,54,56,57.42,52,37,56.41,56,56,68.91,53,2,58.55,59,59,54.63,56,56,53.9,55,57,109.66,117,32,54.41,55,55,55.32,55,55,54.63,53,54,87.52,48,250,127.7,104,250,57.04,57,58,52.91,51,5,58.85,59,59,55.44,56,57,55.51,56,55,36.56,22,8,59.18,60,61,54.33,56,57,57.35,57,59,54.89,56,56,52.67,53,55,61.32,56,57,47.73,50,50,56.76,58,59,224.15,250,250,52.86,54,55,54.56,56,58,49.78,51,54,54.93,56,57,5.64,5,3,56.9,57,57,56.72,58,58,54.32,55,56,53.43,54,55,55.44,54,54,87.34,52,250,56.36,55,57,54.08,56,55,51.3,48,54,54.27,54,55,54.6,56,60,102.36,49,250,57.1,58,58,59.1,54,57,56.01,55,55,61.35,59,59,54.6,55,54,53.76,53,58,54.74,53,55,73.42,45,250,54.17,55,55,50.44,53,55,57.7,55,56,58.27,59,59,54,52,53,94.42,73,250,70.33,50,250,102.26,72,250,45.97,39,3,58.74,50,250,53.82,55,57,52.91,51,51,108.38,74,250,72.49,64,40,55.02,56,57,74.3,41,250,69.35,40,250,56.08,54,57,66.1,45,250,59.68,36,250,62.66,33,30,50.39,49,53,58.31,54,54,93.48,57,250,54.77,52,50,55.67,57,58,68.32,55,4,87.94,65,250,56.85,56,56,77.96,54,250,126.62,118,250,72.39,45,250,63.26,55,58,29.23,26,2,45.14,42,54,79.02,64,5,0.949,0.03429 +VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.5,64,65,76.37,39,250,34.98,30,22,63.59,65,69,68.18,65,66,79.36,54,250,87.1,41,250,98.06,85,250,55.03,49,7,96.08,88,250,64.09,66,67,62.85,64,65,42.06,41,2,49.68,35,2,40.76,27,3,65.92,69,73,55.4,32,14,91.78,70,250,45.15,41,3,131.78,128,250,135.58,89,250,61.74,63,63,118.27,82,250,65.4,66,75,114.14,49,250,91.05,34,250,62.67,64,62,79.46,68,250,84.08,48,250,171.29,249,250,223.15,250,250,121.53,82,250,61.87,63,64,60.21,61,61,66.92,67,70,62.96,58,250,51.9,49,10,94.99,61,250,59.27,61,69,70.19,64,250,36.54,35,33,43.04,43,55,58.69,65,69,62.82,63,64,43.75,44,33,45.05,45,64,56.82,47,5,52.78,35,250,51.84,56,56,51.28,30,2,62.52,52,250,138.31,149,250,77.93,59,249,50.71,55,63,63.34,64,65,61.21,65,74,42.95,43,21,84.1,42,250,58.04,61,67,93.76,73,250,53.62,29,2,62.47,66,65,142.72,187,250,79.5,29,2,62.51,63,64,82.24,49,250,9.56,7,5,124.02,96,250,84.86,70,250,82.06,57,250,122.79,124,250,65.28,46,250,87.36,61,250,63.55,64,65,45.61,34,35,121.74,103,250,42.7,40,31,68.77,40,250,129.99,98,250,61.72,63,64,81.83,53,250,196.49,249,250,106.82,62,250,63.92,64,64,57.15,58,60,120.85,87,250,63.43,64,65,62.74,63,64,84.84,56,250,55.37,57,67,138.86,181,250,63.94,65,66,106.36,100,250,65.99,65,66,87.41,55,250,60,37,5,112.34,107,250,41.31,27,6,62.43,64,63,67.65,39,12,142.35,177,250,65.18,66,67,99.62,62,250,79.4,74,64,61.43,63,64,77.06,84,107,54.8,52,58,66.65,65,65,62.12,63,62,93.37,51,250,59.47,62,65,66.22,67,69,66.52,66,66,88.58,72,3,64.99,65,65,64.23,65,66,61.43,62,62,121.18,123,250,63.85,64,64,67.62,68,69,63.88,63,66,84.46,33,250,110.76,73,250,63.59,63,64,69.55,63,250,64.04,64,65,64.15,65,66,66.46,67,68,56.17,38,2,63.41,64,63,61.5,63,63,66.25,64,65,64.53,66,66,62.34,62,65,68.89,65,65,64.61,68,71,64.21,65,63,228.38,250,250,65.38,66,69,62.54,64,63,58.26,60,64,62.88,64,64,5.76,4,2,66.57,67,68,63.23,64,64,65.91,67,66,65.07,66,66,67.27,66,68,99.28,66,250,66.47,66,67,64.55,67,70,60.49,55,68,68.41,68,67,62.27,64,65,96.89,58,250,64.14,64,64,68.04,61,250,65.02,64,63,68.19,66,67,66.19,66,67,69.23,69,74,67.68,67,68,91.24,54,250,67.02,68,71,61.89,66,69,66.84,65,69,64.61,65,65,64.75,64,62,110.27,94,250,87.17,63,250,113.7,95,250,55.57,43,2,62.71,56,250,56.76,59,58,62.59,62,66,89.36,48,250,71.33,48,37,61.98,63,64,85.98,52,250,69.81,52,250,64.93,64,66,86.03,64,250,69.8,46,250,71.63,58,3,61.35,61,58,71.9,68,65,101.1,69,250,70.72,69,69,62.67,63,64,78.94,60,250,104.45,80,250,67.37,68,69,69.04,30,250,130.69,117,250,76.12,43,250,79.98,67,61,47.79,41,3,60.37,56,68,95.33,83,250,0.948,0.03447 +VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,67.23,67,67,70.04,35,250,28.87,25,30,56.5,59,62,72.27,72,73,73.36,47,250,50.72,40,5,60.12,42,30,47.81,39,3,113.13,102,250,77.16,77,70,57.98,59,60,38.16,42,2,53.07,43,2,50.7,31,9,62.56,65,65,58.01,28,8,81.12,50,250,45.99,41,2,127.56,135,250,114.77,73,250,58.96,60,61,121.53,85,250,54.71,57,63,79.61,78,2,86.99,30,250,56.38,58,58,55.6,53,54,75.32,33,250,167.07,249,250,203.06,250,250,115.32,88,250,57.94,60,61,66.59,65,64,56.43,55,60,54.37,48,55,70.88,53,9,86.86,57,250,43.98,42,49,63.15,54,56,36.82,36,35,43.46,44,60,51.34,56,59,59.18,60,61,45.48,46,51,40.55,40,35,49.72,38,7,48.82,29,13,51.82,57,61,53.94,29,6,54.89,43,7,118.95,113,250,78.39,65,250,49.44,52,62,62.22,63,63,48.32,51,49,37.66,36,22,81.99,40,250,62.18,66,69,77.13,69,8,40.69,22,3,51.53,53,60,133.56,95,250,85.69,42,250,63.99,65,65,80.63,42,250,4.06,4,4,119.54,63,250,69.55,52,250,62.47,37,26,121.29,103,250,58.57,33,250,110.14,67,250,58.3,59,60,49.28,34,26,54.01,40,7,42.96,43,36,66.25,33,250,127.12,103,250,58.96,61,62,87.62,51,250,165.4,180,250,107.79,64,250,62.34,63,62,48.01,51,55,105.84,89,250,61.86,63,63,58.65,59,60,73.54,44,250,43.14,47,3,138.58,173,250,57.97,59,60,113.65,103,250,60.69,60,61,64.69,51,5,72.48,43,4,84.03,66,250,36.07,28,8,58.71,60,62,68.3,45,2,159.93,222,250,57.85,58,59,65.92,42,6,70.92,64,63,56.28,57,58,30.62,32,36,49.92,50,64,60.41,58,61,57.1,58,60,87.04,42,250,54.17,57,60,87.24,65,7,60.17,60,61,79.61,65,2,64.63,65,65,57.61,59,59,58.12,60,62,137.82,163,250,57.72,58,60,56.24,57,57,56.72,55,56,67.01,29,11,127.09,84,250,61.49,62,61,58.24,55,62,67.03,67,67,58.33,59,60,57.3,58,57,41.26,24,24,67.8,68,68,57.85,59,61,60.85,60,61,57.57,59,60,55.71,56,58,62.74,59,59,46.44,52,61,62.92,64,66,231.34,250,250,53.83,55,56,58.8,60,60,52.33,54,55,59.95,61,61,8.71,5,3,61.24,61,60,61.49,62,62,56.46,57,56,54.22,55,58,57.1,56,58,92.16,56,250,57.71,57,59,55.94,58,60,54.44,50,57,54.85,55,58,58.02,60,61,99.98,51,250,62.21,63,63,62.25,56,250,59.2,59,61,61.51,61,59,57.22,58,59,61.25,54,51,55.42,53,55,79.44,52,250,56.05,57,58,52.17,54,53,60.05,58,60,63.97,64,64,56.08,55,57,91.79,70,250,72.27,46,250,118.22,107,250,46.16,41,2,59.19,53,250,63.31,65,69,55.85,55,56,109.94,58,250,89.38,78,71,59.14,61,62,79.9,43,250,61.5,42,250,61.99,62,63,73.34,52,250,69.72,41,250,64.26,49,5,52.17,51,58,58.76,55,57,94.67,53,250,55.02,53,52,60.37,61,62,67.86,51,250,95.82,68,250,59.58,59,58,66.48,44,250,121.8,109,250,81.7,43,250,61.31,56,58,31.68,24,15,48.22,44,5,82.25,62,35,0.947,0.03439 +VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,76.49,77,78,87.35,54,250,31.26,23,5,68.96,71,75,80.5,77,75,96.64,67,250,79.46,75,9,88.87,68,250,61.93,51,5,118.61,131,250,83.69,84,82,70.74,72,74,49.4,51,2,56.6,49,2,73.94,47,250,71.23,73,76,59.91,36,250,93.1,71,250,64.05,51,250,133.48,110,250,133.72,86,250,70.74,73,75,130.17,97,250,69.35,70,250,130.59,137,250,107.25,49,250,70.23,73,73,82.2,72,250,90.8,58,250,169.71,249,250,220.69,250,250,120.05,91,250,70.11,72,73,74.41,76,75,71.79,71,71,65.46,61,250,56.49,54,2,86.71,61,250,61.23,60,62,74.61,68,72,43.85,42,42,51.73,50,34,62.7,69,72,71.52,73,75,52.98,55,64,49.91,49,35,60.98,54,55,58.79,35,250,61.78,68,72,62.38,27,250,70.68,59,250,147.88,145,250,75.12,47,250,59.96,65,74,73.65,75,75,63.68,68,70,46.15,44,34,94.29,58,250,69.44,73,73,136.98,114,250,62.24,48,250,67.4,70,70,149.17,224,250,83.61,41,250,74.31,76,78,86.14,55,250,9.07,7,3,131.43,92,250,92.03,76,250,73.8,50,250,143.63,165,250,69.55,44,250,108.31,73,250,71.44,73,74,51.71,36,34,90.96,88,5,52.02,49,47,68.73,39,250,142.94,115,250,70.87,73,75,95.73,65,250,130.03,129,250,116.09,74,250,74.25,75,75,61.95,61,72,139.89,141,250,73.41,75,76,71.19,73,74,84.95,52,250,60.75,59,2,154.13,248,250,71.13,73,74,113.48,96,250,73.85,73,73,93.41,86,250,77.9,52,2,107.48,81,250,45.85,29,2,70.77,73,75,81.91,44,37,139.86,149,250,71.49,73,74,85.2,62,12,89.7,81,76,68.79,71,71,42.53,38,22,54.98,58,60,73.66,72,74,70.45,72,75,99.8,61,250,66.55,70,72,105.7,84,69,73.47,73,74,95.19,81,4,75.79,76,76,71.67,73,74,69.99,72,72,134.44,132,250,71.17,72,74,72.85,73,74,70.33,70,71,82.91,51,8,129.4,98,250,73.47,74,76,69.33,62,4,76.44,77,78,71.22,73,74,72.7,73,75,48.99,29,3,77.12,78,78,69.98,72,74,73.4,73,73,71.51,73,74,68.48,69,73,77.13,73,75,66.58,70,69,73.85,76,77,228.56,250,250,70.1,71,73,70.78,73,76,64.33,68,71,71.56,73,72,4.39,4,4,73.76,74,74,73.31,75,75,71.05,73,73,69.22,71,73,71.85,71,71,105.56,75,250,72.25,71,71,69.69,72,73,66.42,63,70,70.56,71,71,71.13,74,74,112.99,65,250,74.06,75,76,74.65,70,250,72,72,76,77.09,75,74,70.53,72,73,77.21,73,75,73.73,72,74,85.17,58,250,70.7,72,74,66.9,70,72,72.82,71,69,75.46,76,77,70.46,70,72,127.02,122,250,85.13,64,250,126.11,120,250,62.46,56,3,71.47,66,250,73.99,76,81,71.9,70,69,113.23,67,250,116.54,103,250,71.23,73,74,91.06,59,250,82,49,250,74.4,73,77,94.61,69,250,77.63,50,250,82.7,66,250,65.56,66,69,75.64,71,68,110.61,75,250,72.28,71,72,72.02,74,75,89.26,78,250,106.38,80,250,74.66,75,77,72.43,46,250,149.42,159,250,102.34,64,250,75.74,70,74,39.83,32,2,62.07,58,56,104.45,79,250,0.949,0.0345 +VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,56.71,57,57,74.45,37,250,31.45,23,3,47.68,49,49,59.22,59,60,58.69,43,11,81.97,69,3,64.06,51,41,48.38,41,29,112.91,76,250,61.96,62,64,50.64,51,52,31.76,32,4,45,36,4,36.75,29,8,53.93,56,57,42.43,25,2,79.27,50,250,42.63,35,2,95.1,84,250,119.34,90,250,51.11,52,53,108.6,65,250,48.17,46,49,99.32,84,5,79.57,32,250,50.41,52,53,48.47,48,49,71.51,32,250,162.28,249,250,190.92,210,250,96.85,55,250,50.16,52,53,55.16,55,49,50.37,48,54,48.52,41,39,35.15,27,9,79.56,50,250,41.36,39,44,55.14,45,49,31.55,31,23,37.63,38,56,44.84,49,49,51.24,52,53,38.29,39,46,36.57,36,21,42.68,35,9,48.52,30,27,45.61,49,56,45.77,24,3,47.81,41,6,112.67,97,250,75.07,64,250,42.5,45,57,53.32,54,55,42.6,45,45,35.04,33,27,82.28,38,250,51.83,55,62,69.09,66,3,45.47,31,3,44.87,47,47,148.2,211,250,62.44,18,2,54.48,55,55,73.44,37,250,14.57,14,5,113.71,75,250,63.96,47,250,49.99,35,18,107.76,83,250,53.9,33,10,99.52,62,250,51.05,52,52,45.81,31,18,89.63,56,250,36.52,35,33,59.53,30,250,113.48,83,250,50.89,52,53,82.17,50,250,149.62,155,250,112.42,57,250,53.67,54,54,45.71,47,48,108.84,82,250,53.13,54,54,51,52,53,63.11,34,250,38.86,42,3,101.49,126,2,50.79,52,53,80.82,74,250,53.34,52,52,55.93,40,4,69.53,36,8,73.6,57,20,31.63,16,4,50.93,52,52,58.98,37,24,130.39,99,250,50.61,51,52,79.72,41,250,62.82,56,48,49.22,50,51,47.98,49,2,34.83,36,49,52.67,51,53,49.86,51,52,88,44,250,47.22,49,51,80.83,54,50,52.63,52,52,64.66,55,29,55.22,55,55,50.53,51,52,50.17,51,52,99.24,107,10,50.49,51,52,50.81,51,51,50.83,49,49,79.91,38,250,135.53,168,250,53.22,53,54,53.52,51,56,57.07,57,57,51.18,52,53,50.87,51,50,42.63,23,2,56.94,57,58,49.87,51,53,52.36,52,53,51.07,52,52,49.43,49,50,56,51,53,46.52,50,55,53.82,55,55,230.83,250,250,48.49,49,49,50.69,52,52,46.28,47,50,51.57,52,53,6.11,6,7,52.73,53,54,52.85,54,53,50.37,51,51,49.09,50,52,50.6,49,51,78.95,39,250,50.86,50,52,49.17,51,52,48.03,44,50,50.43,50,52,50.25,52,55,102.12,44,250,53.61,54,55,54.7,48,50,50.63,51,49,57.4,54,52,50.5,51,51,51.84,49,49,52.63,50,54,69.11,35,250,49.26,50,49,46.76,49,53,52.58,51,51,54.77,55,55,52.03,50,50,88.25,67,250,61.73,45,250,98.63,74,250,39.71,33,2,53.67,46,250,55,56,59,49.6,48,52,114.34,53,250,52.42,41,39,51.18,52,52,76.24,36,250,59.21,36,250,53.39,52,49,53.89,40,19,54.82,33,250,59.65,47,2,47.96,45,46,52.29,49,49,89.37,45,250,50.38,49,49,52.16,53,54,65.83,44,3,73.5,55,8,52.73,53,55,71.67,37,250,130.42,114,250,63.4,35,250,56.83,52,52,38.19,35,5,42.55,39,4,74.18,59,5,0.947,0.03427 +VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,50.2,50,49,62.97,30,250,21.16,15,4,42.95,44,45,51.77,53,55,55.21,31,4,46.38,49,5,45.13,30,15,37.64,31,8,72.73,63,11,53.32,54,58,44.52,45,46,29.18,31,3,37.86,23,2,36.1,27,19,46.05,48,49,36.12,17,11,70.63,42,250,33.75,34,4,99.51,86,250,113.83,60,250,45.01,46,47,106.89,67,250,41.08,40,45,91.51,67,5,75.05,26,250,43.32,44,44,44.01,41,41,65.25,29,250,80.38,88,44,220.24,250,250,94.27,54,250,44.18,45,46,49.89,50,47,46.2,43,47,43.89,37,40,30.94,28,4,69.4,43,250,37.93,35,40,52.43,41,40,27.36,26,24,31.61,32,13,38.93,42,47,45.28,46,46,34.16,34,30,31.14,31,29,37.12,28,23,35.4,24,18,39.83,42,43,28.23,19,3,42.8,35,7,83.48,74,250,80.08,66,4,37.73,41,48,47.37,48,48,37.47,39,41,29.41,27,19,78.95,33,250,46.16,48,48,65.85,36,6,33.05,18,19,40.15,42,44,136.78,135,250,65.91,23,10,47.97,48,49,68.87,31,250,23.87,16,3,86.04,66,250,57.13,37,250,55.83,41,11,95.18,94,250,46.46,25,9,88.65,36,250,45.08,46,46,48.7,35,11,54.99,44,14,32.42,32,31,52.14,24,3,118.14,91,250,44.73,46,46,75.36,40,2,154.79,145,250,101.2,46,250,47.38,48,48,38.34,39,41,89.34,63,250,46.97,47,48,44.9,45,47,54.09,29,26,35.47,34,43,90.11,112,8,44.99,46,47,74.89,65,250,47.13,46,47,43.92,26,6,62.84,34,4,77.65,63,11,23.34,20,4,44.87,46,47,46.17,28,17,131.03,87,250,44.78,45,46,32.96,30,11,54.5,49,45,42.99,44,45,50.99,52,80,34.93,35,37,46.14,45,45,44.2,44,45,83.83,33,250,41.72,43,45,58.31,45,5,46.81,46,46,39.91,36,34,48.91,49,49,44.78,45,46,44.62,45,44,87.45,97,32,44.9,45,46,44.09,44,45,44.43,43,43,52.27,23,6,107.48,85,250,46.47,47,48,42.27,43,48,50.06,50,50,45.04,46,47,44.96,45,47,25.65,14,7,50.91,51,50,43.98,45,46,46.6,46,46,44.76,45,45,43.38,43,46,49.99,46,46,36.86,39,39,47.92,49,48,229.4,250,250,42.3,43,44,45.08,46,48,39.98,41,43,45.89,46,47,3.52,3,2,46.79,47,46,46.76,47,48,44.38,45,46,42.99,44,43,45.08,43,43,76.34,34,250,44.81,43,44,43.97,45,46,42.4,39,43,44.6,43,43,44.33,46,49,77.41,35,250,47.23,48,48,46.82,43,43,44.68,45,49,50.48,47,48,43.28,45,44,46.91,44,45,46.41,43,45,58.44,25,250,43.71,44,45,41.29,43,45,47.08,45,45,48.47,49,48,44.23,43,46,72.47,57,250,55.6,36,250,79.93,54,250,34.21,29,6,47.93,40,44,47.44,50,51,42.71,42,44,82.04,31,250,50.8,47,42,45.08,46,47,69.61,34,250,53.28,34,2,46.11,47,44,57.44,45,10,55.21,29,250,52.28,41,2,41.22,39,42,48.28,45,46,75.14,37,250,44.54,43,42,46.13,47,47,46.4,33,5,77.23,59,5,46.66,46,46,56.82,21,250,102.77,93,250,58.44,32,24,45.85,43,43,25.62,25,2,36.78,34,5,73.79,55,3,0.947,0.03424 +VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,42.76,42,42,67.81,27,250,21.09,17,3,36.49,36,35,43.72,43,43,55.07,34,3,51.29,50,2,58.14,48,17,35.03,31,3,70.87,63,8,45.51,45,46,38.49,39,39,25.62,25,2,39.5,29,2,36.48,29,3,38.72,39,40,49.68,21,2,60.12,35,35,37.08,29,4,89.35,71,250,108.53,60,250,38.69,39,40,104.97,68,250,37.09,35,41,90.78,77,6,76.89,26,250,37.04,38,40,39.05,35,39,67.67,28,250,134.86,179,42,180.49,208,250,89.48,52,250,38.14,39,39,42.62,42,40,40.04,35,38,39.15,31,31,36.72,35,7,59.3,34,30,34.51,31,32,47.5,35,39,24.83,23,20,28.78,29,21,33.98,37,41,38.94,39,39,29.32,30,36,26.98,27,23,32.61,25,6,39.27,27,14,32.69,35,39,37.21,21,4,37,31,33,83.18,75,2,57.79,37,2,31.9,32,42,40.14,40,41,32.32,34,31,24.45,25,14,72.51,27,250,37.28,39,40,45.73,31,5,32.97,21,20,33.69,35,33,132.26,118,250,68.81,24,2,41.29,41,42,72.16,38,250,3.98,3,2,79.42,54,250,52.86,34,250,52.07,31,14,98.95,91,250,45.46,25,250,89.14,54,250,38.8,39,40,46.47,37,34,63.06,46,9,27.42,26,23,49.69,21,5,112.96,82,250,38.42,39,40,70.15,33,250,179.93,217,250,104.06,42,250,40.72,41,40,34.55,35,34,81.2,56,21,40.18,40,40,38.78,39,39,51.59,31,14,27.35,28,2,77.32,96,11,38.47,39,39,81.12,83,250,41.08,39,39,49.38,27,3,60.2,36,3,74.85,53,14,22.72,21,5,38.47,39,40,44.55,29,16,120.43,129,250,38.34,38,39,56.4,37,7,48.2,44,34,36.94,37,38,26.07,28,33,24.53,18,5,40.66,38,38,38.15,38,38,79.13,28,250,35.87,37,39,32.5,34,34,40.08,39,39,52.36,49,16,41.62,41,41,38.24,38,39,38,38,38,84.66,90,15,38.24,38,38,38.28,38,38,39.19,36,37,77.13,33,250,124.54,91,250,40.04,40,40,40.79,36,38,43.16,43,42,38.91,39,40,38.66,38,39,34.37,20,2,43.16,43,42,38.19,39,39,40.16,39,39,38.24,38,38,37.2,36,36,43.9,39,39,32,35,43,40.19,41,41,226.4,250,250,36.98,37,38,38.6,39,40,35.76,36,38,39.36,39,40,5.96,3,4,39.32,39,39,40.06,40,40,37.96,38,39,37.23,37,38,39.65,38,37,76.96,37,250,39.67,38,38,38.07,39,39,39.15,33,36,38.77,37,37,38.53,40,42,88.49,44,250,40.37,40,40,44.16,37,39,38.83,37,38,44.65,40,39,37.68,38,39,40.48,37,37,39.95,36,36,70.17,40,250,37.72,38,37,35.05,36,36,40.87,38,38,41.2,41,41,38.03,36,36,71.79,56,250,57.99,37,250,96.44,75,250,34.04,28,2,42.71,35,35,40.92,43,46,38.07,36,38,82.36,34,250,36.64,21,18,38.75,39,40,69.9,31,250,41.51,27,3,41.6,40,43,56.15,36,250,45.89,25,250,47.34,37,4,35.43,33,34,41.12,37,39,74.33,36,250,39.54,37,38,39.4,40,39,53.87,39,4,74.94,54,250,40.41,39,39,67.05,44,250,95.58,75,3,69.74,35,14,40.62,39,40,25.24,21,20,31.71,29,4,77.59,54,4,0.946,0.03426 +VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,53.76,54,55,62.92,25,250,23.23,21,21,47.17,48,51,55.75,56,57,57.71,33,10,75.42,40,250,60.24,54,3,40.09,35,2,70.9,65,250,61.18,61,58,47.82,49,50,31.85,33,4,38.95,29,2,40.83,20,4,48.71,50,48,46.05,24,250,62.28,45,250,34.84,30,2,108.38,93,250,120.22,86,250,48.19,49,50,101.01,53,250,45.83,45,50,104.42,61,250,86.29,34,250,46.03,47,50,48.65,46,48,64.36,31,250,149.97,185,250,191.8,221,250,101.84,63,250,47.58,49,49,52.81,53,54,47.71,45,48,45.53,38,39,52.95,32,6,58.75,41,38,39.85,38,42,53.88,42,42,30.93,30,28,34.21,32,20,43.22,47,47,48.69,49,50,37.26,38,25,33.09,33,28,37.67,30,13,34.39,25,25,42.41,47,50,40.47,24,2,46.64,38,40,79.9,64,250,103.17,108,3,38.7,41,44,50.68,52,52,41.68,44,47,30.36,28,22,80.01,31,250,49.35,52,52,47.32,38,22,32.33,19,16,42.88,45,45,139.53,177,250,71.13,28,2,51.7,52,52,71.3,33,250,8.75,3,2,79.1,50,250,60.53,42,250,41.08,30,20,107.44,106,250,47.86,34,2,90.16,47,250,48.2,49,49,47.5,45,47,53.62,40,7,33.91,32,26,55.52,26,8,111.02,66,250,48.24,49,50,65.17,40,4,126.7,121,250,101.66,52,250,51.02,51,51,40.55,42,47,85.52,60,250,50.34,51,51,48.17,49,50,62.41,37,22,33.58,33,4,96.96,124,12,48.01,49,49,75.48,62,250,50.43,50,50,49.19,37,3,60.68,34,2,60.92,57,44,28.21,22,2,47.95,49,50,45.98,28,15,120.73,72,250,47.88,48,49,30.96,30,10,58.81,51,37,46.35,47,49,24.04,25,25,36.3,36,44,49.45,48,50,47.37,48,48,88.88,43,250,45.05,47,48,35.96,39,43,49.85,49,49,55.54,39,2,52.46,53,53,47.84,49,49,47.28,49,49,56.71,60,6,47.8,48,48,47.45,48,47,47.45,46,48,52.66,30,7,72.28,62,4,50.49,51,51,45.59,44,5,53.82,54,52,48.44,49,50,48.28,49,50,25.73,14,9,54.62,55,56,47.63,49,50,50.41,49,49,47.57,48,49,46.34,46,49,52.48,49,49,41.82,45,51,51.39,52,51,229.21,250,250,45.43,46,46,48.08,49,50,42.68,44,47,48.96,49,49,4.46,4,4,49.73,50,49,50.25,51,51,47.47,48,50,46.13,47,48,48.79,47,48,77.78,33,250,48.76,47,49,46.8,48,49,44.16,41,42,47.18,47,48,47.47,49,50,84.46,41,250,50.84,51,52,51.56,46,46,47.52,47,47,53.68,51,51,47.41,49,50,49.66,46,47,51.23,48,47,56.7,27,250,47.13,47,48,43.78,46,48,50.09,48,49,51.95,52,52,46.62,46,49,86.3,65,250,59.07,38,250,96.15,71,250,40.02,30,3,50.69,43,46,51.86,53,53,45.91,45,47,83.87,32,250,52.13,47,47,48.34,49,50,69.29,34,250,52.03,36,2,49.24,50,53,57.22,40,5,54.02,29,250,57.22,42,2,42.55,41,43,50.41,48,52,81.47,44,250,48.06,46,48,49.43,50,50,52.48,35,10,79.02,58,250,50.37,50,50,57.35,23,250,109.24,85,250,60.83,33,26,43.97,42,45,28.84,25,2,38.22,36,44,56.02,47,23,0.946,0.03433 +VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,60.51,61,61,68.86,30,250,33.45,27,17,53.29,54,54,61.17,61,57,68.3,41,2,58.8,46,2,50.32,40,40,44.39,38,2,128.84,102,250,66.67,67,65,53.55,54,55,36.76,39,2,46.55,38,2,45.53,33,7,57.33,59,60,43.1,25,3,68.89,48,250,39.95,36,3,106.42,99,250,120.99,65,250,53.96,55,56,112.36,66,250,52.3,51,2,129.45,115,250,87.69,30,250,52.57,54,53,58.71,50,250,72.13,33,250,159.36,248,250,169.05,184,250,110.5,63,250,53,55,55,58.03,58,57,53.25,51,55,50.48,44,49,38.47,35,3,80.76,47,250,43.8,42,48,57.6,48,250,34.66,33,28,39.14,37,25,45.7,51,57,53.98,55,57,39.12,39,41,38.63,40,52,47.11,32,7,40.68,25,26,46.84,51,50,49.09,24,2,50.45,42,3,115.84,82,250,76.37,66,250,44.42,45,53,56.92,58,58,44.47,47,47,34.95,33,21,77.75,33,250,56.49,59,60,81.78,60,250,43.08,25,26,46.84,49,52,128.21,128,250,81.13,42,250,58.1,59,59,73.8,36,250,16.11,8,3,123.79,117,250,63.99,49,250,57.6,29,17,108.22,76,250,50.33,30,9,101.91,67,250,53.59,54,55,50.14,41,25,84.99,78,3,38.54,38,36,61.77,31,3,120.75,79,250,53.83,55,57,84.23,46,250,116.13,116,250,106.48,52,250,57.02,58,58,41.85,43,48,100.05,75,250,56.45,57,57,53.77,55,56,66.59,34,250,42.99,41,53,124.57,146,10,53.54,55,55,89.63,72,250,55.91,55,56,59.52,30,2,60.07,47,4,117.81,116,72,28.1,17,2,53.8,55,55,52.47,31,17,127.61,95,250,53.36,54,53,34.85,31,21,65.46,60,48,51.83,53,55,27.37,28,25,44.14,45,47,55.32,54,55,52.21,53,54,88.1,43,250,50.09,52,54,63.14,52,50,55.64,55,55,64.44,51,20,58.84,59,59,53.28,54,55,52.86,54,55,105.71,119,28,53.2,54,55,53.08,53,54,52.9,51,51,76.41,38,250,122.28,130,250,56.27,57,57,54.42,50,7,60.38,61,59,54.03,55,56,52.97,53,52,29.1,14,2,61.47,62,61,52.81,54,56,55.65,55,55,53.67,55,55,51.12,51,54,57.43,54,56,46.57,47,46,57.49,59,57,227.09,250,250,50.06,51,52,54.29,56,57,47.19,49,53,54.71,55,56,6.35,6,4,55.84,56,56,56.17,57,57,52.68,54,53,51.64,52,54,52.95,51,52,80.55,36,250,53.35,52,55,52.12,54,56,47.89,43,26,52.02,52,54,53.18,55,56,101.21,49,250,56.76,57,58,57.65,52,53,54.05,55,56,59.13,56,58,51.06,53,55,56.3,52,54,53.36,52,54,66.04,34,250,52.52,53,54,47.68,51,54,56.47,54,53,58.29,59,59,53.6,52,54,80.66,55,250,63.42,42,250,100.24,69,250,39.79,36,3,54.59,49,54,57.39,58,64,51.1,50,50,95.16,44,250,74.67,77,4,54.25,56,57,76.12,42,250,58.88,39,2,56.87,57,56,60.63,43,2,56.02,35,250,66.39,52,3,48.03,45,44,54.3,49,48,80.38,52,250,53.54,51,51,55.19,56,57,60.78,51,3,78.85,63,250,55.47,56,55,79.12,57,250,126.15,110,250,77.43,40,250,51.22,49,51,27.09,24,2,40.19,38,51,61.75,57,4,0.947,0.0343 +VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,65.19,65,66,75.63,39,250,31.49,26,24,54.22,56,57,65.75,66,66,71.05,42,250,53.54,29,2,62.17,55,3,44.15,33,21,101.69,89,250,72.44,72,71,56.91,58,59,37.16,40,2,48.94,36,2,47.99,30,4,59.84,62,62,49.38,27,250,82.31,51,250,41.98,40,2,120.69,114,250,124.14,95,250,57.73,59,61,122,93,250,52.36,51,52,127.33,113,250,90.4,30,250,54.9,57,59,52.42,51,51,73.57,39,250,123.35,140,58,227.29,250,250,108.66,74,250,56.54,58,59,63.27,63,64,56.3,51,54,54.07,47,47,39.84,36,12,76.04,51,250,44.44,43,46,61.66,53,56,35.25,35,33,40.99,41,58,49.01,54,60,57.84,59,60,42.91,44,30,39.26,40,46,43.39,34,7,49.9,32,2,50.72,55,58,45.87,25,2,52.81,46,59,127.94,108,250,77.72,61,3,50.46,53,58,60.98,62,62,45.93,50,55,38.74,37,30,82.71,39,250,58.25,63,63,62.89,46,5,43.24,24,2,50.95,53,57,145.7,200,250,78.84,33,250,62.3,63,63,73.98,37,250,26.38,18,3,103.59,55,250,74.15,55,250,76.99,58,15,110.56,96,250,57.21,30,11,98.57,61,250,57.47,58,59,43.53,24,2,78.13,59,2,41.42,41,36,61.69,35,250,126.27,101,250,57.67,59,60,90.34,46,250,177.31,204,250,107.2,57,250,60.91,61,62,46.97,49,55,106.04,86,250,60.39,61,61,57.37,58,61,70.31,42,250,40.14,43,3,107.18,134,6,57.09,58,58,97.02,87,250,59.98,59,59,54.37,37,2,73.31,41,250,103.77,93,250,41.01,28,4,57.21,59,60,62.95,30,10,143.97,173,250,57.04,58,58,70.73,44,15,67.68,61,52,54.94,56,58,34.48,36,43,45.02,44,27,58.52,57,58,56.24,57,59,89.92,42,250,53.07,55,58,101.23,66,50,59.41,59,58,67.2,56,20,62.89,63,63,56.89,58,58,56.42,58,60,112.32,127,250,56.72,57,59,55.82,56,55,55.96,55,57,72.95,23,7,121.24,101,250,59.91,60,60,56.52,53,60,64.83,65,66,57.14,59,61,56.82,57,58,42.8,27,3,66.02,66,66,56.35,58,59,59.69,59,59,57.03,58,59,54.96,55,58,62.92,59,61,47.53,50,51,62.22,63,63,231.21,250,250,53.59,55,56,58.01,59,59,50.65,53,56,58.62,59,60,6.18,4,2,59.82,60,60,60.12,61,62,56.34,57,57,54.86,56,58,56.58,55,54,90.23,54,250,56.63,55,58,54.9,57,57,53.49,50,57,55.86,55,57,56.96,59,62,106.34,53,250,60.8,61,62,59.49,54,55,56.58,57,60,64.19,61,61,56.48,58,62,58.6,54,54,56.05,54,55,77.99,45,250,55.11,56,55,52.2,55,56,59.04,57,58,62.41,63,63,55.04,54,54,98.49,80,250,69.44,47,250,100.84,73,250,42.51,39,2,59.41,51,55,61.73,63,69,53.52,53,52,107.37,61,250,75.89,72,2,57.76,59,60,80.1,42,250,63.99,42,250,58.92,60,61,69.66,55,250,60.19,37,250,69.5,54,2,50.13,49,51,58.16,54,54,88.18,50,250,55.53,53,52,59,60,61,65.12,50,7,100.44,76,250,58.43,59,61,59.75,28,250,120.26,115,250,78.7,45,250,56.16,53,57,31.22,29,2,43.27,40,30,78.34,60,27,0.95,0.03434 +VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,60.45,60,60,77.62,41,250,21.59,15,6,51.32,52,54,63.23,62,59,67.31,38,250,48.27,38,2,51.51,29,22,41.05,32,6,87.98,82,250,67.89,66,60,52.57,53,54,35.94,39,5,45.58,39,2,48.2,28,2,54.43,56,59,44.36,26,7,69.5,46,250,37.71,31,2,120.92,114,250,117.76,88,250,53.23,54,56,113.9,71,250,48.01,45,51,89.05,71,21,90.91,26,250,50.17,51,54,49.51,47,50,72.51,32,250,155.91,203,250,223.37,250,250,103.67,61,250,52.21,54,55,60.46,60,57,52.42,49,54,48.62,41,250,48.31,36,3,73.62,45,250,43.69,41,44,57.54,47,51,34.4,33,32,37.25,36,26,45.25,49,50,53.52,54,55,39.75,39,40,36.85,37,26,40.79,32,12,47.43,31,3,47.96,51,57,43.39,28,3,50.58,42,54,115.52,88,250,71.67,58,249,43.71,46,52,56.02,57,57,43.69,47,49,34.59,33,21,79.43,34,250,57.18,58,58,63.71,41,2,38.11,24,27,47.36,49,48,142.97,197,250,75.35,32,250,57.73,58,60,71.31,33,250,2.21,2,2,125.74,78,250,66.42,51,250,61.69,41,15,109.79,106,250,53.3,31,22,91.76,50,250,52.92,54,53,51.45,47,50,68.73,59,10,40.72,41,40,60.89,33,250,125.52,103,250,53.32,55,56,77.45,44,250,151.04,164,250,97.16,56,250,56.25,57,57,45.82,48,49,111.55,89,250,55.8,56,57,53.02,54,55,69.24,37,250,35.7,39,5,153.31,249,250,52.63,54,55,96.2,70,250,54.83,54,54,58.22,40,6,66.5,39,7,93.13,63,250,36.77,28,3,52.97,54,56,49.45,30,3,133.42,135,250,52.2,53,54,65.99,41,40,65.37,59,53,50.75,52,54,27.03,27,24,38.42,41,46,54.6,53,54,51.79,52,53,91.73,43,250,48.99,51,55,64.11,59,48,54.69,54,54,70.96,56,5,58.31,58,58,53.24,54,53,52.5,54,55,100.18,100,12,52.43,53,53,52.1,52,54,52.71,50,50,55.39,40,4,102.77,92,2,55.4,56,56,51.09,45,3,60.12,60,61,53.08,54,55,52.7,53,54,35,20,5,61.48,61,58,52.45,54,55,54.59,54,55,52.77,53,54,50.07,50,53,58.31,54,54,45.08,48,49,57.08,58,59,224.33,250,250,49.48,50,50,53.61,55,54,47.72,49,53,53.68,54,55,2.52,2,2,54.93,55,57,55.54,56,56,51.71,53,53,49.96,51,52,52.18,51,52,83.24,43,250,53.23,52,50,51.57,53,53,51.42,46,56,51.49,51,51,52.98,55,56,100.54,48,250,56.23,57,57,56.04,51,54,53.43,53,57,59.16,56,56,51.87,53,55,53.62,50,50,51.9,50,52,74.49,43,250,50.83,52,52,47.37,50,54,53.95,52,55,57.7,58,59,51.63,50,52,86.59,67,250,63.34,48,250,100.45,86,250,41.67,36,4,55.16,48,55,58.21,60,60,49.96,49,53,88.87,55,250,112.55,131,250,53.47,55,56,76.59,39,250,64.98,41,250,55.15,55,58,67.67,50,30,60.5,37,250,61.79,41,2,48.41,46,49,53.84,50,48,82.86,49,250,51.13,49,49,54.68,56,56,65.92,51,250,84.57,62,250,54.52,54,55,58.8,25,250,132,135,250,71.07,45,250,54.3,50,53,44.34,30,3,41.15,39,50,86.18,51,250,0.947,0.03435 +VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,56.54,57,57,71.09,38,250,20.1,14,5,51.95,52,50,59.66,59,53,61.48,38,2,60.79,49,2,55.96,42,2,47.65,42,27,75.51,74,250,61.23,61,61,50.98,52,53,32.32,34,2,46.15,38,8,47.35,35,2,54.64,57,57,49.44,26,250,69.98,49,250,36.35,35,2,120.37,112,250,108.28,70,250,51.28,52,53,111.51,72,250,48.7,48,54,51.94,45,6,76.65,28,250,49.75,52,57,49.63,50,56,75.03,36,250,163.07,228,250,134.8,134,250,104.6,77,250,50.55,52,52,56.01,55,49,53.48,49,50,51.35,44,44,40.29,38,14,70.49,49,250,41.89,40,51,55.16,44,48,32.9,32,28,37.97,37,57,45.11,49,49,51.9,53,54,37.5,36,31,36.41,37,30,47.8,32,9,47.37,30,29,43.45,46,54,39.57,23,4,45.94,40,48,108.93,102,250,80.27,73,250,41.99,44,48,53.75,55,55,42.7,47,49,33.98,32,25,79.13,36,250,50.16,53,55,69.87,49,250,45.61,34,5,47.63,50,50,147.41,217,250,78.2,32,250,54.38,55,55,70.6,32,250,7.49,4,4,125.4,107,250,68.74,50,250,64.8,39,16,108.17,90,250,52.49,32,250,90.18,42,250,51.42,52,52,53.5,49,48,76.91,73,2,37.96,37,40,62.09,33,4,121.64,79,250,51.37,53,53,70.24,36,250,148.36,181,250,102.45,51,250,53.87,54,55,42,41,45,101.91,79,250,53.38,54,55,51.57,52,53,64.76,37,2,37.09,41,5,82.43,101,12,51.27,52,53,81.41,66,250,53.67,53,54,59.3,35,6,76.15,32,250,123.13,124,141,33.43,24,2,51.08,52,54,58.52,30,5,100.99,89,250,51.25,52,52,64.56,36,9,63.32,59,50,49.57,51,53,25.57,26,29,48.11,45,44,53.38,52,53,50.69,51,52,92.2,45,250,47.6,50,52,88.55,64,3,53.29,53,53,68.6,47,3,55.44,56,55,51.51,52,53,50.29,52,52,89.88,97,21,51.21,52,53,51.82,52,52,51.06,49,51,81.88,38,4,135.45,169,250,53.02,53,54,48.81,47,2,56.12,56,58,51.63,53,54,51.12,52,52,39.65,28,3,57.24,57,56,50.6,52,53,53.85,53,52,50.98,52,53,49.67,49,52,55.74,52,52,43.55,48,50,53.95,55,54,223.33,250,250,49.05,50,51,51.27,53,54,46.23,47,50,52.33,53,55,4.71,4,2,53.54,54,53,53.18,54,55,50.89,52,53,49.79,50,51,51.89,51,51,85.28,49,250,52.12,51,51,50.5,52,52,47.84,43,48,52.3,51,52,50.77,53,55,96.43,48,250,53.71,54,55,54.94,49,47,50.65,51,53,56.19,53,54,50.94,52,54,56.2,50,52,53.71,50,48,75.2,42,250,50.26,51,53,47.1,49,50,53.44,52,54,54.99,55,55,51.46,50,50,82.8,55,250,68.78,46,250,111.66,100,250,43.87,35,4,53.56,46,47,51.14,51,50,49.27,48,50,81.27,34,250,60.96,53,47,51.34,53,53,72.97,37,250,65.18,39,2,52.97,54,54,66.34,44,250,56.68,35,250,59.55,40,3,47.47,45,51,54.89,51,50,85.24,44,250,51.36,50,51,52.45,53,54,62.62,46,4,83.78,59,250,52.92,52,50,64.57,35,250,124,119,250,69.25,43,250,56.38,50,50,43.3,31,2,42.72,39,5,77.39,60,11,0.947,0.03434 +VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,75.06,75,75,73.57,38,250,33.61,25,13,64.11,67,72,80.6,81,74,76.33,47,250,83.46,82,4,59.61,40,3,52.82,44,5,97,97,250,84.15,87,93,64.86,66,67,40.07,41,3,52.58,44,6,46.46,36,4,68.09,70,69,47.86,29,21,91.27,59,250,48.8,49,5,136.75,123,250,129.47,101,250,65.68,68,69,142.76,126,250,59.77,58,65,130.52,120,250,92.13,46,250,60.92,63,65,61.18,59,63,78.18,42,250,166.17,246,250,212.77,249,250,101.34,54,250,64.68,67,68,72.49,72,73,61.48,61,66,57.52,52,52,65.71,48,9,84.94,53,250,49.58,49,54,67.38,60,250,38.61,37,38,49.37,47,68,55.71,61,65,66.11,67,69,51.38,52,72,46.68,46,40,44.37,35,5,57.05,37,250,56.76,62,72,45.11,27,3,58.39,48,7,130.11,102,250,113.93,107,250,53.9,57,63,69.89,71,71,51.63,55,63,43.82,41,26,90.31,56,250,65.67,72,73,93.28,65,250,48.93,32,5,58.13,60,59,145.68,207,250,88.06,47,250,71.53,73,74,79.72,45,250,16.25,8,2,129.68,76,250,75.32,58,250,71.61,47,250,123.13,117,250,63.85,44,250,103.96,55,250,65.21,67,67,59.55,55,67,90.6,89,3,49.39,48,42,66.77,35,250,132.48,125,250,65.86,68,70,98.19,56,250,141.65,166,250,109.98,65,250,70.11,71,71,49.24,52,54,134.87,118,250,69.19,70,71,65.43,67,69,91.66,42,250,46.07,50,2,129.38,170,250,64.67,66,69,98.35,91,250,67.41,67,67,70.58,56,3,76.04,51,4,113.63,95,250,37.36,26,3,65.63,67,69,74.39,38,22,141.47,155,250,64.56,66,66,66.76,47,19,82.05,74,66,62.68,64,65,47.86,50,61,51.4,53,50,66.18,65,67,63.89,65,66,97.21,48,250,60.66,63,65,69.38,61,5,67,67,69,73.45,71,2,72.5,73,73,64.91,66,69,64.82,66,68,121.28,123,250,64.18,66,70,63.43,64,65,62.75,61,62,80.64,33,250,126.73,114,250,68.77,69,71,66.23,58,2,74.65,75,75,65.54,67,69,64.48,65,66,41.33,26,4,76.17,76,79,64.38,67,69,67.38,67,67,64.34,66,67,61.42,62,63,69.02,66,66,54.55,55,3,71.09,72,72,226.04,250,250,60.91,62,61,66.17,68,70,57.62,60,66,67.1,68,70,5.99,5,3,67.89,68,71,68.95,70,71,64.11,65,66,61.58,63,62,63.39,62,63,91.99,54,250,64.91,64,65,63.19,65,65,60.83,56,67,62.56,62,64,64.9,68,69,105.68,56,250,69.78,70,70,67.25,62,250,65.48,65,70,72.81,70,68,63.5,65,66,67.16,62,65,63.67,62,61,75.69,45,250,62.65,63,62,59.55,62,64,67.14,65,66,71.88,72,73,61.44,61,63,100.29,82,250,80.51,58,250,105.17,87,250,46.96,38,2,64.87,60,63,72.17,73,72,63.56,63,69,116.21,73,250,103.42,118,8,66.33,68,70,83.43,47,250,56.52,44,250,67.26,70,67,78.65,55,250,61.58,39,250,66.17,40,250,55.59,54,56,65.12,62,64,94.42,60,250,62.99,60,61,67.45,69,70,77.32,68,3,101.18,79,250,65.7,66,67,84.01,60,250,138.24,129,250,79.2,49,250,65.47,63,62,49.86,41,2,47.9,46,3,103.09,98,250,0.949,0.03429 +VBS46322-6321STDY9453322,75.5,77,78,77,78,79,81.13,82,82,79.93,39,250,39.99,31,12,70.1,72,76,84.1,84,85,87.38,56,250,77.91,67,6,59.39,42,40,64.51,61,3,148.27,184,250,91.63,92,85,72.47,74,76,45.03,46,2,56.15,44,4,60.07,47,6,72.63,75,74,58.96,36,2,92.15,68,250,52.1,48,3,148.25,161,250,137.06,113,250,72.67,75,77,143.12,110,250,67.97,70,78,111.28,89,250,102.22,56,250,70.68,74,76,72.47,68,70,76.97,46,250,171.61,248,250,222.27,249,250,126.23,94,250,72.24,75,77,79.63,82,85,70.85,70,73,63.09,60,250,72.79,66,11,84.99,63,250,59.56,59,62,72.62,67,250,46.18,44,45,56.08,55,35,62.27,70,76,73.61,75,77,56.57,58,72,51.56,53,78,63.09,51,6,48.02,37,5,64.1,70,79,63.37,32,8,65.89,56,8,129.57,125,250,104.25,96,2,61.15,66,75,76.6,78,79,61.85,66,67,47.72,44,34,86.62,51,250,72.71,76,75,95.75,75,250,56.83,37,250,64.42,68,70,149.4,236,250,79.91,31,2,77.98,79,80,82.18,48,250,4.42,2,2,125.31,84,250,82.76,69,250,72.82,57,21,143.2,165,250,61.15,42,250,115.27,83,250,73.11,75,76,64.28,63,14,114.23,96,250,53.54,54,65,73.01,41,250,145.07,130,250,73.19,76,78,101.99,63,250,196.18,250,250,117.57,74,250,77.07,78,77,60.47,64,74,116.29,101,250,76.25,78,78,73.25,75,75,101.63,62,250,55.1,63,4,148.11,227,250,72.42,74,77,118.63,107,250,74.92,75,77,84.21,48,250,64.64,38,250,123.26,122,92,43.87,32,4,72.92,75,77,80.29,46,7,146.7,180,250,72.78,74,76,70.55,57,12,88.12,79,62,69.91,72,73,63.2,64,2,51.23,54,71,73.97,74,76,71.28,73,75,101.29,53,250,67.89,72,74,45.26,43,27,75.07,75,76,98.5,77,37,79.39,80,80,72.6,74,76,72.24,75,78,151.38,195,250,72.2,74,73,72.88,73,72,70.25,70,72,86.31,29,250,135.65,155,250,75.48,76,77,70.13,65,13,80.65,81,81,73.25,75,76,72.43,73,74,46.67,28,4,82.55,83,82,72.09,75,76,75.48,75,77,72.7,74,75,68.69,70,76,77.88,75,78,58.94,65,67,77.31,79,79,227.39,250,250,69.24,71,73,73.37,76,78,65,68,71,73.24,75,77,4.32,4,2,76.38,77,77,76,78,78,71.96,74,74,71,72,73,71.98,71,72,98.77,63,250,72.58,72,75,70.82,74,76,64.94,61,71,72.8,72,74,72.04,75,78,109.22,60,250,76.98,78,78,75.09,71,250,72.63,73,74,80.84,79,80,70.81,73,77,74.31,71,73,70.54,71,73,84.48,59,250,71.57,73,75,65.59,70,75,72.75,73,76,78.82,79,79,70.64,70,71,107.83,90,250,83.12,64,250,128.01,125,250,61.62,53,4,75.19,70,250,77.04,79,76,69.02,69,72,105.59,56,250,111.31,130,12,73.41,76,77,86.77,54,250,75.24,55,250,74.2,76,82,84.31,66,250,64.56,45,250,68.4,38,250,64.28,65,71,78.1,73,69,96.62,62,250,69.96,69,72,74.41,76,77,78.88,59,2,116.86,103,250,74.44,75,79,79.68,57,250,146.34,142,250,79.97,56,250,76.8,70,70,49.08,37,3,58.43,54,5,117.72,98,250,0.948,0.03438 +VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,54.02,54,55,66.06,29,250,20.95,14,10,47.92,49,48,57.96,57,57,59.72,42,3,48.97,34,5,47.53,37,7,39.13,34,7,66.14,61,250,60.8,61,57,47.96,49,50,30.94,33,4,42.31,27,2,45.37,28,5,48.43,49,49,39.18,20,2,71.94,47,250,36.19,34,3,108.85,95,250,116.51,76,250,48.44,49,51,102.38,54,250,45.05,46,50,110.29,65,250,76.34,29,250,46.48,48,49,57.83,47,50,76.6,36,250,144.97,182,250,205.56,250,250,95.58,52,250,47.65,49,50,52.51,52,49,49.1,45,48,48.79,42,47,34.45,32,7,75.01,42,250,41.19,39,46,54.36,44,45,28.13,27,25,36.27,36,21,43.48,46,51,48.93,49,51,36.63,37,40,33.98,32,30,36.27,29,25,36.52,24,29,45.02,49,52,33.06,16,6,47.06,38,3,91.79,76,250,69.8,57,2,41.36,43,46,50.85,52,53,40.07,42,45,33.34,32,24,75.48,33,250,48.88,51,52,69.34,62,2,34.28,20,2,43.39,46,49,139.72,143,250,68.73,20,250,51.8,52,52,70.28,34,250,15.07,15,14,123.62,107,250,60.12,43,250,62.48,42,14,107.2,99,250,45.34,23,8,98.17,59,250,48.47,49,50,60.53,57,71,69.92,56,2,34.33,33,31,49.97,23,8,116.31,78,250,48.32,50,50,73.01,42,5,170.06,185,250,100.9,52,250,51.04,51,52,43.19,43,43,87.87,60,250,50.51,51,51,48.34,49,49,52.05,33,3,41.91,43,50,134.04,174,250,48.22,49,50,91.35,90,250,50.95,50,50,41.52,12,3,60.33,32,2,124.48,118,250,27.83,22,2,48.32,49,50,49.58,32,18,127.41,94,250,48.18,49,50,50.47,38,37,62.2,59,55,46.49,48,49,79.4,87,107,27.93,20,13,49.77,48,50,47.35,48,50,89.13,43,250,44.79,47,49,30.75,29,28,50,49,50,55.29,49,32,52.64,53,53,48.24,49,49,47.65,49,51,79.96,94,3,48.22,49,50,47.87,48,49,47.73,46,48,48.29,27,6,134.59,159,250,49.95,50,51,47,43,3,53.73,54,53,48.5,49,52,48.34,49,50,31.22,19,9,54.68,55,55,47.38,49,50,50.99,49,50,48.44,49,49,46.74,47,49,53.73,49,51,40.21,42,40,51.82,52,52,228.05,250,250,46.43,47,48,49.02,50,53,42.45,44,47,49.46,50,51,7.64,6,3,50.7,51,51,50.14,51,51,47.92,49,49,46.79,48,50,48.15,47,46,78.02,33,250,49.5,48,50,47.71,49,50,48.19,43,51,47.81,48,47,47.3,49,51,93.22,38,250,50.77,51,51,52.14,46,47,48.36,49,52,53.85,51,51,47.88,49,47,47.6,46,48,49.06,47,47,61.18,29,250,47.89,49,49,44.31,46,51,50.25,48,48,52.04,52,52,48.71,47,46,81.48,62,250,54.47,39,250,87.29,55,250,37.57,30,3,49.9,43,45,52.03,54,57,46.95,46,47,94.87,45,250,80.87,91,97,48.7,50,50,67.64,29,250,57.15,40,2,49.04,51,57,57.07,42,250,56.51,34,250,56.51,43,4,44.67,43,49,51.36,48,49,83.12,41,250,47.8,46,44,49.5,50,51,54.19,36,5,85.06,71,3,50.5,50,52,70.41,28,250,117.92,86,250,69.21,31,250,49.36,45,46,33.66,26,7,39.87,39,48,81.25,64,7,0.947,0.03426 +VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,50.36,50,49,62.09,30,250,26.69,22,3,43.77,45,46,53.11,51,49,53.14,32,3,79.49,40,250,49.61,40,15,35.91,29,2,67.21,66,85,55.84,57,57,44.89,46,46,27.1,27,3,39.95,29,4,38.64,29,9,45.03,46,49,38.53,20,11,63.11,43,250,30.31,30,4,102.37,88,250,113.6,85,250,45.24,46,47,103.94,64,250,42.18,42,45,88.47,73,3,83.42,27,250,43.1,44,45,52.34,43,44,70.95,30,250,161.81,249,250,177.9,196,250,98.22,58,250,44.8,46,47,48.32,49,55,46.22,42,45,43.78,36,37,58.12,36,3,73.95,41,250,39.08,37,46,52.22,42,250,28.2,27,25,33.74,32,21,36.75,40,40,45.94,46,47,34.31,34,38,32.19,32,21,33.66,28,3,40.67,22,17,39.32,43,50,37.13,20,2,44.88,35,3,104.89,90,250,66.23,57,2,38.31,40,44,47.46,48,49,37.2,39,43,30.46,29,25,75.88,31,250,46.29,49,49,71.06,56,2,34.31,19,4,40.95,42,44,137.88,164,250,64.41,26,2,48.59,49,50,63.9,28,250,3.2,3,2,111.34,61,250,56.88,40,250,39.94,29,13,106.12,64,250,43.94,26,2,85.66,36,250,45.45,46,47,33.21,20,17,81.58,69,2,32,32,32,52.81,19,4,109.76,71,250,45.24,46,47,73.34,39,2,120.4,111,250,100.19,62,250,47.69,48,48,37.85,39,45,84.76,57,250,47.28,48,48,45.43,46,48,55.93,32,2,37.89,37,5,115.73,134,2,44.98,46,46,82.71,82,250,47.51,47,47,54.96,33,2,46.69,29,5,98.19,95,79,32.39,18,3,45.18,46,46,47.03,21,8,89.47,69,3,44.74,45,46,62.37,37,11,56.12,53,46,43.51,44,46,33.47,35,34,41.42,41,3,47.05,45,46,44.54,45,46,82.28,35,250,42.2,44,45,58.13,48,42,46.64,46,47,62.72,54,30,49.09,49,49,44.98,45,47,44.4,46,47,98.1,101,4,45,45,46,45.14,45,45,45.66,43,44,66.88,35,2,119.6,90,250,47.29,47,48,46.06,45,52,50.16,50,50,45.19,46,46,45.36,46,47,31.21,19,3,50.53,51,50,44.91,46,47,47.28,46,46,44.9,46,47,43.83,43,45,50.26,46,45,38.68,41,46,47.97,49,49,224.88,250,250,43.31,44,43,45.34,46,48,41.05,42,45,45.86,46,47,4,4,2,46.95,47,47,47.01,48,48,44.46,45,46,43.15,44,44,45.46,44,43,82.19,45,250,46.14,44,45,44.5,46,46,43.06,38,44,45.04,44,44,44.42,46,49,93.97,41,250,47.64,48,48,50.92,44,46,45.03,45,46,48.19,47,49,45.29,45,45,45.56,43,42,45.41,43,44,70.15,36,250,43.58,44,43,40.43,42,45,48.25,45,45,48.74,49,49,45.37,43,46,80.81,58,250,60,41,250,81.55,59,250,37.61,30,3,46.39,40,40,47.23,48,47,42.6,41,46,93.38,46,250,97.22,111,116,45.71,47,47,69.8,39,250,48.61,35,2,46.44,46,51,54.93,41,2,51.43,30,250,50.25,25,2,41.38,40,44,45.72,44,45,85.2,41,250,45.1,43,42,46.28,47,48,59.94,45,7,84.4,68,250,47.04,47,49,55.38,29,250,95.25,70,250,55.1,36,10,44.9,41,38,33.24,23,3,36.95,33,2,81.23,59,250,0.946,0.0343 +VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,70.03,70,70,74.56,34,250,26.94,25,26,56.4,59,67,73.55,72,64,73.73,45,2,99.94,88,3,63.26,52,4,49.16,40,5,90.18,93,250,78.05,80,78,60.27,62,63,38.02,38,3,50,39,2,37.67,30,4,61.54,64,66,47.63,29,11,77.54,56,250,47.29,42,2,124.67,113,250,123.24,82,250,61.41,63,64,93.56,62,250,55.55,56,59,105.74,67,250,94.33,33,250,57.54,60,62,70.66,58,58,74.18,38,250,164.19,249,250,201.9,250,250,100.5,54,250,60.12,62,63,67.71,68,68,60.38,56,58,53.94,47,52,58.99,43,3,79.74,54,250,47.95,47,57,63.87,55,250,35.74,34,36,46.29,44,34,50.97,56,64,61.48,63,64,46.63,46,37,39.18,38,28,44.98,34,28,39.13,28,4,53.22,58,64,64.36,36,6,54.93,45,4,97.28,84,250,59.37,45,2,48.08,51,62,65.11,66,66,48.75,52,56,39.72,38,26,79.2,32,250,64.86,68,77,72.8,46,29,37.6,25,2,54.37,58,62,143.76,175,250,80.33,37,2,66.54,67,67,76.99,44,250,5.79,5,2,117.2,69,250,69.44,53,250,58.61,38,20,120.22,122,250,50.65,32,32,92.28,45,250,60.93,62,63,59,55,55,61.07,49,14,42.6,42,42,64.82,35,3,131.52,125,250,61.14,63,64,88.77,51,250,146.67,161,250,108.8,68,250,64.95,66,66,46.53,48,51,108.8,86,250,64.38,65,66,60.87,62,64,88.43,46,250,52.7,51,69,121.79,146,10,60.53,62,63,97.42,87,250,63.25,63,62,54.45,20,3,62.99,38,2,118.71,112,250,39.82,28,5,60.91,62,63,47.27,28,22,149.49,168,250,60.36,61,61,58.94,47,4,74.52,69,59,58.53,60,62,46.93,48,27,40.79,42,23,61.79,61,63,59.3,61,62,92.05,45,250,56.15,59,60,66.02,65,64,62.9,62,63,63.91,52,12,67.53,68,68,60.39,61,61,60.51,62,65,101.62,106,6,60.57,62,63,59.53,59,59,58.69,57,59,78.94,28,5,129.78,122,250,63.86,64,63,56.79,53,5,69.83,70,70,60.86,62,64,59.93,61,60,39.95,24,2,71.02,71,68,60.2,62,63,62.64,63,65,61.1,62,65,57.5,58,62,65.03,62,64,49.92,54,53,66.2,67,66,229.1,250,250,56.65,58,59,60.98,63,65,53.67,56,56,62.43,63,61,5.63,4,4,63.93,64,64,63.97,65,65,59.53,61,61,57.55,59,60,59.25,58,60,90.74,47,250,59.58,59,62,58.96,61,63,55.99,51,62,58.8,58,59,60.05,62,64,103.24,50,250,64.83,66,66,62.45,58,61,59.89,61,61,65.99,64,66,58.8,61,63,63.6,59,59,56.02,56,57,74.32,40,250,59.12,60,60,55.87,58,62,63.12,62,63,66.84,67,67,59.91,59,62,97.81,82,250,65.05,50,250,107.58,99,250,45.48,38,2,60.18,55,60,65.28,67,69,58.03,58,59,99.76,52,250,62.5,48,28,61.57,63,64,76.63,47,250,76.2,47,250,62.4,64,66,77.43,57,250,60.36,38,250,70.67,55,2,52.84,52,56,61.46,58,59,91.5,54,250,59.53,57,57,62.83,64,65,70.45,51,2,95.74,75,250,62.62,62,64,71.55,30,250,131.51,124,250,72.19,40,250,63.95,56,60,43.94,39,6,42.77,41,6,112.52,87,250,0.947,0.03439 +VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,62.65,62,62,70.16,39,250,27.55,24,4,50.73,52,53,66.37,65,67,70.08,41,250,63.95,55,8,59.95,38,3,51.34,41,28,101.25,104,250,70.18,70,71,54.25,55,56,35.09,36,2,46.98,41,2,35.47,22,5,56.11,58,59,46.68,27,250,71.51,49,250,42.48,40,26,95.98,80,250,123.51,79,250,55.17,56,58,114.54,70,250,48.24,49,53,119.57,55,250,84.44,29,250,52.26,54,54,49.14,49,54,70.6,35,250,117.75,139,61,201.74,245,250,108.62,80,250,54,55,56,60.76,60,57,52.58,50,49,51.22,45,46,36.16,28,7,78.6,47,250,41.37,40,44,58.94,50,57,33.09,33,28,40.75,38,26,48.25,53,56,54.96,56,57,40.86,40,34,36.89,36,33,36.83,33,3,59.97,51,2,47.9,53,54,41.77,29,4,49.8,41,61,105.82,92,250,70.79,57,3,44.52,47,51,58.1,59,59,42.71,46,49,36.67,34,29,79.19,31,250,54.69,60,66,93.2,77,250,42.38,27,10,47.36,50,52,145.99,193,250,72.03,34,11,59.93,60,61,72.35,40,250,21.98,18,2,121.62,65,250,63.5,45,250,50.77,37,11,108.88,95,250,51.91,28,13,85.36,49,250,54.7,55,57,37.31,24,24,71.34,63,5,40.53,39,38,56.01,29,6,127.39,100,250,55.17,57,58,90.79,54,250,153.01,188,250,109.83,58,250,58.28,59,59,42.42,43,43,99.3,72,250,57.73,58,58,54.51,55,57,63.24,36,250,39.9,44,7,107.49,133,4,54.02,55,56,98.44,85,250,56.94,56,56,62.31,44,2,50.98,31,3,72.82,62,2,30.01,21,6,54.75,56,56,60.31,44,12,150.26,156,250,53.61,54,55,91.8,53,250,66.74,61,55,52.42,53,54,59.82,67,2,37.2,37,37,56.24,55,56,53.72,54,55,92.43,44,250,50.81,53,55,97.01,57,50,56.14,56,55,62.48,49,3,60.27,60,60,53.82,55,55,54.32,55,55,78.28,73,9,53.46,54,55,52.81,53,53,52.97,51,51,79.74,41,3,123.34,125,250,57.57,58,57,54.45,49,2,62.57,62,61,54.21,55,56,53.42,54,54,50.39,34,7,63.05,63,62,53.65,55,57,56.84,56,57,53.7,55,56,51.91,52,53,59.87,55,54,44.06,49,53,58.75,60,60,231.15,250,250,50.46,51,52,55.2,56,58,48.48,50,54,55.96,56,58,4.05,4,4,57.17,57,58,57.48,58,59,52.58,53,53,51.88,53,53,53.08,52,53,88.41,54,250,54.5,53,55,52.05,54,54,49.07,44,50,52.26,52,50,53.92,55,57,88.22,54,250,58.08,58,59,58.76,53,57,55.04,55,58,57.99,57,57,55.24,55,54,53.17,51,52,54.97,51,55,79.88,43,250,52.24,53,50,49.56,52,52,56.11,53,53,59.74,60,60,52.62,52,52,81.06,59,250,68.26,49,250,91.9,64,250,42.26,31,2,55.72,48,250,59.88,62,68,51.39,50,49,82.07,37,250,60.28,49,43,55.13,56,58,75.38,39,250,53.47,37,250,55.86,56,60,65.28,45,250,58.71,34,250,53.4,31,2,46.83,46,50,55.66,53,56,78.21,44,250,51.56,50,51,56.32,57,58,61.1,51,5,84.67,62,250,54.31,54,53,60.44,34,250,122.47,108,250,71.8,46,250,59.76,52,48,28.3,24,4,42.76,42,47,94.8,88,5,0.948,0.03432 +VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,67.23,68,66,77.4,42,250,32.86,30,32,59.59,60,61,68.58,67,59,65.36,48,250,93.51,72,250,79.12,75,4,49.01,39,3,79.66,67,250,75.98,77,75,59.7,61,61,39.29,39,2,52.36,42,3,55.15,31,3,61.73,64,67,45.74,25,250,83.34,57,250,52.66,40,4,129.43,135,250,128.78,87,250,60.21,62,64,91.57,56,250,55.79,55,56,122.96,106,250,95.52,44,250,57.12,59,61,56.88,55,55,77.82,40,250,168.86,249,250,182.81,219,250,107.62,69,250,59.37,61,63,63.77,64,63,57.45,55,56,55.19,49,250,65.06,48,3,79.55,54,250,46.75,45,48,65.02,57,60,36.43,35,26,45.3,43,37,52.16,56,62,60.53,62,63,46.78,47,61,41.11,40,27,54.27,40,3,54.65,45,8,50.27,55,59,51.43,32,2,57.79,47,6,126.69,104,250,67.85,56,249,50.1,53,59,63.36,65,65,51.98,56,63,40.1,38,24,83.96,41,250,63.52,67,68,59.79,44,3,48.59,33,5,52.92,55,56,139.94,156,250,78.35,18,2,64.62,65,65,79.96,43,250,5.01,4,3,127.47,107,250,79.35,59,250,64.41,32,250,120.6,103,250,59.16,34,250,92.19,61,250,59.99,61,62,64.88,57,58,86.17,54,11,45.24,44,27,62.15,29,3,127.83,93,250,60.35,62,63,97.02,54,250,137.9,146,250,108.72,53,250,63.53,64,65,49.6,51,58,104.96,82,250,62.97,64,64,60.07,61,64,70.45,49,8,41.27,48,2,139.49,186,250,59.77,61,62,122.49,130,250,62.54,62,64,69.33,45,4,65.85,45,5,139.4,133,250,36.03,22,2,60.11,62,63,68.05,41,17,125.99,122,250,59.61,60,61,72.09,40,2,73.47,68,54,58.02,60,61,55.58,61,80,47.47,50,22,61.62,60,61,58.44,60,61,91.67,48,250,55.69,58,60,78.48,67,67,62.04,62,62,78.48,61,3,65.63,66,66,59.62,61,60,59.18,61,63,112.35,121,2,59.65,60,62,58.79,59,59,59.07,57,60,102.41,73,250,123.65,112,250,63,63,64,61.14,60,3,66.99,68,67,60.33,62,63,59.73,60,63,48.05,28,2,67.84,69,69,59.43,61,63,62.85,62,62,59.82,61,63,57.45,58,61,65.81,61,62,49.17,55,58,63.99,65,65,223.86,250,250,57.03,58,60,60.58,62,62,53.99,56,60,61.35,62,65,4.89,5,5,62.58,62,62,62.83,64,64,59.17,60,61,57.92,59,60,59.02,58,58,89.61,48,250,60,59,59,58.89,61,61,57.37,53,58,57.73,58,58,60.09,62,64,94.06,51,250,63.7,64,65,62.25,57,250,59.61,60,61,68.38,65,65,60.33,61,60,59.14,57,58,58.12,58,59,82.53,47,250,58.28,59,60,55.52,58,60,62.79,61,61,65.09,66,65,57.36,59,60,102.13,86,250,69.38,53,250,117.91,104,250,48.78,41,3,63.31,56,250,63.1,65,71,57.65,56,60,102.7,51,250,103.08,107,116,60.58,62,63,84.02,45,250,57.42,36,250,61.52,62,70,78.96,65,6,68.06,43,250,72.03,55,5,55.27,54,58,61.54,57,54,93.64,56,250,57.81,56,58,61.62,63,65,81.35,60,250,96.15,72,250,61.15,61,61,68.77,45,250,133.33,136,250,76.24,48,250,60.39,55,57,36.24,34,3,45.92,40,57,117.93,88,250,0.948,0.0344 +VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,60.81,61,60,72.23,36,250,28.84,22,3,53.21,53,56,65.6,64,58,64.13,44,250,101.1,84,250,57.09,41,39,40.39,31,21,76.19,71,13,67.9,67,65,53.04,54,54,34.9,35,2,46.74,38,2,47.67,35,4,56.52,58,59,57.98,32,250,73.43,46,250,39.72,33,3,112.32,99,250,120.86,70,250,53.6,55,57,122.35,83,250,47.34,46,50,117.01,104,250,79.73,31,250,51.62,53,53,65.5,51,250,75.9,36,250,129.16,150,51,152.05,146,250,110.57,75,250,53,54,56,59.63,58,50,52.87,49,49,50.74,43,45,40.15,31,6,66.75,50,250,44.66,42,47,58.19,48,250,34.22,33,31,40.02,38,23,46.27,50,53,54.07,55,55,39.55,40,36,36.35,36,32,49.17,34,2,50.93,32,250,46.09,50,58,44.53,26,2,53.42,42,27,113.34,106,250,55.05,35,250,42.71,44,48,56.68,58,58,44.3,47,51,35.8,33,29,77.76,32,250,56.24,58,60,54.53,41,8,41.02,25,2,47.91,50,52,140.44,138,250,65.72,21,2,58.14,59,58,74.74,38,250,5.98,4,2,119.65,96,250,69.32,52,250,57.71,33,20,118.45,117,250,57.01,35,2,103.94,57,250,53.48,54,55,54.96,51,52,79.78,62,3,38.66,38,35,58.54,30,250,123.5,91,250,53.76,55,56,80.51,44,250,187.88,236,250,109.24,59,250,56.85,57,57,41.53,41,47,102.21,77,250,56.29,57,58,53.5,54,56,69.5,37,250,52.32,47,2,143.34,186,250,53.42,54,55,108.03,104,250,55.75,55,56,55.37,22,2,80.59,47,250,87.63,63,250,29.48,20,2,53.25,54,54,53.29,28,9,113.88,75,250,52.98,53,55,75.41,43,12,64.63,57,54,51.73,53,54,54.28,60,7,42.03,43,58,55.33,53,53,52.63,53,55,91.3,42,250,49.57,52,54,30.83,28,27,55.13,55,55,69.41,53,2,58.57,59,59,53.05,54,54,52.71,54,54,90.2,100,10,53.45,54,55,52.19,52,52,52.69,51,51,82.72,43,250,145.74,182,250,56.2,56,57,51.4,47,2,61.03,61,62,53.95,55,57,52.98,53,53,44.15,27,3,61.84,62,61,52.63,54,55,55.89,55,55,53.04,54,55,50.84,51,52,59.58,54,54,48.34,48,48,57.47,58,60,232.11,250,250,50.4,51,52,53.56,55,55,48.07,49,52,54.67,55,56,3.31,3,4,55.71,56,54,55.95,57,57,52.18,53,55,50.96,52,54,52.83,51,50,81.38,41,250,52.99,52,53,51.31,53,55,50.25,46,54,52.21,52,51,53.01,55,53,103.47,50,250,56.59,57,57,57.82,52,52,55.63,55,55,57.07,57,59,53.02,53,53,54.39,51,53,56.76,51,54,74.51,37,250,51.9,53,52,48.83,52,55,54.35,52,53,58.1,58,58,52.98,51,50,93.99,76,250,64.87,44,250,108.3,92,250,43.09,36,3,55.73,49,250,58.42,60,64,52.4,51,53,104.63,52,250,63.72,49,40,54.25,55,56,74.64,40,250,62.97,39,3,55.06,55,60,59.63,44,2,62.09,37,250,57.97,49,3,49.83,48,50,55.22,51,52,88.79,50,250,53.59,51,51,54.9,56,57,70.08,45,250,75.58,57,250,54.85,54,57,74.34,38,250,129.31,116,250,75.11,38,250,55.46,50,49,39.22,28,3,43.4,40,53,98.31,61,250,0.948,0.03423 +VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,66.67,67,66,69.96,41,250,26.84,19,13,59.47,61,63,70.89,71,72,68.56,48,250,87.54,47,250,49.31,37,2,54.47,47,33,87.5,97,250,73.96,75,75,59.05,60,61,39.9,45,2,50.14,44,3,55.88,27,5,61.34,63,63,51.15,31,2,75.87,56,250,45.35,41,36,129.44,131,250,121.5,73,250,59.82,61,63,117.92,85,250,57.83,56,60,110.41,92,250,85.85,43,250,57.76,60,64,62.29,55,60,78.07,39,250,161.28,228,250,226.86,250,250,112.65,73,250,58.83,61,61,64.61,65,67,57.51,55,57,56.08,50,250,42.8,38,11,76.03,47,250,47.47,46,50,62.24,53,250,37.98,38,40,44.28,44,25,52.89,57,60,59.94,61,62,44.2,43,30,41.61,39,33,50.15,37,8,40.89,28,32,51.12,56,60,54.27,24,2,57.4,48,3,112.43,96,250,76.98,65,250,50.69,54,60,62.88,64,65,48.11,52,57,37.72,37,24,78.73,37,250,63.06,66,70,61.94,53,250,43.47,25,2,51.83,54,56,146.9,221,250,70.4,29,250,63.88,65,66,75.96,42,250,17.76,19,2,121.42,109,250,70.74,55,250,63.93,47,15,121.25,109,250,60.92,40,250,95.84,48,250,59.75,61,63,63.03,55,52,114.66,108,250,41.71,42,42,62.32,34,3,118.66,83,250,59.78,62,63,86.27,55,250,151.84,195,250,109.76,57,250,62.9,64,63,51.79,54,54,105.16,87,250,62.48,63,64,59.74,61,62,69.92,40,250,42,39,3,145.88,209,250,59.13,60,62,96.16,82,250,61.63,61,63,60.77,40,250,76.98,43,250,121.79,106,250,47.62,38,2,59.45,61,61,53.99,31,3,130.19,142,250,59.68,60,61,85.52,44,250,72.9,65,64,57.43,59,60,30.07,32,35,58.84,55,2,61.07,60,60,57.87,59,60,90.63,45,250,55.72,58,62,37.93,36,42,61.68,61,60,70.38,58,99,64.93,65,65,59.32,60,63,58.72,60,63,117.28,138,250,59.67,61,62,59.17,59,58,58.3,57,60,77.04,39,5,127.39,84,250,62,62,63,57.66,59,63,66.65,67,67,59.8,61,62,58.84,59,59,41.98,29,5,67.02,67,66,58.89,61,62,61.6,61,62,59.68,61,60,56.76,57,59,64.47,60,60,49.33,55,60,64.24,66,68,227.66,250,250,56.47,57,58,59.64,61,63,52.2,54,58,60.5,61,63,6.24,7,8,61.88,62,63,62.05,63,63,58.72,60,59,57.36,58,60,58.94,58,58,89.03,49,250,59.7,58,58,57.71,59,59,54.66,51,63,58.35,58,57,59.12,61,62,101.94,46,250,62.77,63,64,63.33,58,250,58.98,60,60,65.73,63,64,58.62,60,62,62.07,57,57,58.76,58,62,78.33,39,250,58.33,59,59,53.24,57,60,61.13,60,65,64.28,65,65,57.36,57,59,96.18,72,250,64.76,45,250,94.7,71,250,49.04,42,2,60.54,54,250,62.41,63,75,57.09,56,58,80.12,43,250,97.61,112,5,60.16,62,63,77.48,44,250,61.01,38,250,61.95,63,67,67.14,51,250,61.57,38,250,65.19,51,2,52.33,52,60,61.5,57,55,95.1,58,250,59.14,57,57,61.13,62,64,71.32,56,4,105.91,71,250,61.18,61,58,59.66,26,250,124.34,117,250,88.05,46,250,58.72,56,55,30.56,29,2,49.62,47,3,103.41,87,250,0.947,0.03439 +VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,73.51,73,73,80.04,51,250,21.87,17,6,58.65,61,66,76.35,75,74,72.94,50,250,78.99,80,6,63.92,44,26,51.53,43,2,93.51,90,250,84.99,85,77,62.48,64,64,39.38,41,4,51.51,41,2,50.12,40,2,66.11,68,73,43.53,27,250,82.37,56,250,42.86,34,5,119.22,100,250,128.03,89,250,63.95,65,67,112.29,72,250,53.78,54,64,81.18,33,11,74.28,27,250,60.15,62,61,68.62,58,250,78.17,41,250,142.25,167,250,134.07,136,250,106.34,61,250,62.56,64,64,71.37,72,71,59.16,58,59,54.96,48,250,82.48,49,250,83.03,53,250,48.65,47,52,63.95,55,250,40.39,41,44,48.38,46,36,51.89,57,59,64.06,65,66,48.28,50,50,43.53,42,30,45.82,37,20,55.56,34,250,57.59,63,70,55.07,26,5,62.37,50,250,105.96,88,250,109.4,105,250,52.27,57,63,67.59,69,69,53.02,57,65,40.67,39,25,83.67,32,250,68.28,71,72,68.47,54,35,46.91,33,38,54.36,57,57,141.96,185,250,85.96,36,250,70.4,71,71,78.32,44,250,5.44,5,2,124.19,67,250,72.95,57,250,70.44,44,250,127.87,130,250,62.27,35,250,112.07,80,250,62.97,64,65,43.63,27,30,86.56,78,5,48.65,49,53,66.13,35,250,127.74,94,250,63.27,65,66,88.55,55,250,138.81,142,250,107.78,60,250,67.82,68,68,47.76,51,58,107.54,97,250,67.11,68,68,63.15,64,66,73.37,39,250,53.27,50,49,138.49,175,250,62.32,63,65,102.44,88,250,65.36,65,65,59.76,39,4,64.22,43,6,111.82,99,92,32.83,24,7,63.43,65,66,66.08,33,21,129.55,119,250,61.45,62,62,56.66,44,13,74.68,68,55,60.56,62,65,49.52,37,19,47.23,48,47,63.81,63,63,61.59,63,64,93.24,44,250,58.42,61,63,41.96,40,22,64.55,64,64,69.87,59,4,70.18,70,70,62,63,64,62.1,64,66,140.43,169,250,62.22,63,66,60.21,60,62,61.86,59,61,79.86,28,250,132.88,152,250,66.81,67,70,64.09,57,4,73.06,73,73,63.27,64,65,61.35,62,64,30.53,15,5,74.43,74,72,62.79,64,66,64.69,64,67,62.29,63,64,59.3,60,60,65.88,62,63,53.12,56,58,67.99,69,70,234.72,250,250,57.28,58,59,63.18,64,65,56.25,58,62,65.08,65,63,2.84,2,2,65.31,65,66,66.97,68,69,60.95,62,64,59.86,60,61,60.68,59,63,92.41,51,250,61.87,60,61,59.73,62,63,61.87,58,60,59.47,59,56,62.09,64,67,107.13,50,250,67.7,68,69,65.83,61,66,62.8,62,61,68.62,67,68,59.91,62,60,62.7,58,58,60.27,58,59,71.63,39,250,59.57,60,60,56.11,59,64,63.6,62,64,69.63,70,70,59.69,58,59,102.77,81,250,73.88,54,250,100.51,75,250,55.7,38,3,62.08,57,250,69.24,70,64,59.56,59,62,113.21,48,250,125.1,148,250,64.16,66,66,81.24,49,250,61.72,36,250,65.68,66,65,71.49,46,250,63.08,39,250,60.37,34,4,53.78,53,56,63.06,59,58,93.69,58,250,58.44,56,57,65.43,67,67,70.82,61,4,85.11,64,250,64.13,64,62,83.92,65,250,127.42,116,250,79.71,45,250,61.33,58,59,43.7,37,6,49.99,48,59,111.79,113,250,0.947,0.03445 +VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,58.71,58,56,73.33,30,250,26.4,20,8,48.25,49,56,62.26,60,59,62.7,40,250,85.65,61,250,71.59,67,2,38.53,30,23,84.49,88,250,67.54,66,67,49.35,50,51,31.17,31,3,50.36,46,2,51.23,30,9,51.01,54,58,47.09,26,250,69,46,250,41.78,36,4,93.06,79,250,124.89,91,250,50.13,51,52,112.37,69,250,44.87,43,46,108.4,71,250,95.88,30,250,47.66,49,51,46.58,44,44,69.8,32,250,133.97,167,250,212.38,250,250,92.14,47,250,49.39,50,51,55.22,54,49,48.84,47,51,46.23,38,40,35.59,32,43,56.25,37,37,38.95,36,42,54.72,44,45,30.68,29,28,37.36,36,27,41.1,45,45,50.53,51,52,39.06,39,30,36.82,37,26,42.14,29,7,41.16,31,27,43.87,47,48,35.85,22,5,45.99,36,20,112.53,99,250,63.57,51,250,40.49,41,45,53.38,54,54,40.44,43,46,32.84,31,20,77.85,33,250,48.39,52,54,57.23,35,2,36.89,23,3,42.19,45,47,136.62,138,250,71.54,28,7,55.72,56,55,75.54,38,250,12.61,7,2,109.68,99,250,59.57,42,250,48.16,34,17,105.29,94,250,49.9,30,9,94.47,64,250,49.72,50,50,40.58,28,11,80.15,66,9,37.72,38,39,55.2,26,8,115.04,75,250,50.53,52,52,76.58,44,250,142.82,155,250,102.23,53,250,53.45,54,53,38.42,39,42,95.05,63,250,53.12,54,54,49.94,50,51,67.55,38,250,36.69,35,2,131.32,160,11,49.31,50,52,85.16,70,250,51.98,51,51,54.7,32,3,53.02,33,5,81.75,65,47,27.42,12,2,49.99,51,50,57.23,34,24,141.22,148,250,48.81,49,49,47.39,41,12,59.17,53,46,47.59,48,49,28.07,30,36,34.87,37,46,50.95,49,49,48.94,49,49,88.77,40,250,45.8,48,50,27.37,24,21,51.33,51,50,59.23,43,3,55.63,56,55,49.25,50,51,49.52,51,51,148.04,186,250,49.15,49,50,47.93,47,48,48.44,46,47,70.79,56,8,131.29,143,250,52.62,53,54,46.44,42,5,58.61,58,56,49.43,50,51,48.67,49,48,33.72,18,2,59.37,59,58,49.1,50,51,51.93,51,51,48.96,50,50,47.46,47,48,54.4,50,51,39.01,42,41,54.61,55,57,228.78,250,250,45.39,46,47,50.33,51,53,44.08,45,49,50.96,51,51,2.5,2,2,51.68,51,51,52.74,53,54,48.1,48,49,46.76,47,50,48.55,46,45,83.93,44,250,48.74,47,50,47.6,49,48,45.66,40,51,46.77,46,46,49.54,51,53,84.67,45,250,53.4,54,53,54.98,48,50,50.46,50,53,56.23,53,54,46.85,48,48,49.21,45,48,48.58,45,48,69.18,38,250,46.82,47,46,44,46,47,50.59,48,47,55.08,55,55,47.67,46,48,81.73,60,250,65.56,43,250,99.41,75,250,41.13,33,2,53.41,44,45,58.11,59,59,47.84,46,48,90.77,41,250,38.37,25,20,50.73,52,53,74.2,38,250,53.57,39,2,52.69,51,47,51,35,3,56.47,33,250,64,49,2,44.2,42,45,48.58,46,47,85.14,43,250,46.3,43,43,51.56,52,52,60.55,40,2,81.22,57,2,50.65,51,56,62.42,37,250,104.33,93,250,70,41,3,50.23,47,46,30.73,28,3,39.1,34,5,78.67,60,28,0.948,0.03424 +VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,35,35,34,55.47,23,250,16.85,12,3,29.14,28,27,37.35,37,38,45.18,23,7,32.31,30,3,38.85,26,17,25.19,19,6,58.59,57,68,38.2,38,39,30.12,30,30,21.88,21,2,31.38,21,2,32.93,21,3,31.3,32,33,40.43,16,13,54.64,32,28,26.29,24,24,82.24,71,250,82.81,47,250,30.78,31,32,89.8,46,250,29.2,26,27,54.94,32,5,62.09,15,250,27.77,28,26,27.79,26,27,50.9,22,10,120.05,157,22,185.35,244,250,81.83,37,250,30.56,31,31,35.06,35,34,32.16,28,30,29.96,19,20,23.63,21,2,55.56,29,250,27.67,24,26,41.47,28,29,23.02,22,18,24.53,23,12,26.25,27,29,31.46,31,32,23.41,23,19,22.57,22,28,25.04,19,13,26.76,17,16,29.22,31,33,30.57,22,5,33.1,26,29,82.62,63,250,46.69,32,4,26.54,28,30,31.71,32,32,24.88,26,27,21.43,21,14,75.51,23,250,32.82,35,37,40.27,29,16,30.64,17,3,27.08,27,27,128.32,148,250,52.9,15,6,34.83,35,35,58.51,23,7,8.71,5,2,79.65,37,250,48.65,32,250,30.06,20,6,80.36,71,250,34.92,17,6,81.44,28,250,31.23,31,32,32.21,16,16,71.52,56,7,22.49,22,24,51.41,21,3,100.44,64,250,31.17,32,32,55.48,28,3,98.49,97,14,96.82,40,250,33.51,34,34,27.57,27,23,70.18,49,7,32.3,32,32,30.81,30,31,43.28,24,9,26.04,24,28,112,153,5,30.3,30,31,63.75,49,250,32.54,31,31,43.32,27,2,43.45,24,5,62.29,57,27,22.37,15,2,30.77,31,31,34.75,22,9,115.04,122,2,29.53,29,30,38.12,30,20,41.87,38,32,29.63,29,29,19.58,20,18,23.36,23,12,32.73,30,31,30.5,30,31,73.24,24,250,28.67,29,29,39.12,36,36,31.87,31,31,40.62,38,21,33.45,33,33,30.02,30,31,30.94,31,32,43.07,42,12,29.34,29,30,32.77,32,32,31.47,28,30,44.75,35,3,103.48,67,250,32.69,32,33,30.39,25,2,35.66,35,36,30.89,31,31,30.39,30,30,25.87,16,2,34.69,35,34,30.72,31,32,30.6,29,27,28.75,29,29,29.46,28,29,35.73,30,31,23.55,24,26,30.65,31,32,235.66,250,250,28.65,29,29,30.26,30,30,29.79,30,30,30.96,30,30,3.19,3,2,30.1,30,28,32.62,33,33,28.81,29,30,28.55,28,28,31.69,29,29,70.13,31,250,29.54,28,29,28.75,29,30,30.96,26,32,29.95,29,29,29.48,30,31,67.36,34,2,32.91,33,33,36.32,29,29,28.54,27,26,34.07,30,33,28.95,29,31,30.94,29,27,33.31,28,30,48.78,26,10,27.39,28,28,26.56,27,27,30.77,28,29,33.36,33,33,29.8,27,26,61.45,43,250,43.67,28,29,61.66,39,3,30.42,24,21,34.33,26,26,33.43,33,30,31.79,29,32,71.31,36,250,57.42,58,60,31.09,31,32,59.29,27,3,42.47,24,4,32.67,29,29,42.28,28,3,42.8,21,250,42.85,32,2,29.9,26,29,30.75,27,29,62.06,28,250,31.34,28,28,31.26,31,31,38.73,30,6,58.43,46,22,31.56,31,33,58.48,17,250,80.16,69,2,47.35,27,5,34.46,30,29,25.16,22,14,25.61,21,19,44.29,35,34,0.946,0.03412 +VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,67.22,66,65,69.81,32,250,18.59,12,2,51.3,50,53,71.78,69,68,63.41,40,250,55.2,33,4,73.02,63,4,43.27,36,15,87.02,88,249,79.46,76,72,53.98,54,54,37.06,39,4,47.02,38,2,52.89,41,3,57.73,59,58,44.71,24,250,72.39,45,250,43.67,42,2,111.29,101,250,120.51,62,250,55.88,56,57,100.34,65,250,48.21,43,42,87.63,37,4,77.23,28,250,50.88,52,51,48.54,46,50,72.17,36,250,160.72,234,250,227.19,250,250,104.44,60,250,54.47,55,56,68.34,66,66,54.12,51,56,47.98,38,40,39.86,36,9,71.71,42,250,40.07,37,41,56.25,45,47,38.1,37,26,43.62,44,32,43.55,47,53,56.07,56,56,43.06,44,49,38.37,38,25,41.71,32,4,52.47,35,250,48.14,52,58,42.18,23,5,54.09,42,3,108.21,91,250,67.62,52,250,42.87,45,52,59.54,60,61,41.31,44,46,34.74,33,27,79.74,32,250,58.27,63,72,123.71,115,250,43.94,31,27,44.86,47,46,139.51,157,250,71.55,30,250,63.93,64,63,70.38,34,250,4.43,4,4,105.28,56,250,71.2,50,250,48.78,33,11,111.03,88,250,57.88,28,10,98.67,65,250,54.11,54,55,55.6,47,250,94.18,78,250,42.01,41,37,60.95,25,250,120.58,80,250,55.7,57,57,82.9,44,250,155.46,180,250,108.09,53,250,59.69,60,60,44.5,45,49,100.31,70,250,58.94,59,59,54.55,54,54,89.18,44,250,38.98,39,2,127.22,158,6,53.63,54,54,90.95,76,250,56.13,55,53,76.79,64,2,57.35,37,4,77.09,71,2,35.54,16,2,54.91,55,57,53.02,29,9,145.59,176,250,52.12,52,51,79.84,50,250,64.39,57,56,52.18,52,50,31.43,33,39,44.4,44,2,55.26,53,54,52.62,53,53,93.14,44,250,50.31,52,53,55.06,50,49,55.27,54,53,63.16,54,36,61.85,62,61,52.79,53,52,54.16,55,57,91.81,93,15,52.56,52,54,50.31,50,48,51.44,48,49,48.57,30,8,132.14,154,250,58.67,59,60,52.67,45,3,66.77,65,64,54.18,55,55,51.23,51,50,40.42,23,3,67.37,66,61,54.62,55,56,56.82,56,58,52.76,53,53,50.31,49,51,58.12,54,54,42.06,45,51,60.06,60,58,226.35,250,250,46.79,47,47,55.4,56,56,48.32,49,51,55.7,55,57,3.2,2,2,55.85,55,53,58.97,59,59,50.56,51,50,48.6,48,48,49.92,47,48,90.75,55,250,52.67,50,48,50.38,52,52,50.99,45,45,49.17,48,49,53.68,54,56,110,61,250,59.45,60,60,58.12,52,54,53.16,52,53,60.33,56,55,53.13,53,55,52.48,47,45,50.7,48,48,74.43,42,250,49.82,50,52,46.53,48,47,54.26,52,50,61.45,61,61,50.07,48,49,89.49,70,250,66.29,45,250,97.24,67,250,44.58,37,2,55.27,46,250,62.98,62,49,50.75,48,52,109.49,64,250,66.55,39,2,56.18,57,57,71.24,36,250,62.45,43,250,54.98,54,53,68.77,51,250,52.46,31,250,60.95,46,4,45.82,42,46,51.79,48,51,83.84,49,250,47.71,45,48,56.99,57,58,62.47,42,2,92.89,69,250,53.6,52,52,61.1,28,250,118.29,98,250,74.62,49,250,55.93,47,50,41.89,39,3,40.87,38,45,91.12,86,250,0.947,0.03442 +VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,65.78,66,64,69.47,30,250,28.23,22,6,55,55,59,70.07,69,66,76.5,57,250,84.94,48,250,49.85,38,29,50.88,44,24,81.48,78,250,72.16,70,69,55.96,57,58,34.45,35,2,46.4,36,2,39.9,28,17,59.45,61,61,44.52,27,250,74.75,51,250,38.3,30,3,121.99,108,250,122.97,86,250,56.78,58,60,114.18,74,250,51.68,52,2,116.65,67,250,91.73,40,250,53.38,55,56,60.78,51,53,71.45,35,250,163.74,249,250,130.63,128,250,101.69,54,250,55.89,57,59,63.85,64,61,54.04,51,59,52.14,45,44,37.98,37,13,76.37,49,250,42.93,40,42,60.18,50,250,35.83,35,35,41.48,40,56,48.4,51,54,57.28,58,59,43.55,44,54,39.92,40,27,45.81,34,7,45.7,34,8,48.56,53,58,52,26,4,54.14,43,2,123.85,92,250,86.86,77,3,48.03,50,58,60.3,61,61,42.84,46,50,37.97,35,29,81.61,40,250,57.37,62,64,67.07,61,250,40.07,26,28,49.45,52,52,141.04,177,250,68.3,29,9,62.53,63,63,73.88,36,250,14.95,13,2,123.15,63,250,65.82,52,250,64.76,45,17,107.46,101,250,57.68,34,34,102.97,65,250,56.35,57,58,50.03,41,24,104.16,107,3,41.86,42,46,58.04,28,3,132.81,102,250,56.86,58,59,79.21,43,250,196.08,249,250,104.14,53,250,60.33,61,61,47.1,48,48,100.18,73,250,59.99,61,61,56.48,57,58,88.64,40,250,47.93,47,5,117.61,147,10,55.97,57,59,92.01,92,250,58.02,58,59,58.72,35,2,69.02,44,10,98.18,82,250,40.62,33,2,56.57,58,58,60.14,40,6,148.07,140,250,55.31,56,56,73.95,49,16,69.52,62,53,54.47,56,57,72.01,77,104,49.6,42,24,57.34,56,58,55.09,56,58,90.07,45,250,52.19,54,57,62,56,48,58.15,58,58,61.75,53,25,62.7,63,63,55.85,57,58,56.14,58,58,73.48,76,8,55.67,56,58,54.55,55,55,54.83,53,54,73.54,34,5,142.19,161,250,59.54,60,60,49,49,51,65.42,65,65,56.41,58,60,55.54,56,56,37.33,26,3,66.63,67,67,55.97,57,58,58.54,58,58,55.79,57,56,53.12,53,53,60.54,56,57,47.15,49,52,61.26,62,64,229.09,250,250,51.4,52,54,56.8,58,58,50.17,52,52,57.86,58,58,5.68,5,2,57.91,58,59,59.49,60,61,54.41,55,56,53.05,54,55,54.88,53,54,88.61,52,250,55.86,54,56,53.75,56,57,53.55,50,58,54.28,53,53,56.27,58,59,105.48,51,250,60.3,61,61,59.76,54,55,56.23,56,57,60.26,59,56,55.21,56,59,56.27,51,52,54.12,53,55,73.47,38,250,53.19,54,53,49.35,52,53,57.13,55,55,62.07,62,62,54.62,53,54,91.69,74,250,68.86,49,250,91.75,63,250,47.25,38,2,59,52,250,63.52,65,70,53.26,53,54,104.28,55,250,97.8,109,3,57.42,59,60,78.04,43,250,56.19,39,2,59.76,61,64,64.59,44,250,57.57,33,250,66.58,51,3,50.48,49,53,58.02,54,56,90.94,51,250,51.86,50,54,58.22,59,60,68.06,45,250,79.56,65,2,56.74,57,57,71.43,33,250,127.81,110,250,69.68,43,250,58.22,54,59,34.24,29,2,43.15,42,5,95.69,78,3,0.948,0.0343 +VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,71.46,72,71,70.42,34,250,30.4,26,2,62.54,64,66,73.86,75,73,79.04,53,250,127.7,115,250,50.42,38,3,50.13,40,4,103.22,111,19,82.45,83,85,62.31,64,65,43.13,45,3,52.88,45,2,42.42,30,5,65.8,69,74,52.74,31,250,113.99,113,250,51.46,54,31,122.22,115,250,118,83,250,63.33,65,66,122.98,85,250,55.75,57,59,114.56,55,250,76.33,28,250,60.14,62,62,58.45,56,59,79.91,45,250,156.45,196,250,195.57,248,250,119.73,97,250,62.12,64,65,68.87,69,65,60.04,58,60,57.61,53,58,46.41,43,5,76.29,53,250,50.71,50,57,65.38,57,58,39.38,39,43,46.9,47,31,55.25,59,63,63.39,65,66,45.06,46,41,45.19,44,38,50.29,35,15,46.65,32,2,54.92,60,68,51.33,24,4,59.52,50,66,125.25,99,250,66.06,44,2,52.42,55,62,66.87,68,69,52.16,56,59,43.99,43,65,87.33,47,250,63.07,68,72,120.01,106,250,47.59,27,3,55.49,58,60,149.35,233,250,84.83,37,12,68.02,69,69,81.17,48,250,16.92,11,2,132.18,129,250,74.76,59,250,67.86,47,19,128.74,126,250,52.03,34,250,101.61,62,250,62.94,64,65,57.39,53,50,84.55,74,6,47.68,47,41,67.57,42,4,130.53,94,250,63.18,65,66,97.55,65,250,161.24,175,250,104.77,64,250,66.86,68,68,56.9,62,71,104.67,76,250,66.31,67,68,63.08,64,66,68.4,37,250,45.52,46,9,93.33,110,5,62.5,64,65,99.83,90,250,65.16,65,65,49.76,18,3,58.16,35,6,95.87,70,250,28.25,18,4,63.05,65,66,63.64,42,30,137.09,143,250,62.48,64,65,79.33,50,20,77.37,71,56,60.73,62,64,58.15,61,72,61.81,56,23,64.2,63,64,61.32,63,65,98.65,62,250,58.48,61,64,76.38,64,57,64.72,65,65,67.22,53,3,69.36,70,70,62.8,64,65,61.63,64,65,99.52,109,9,62.2,63,64,61.36,62,62,61.13,60,62,77.88,44,5,123.73,80,250,65.71,66,66,65.13,60,2,71.04,71,68,63.4,65,68,62.16,63,63,39.34,20,10,77.33,75,72,61.73,64,66,64.19,64,64,63.66,65,64,59.89,61,63,66.72,63,65,52.3,58,64,68.6,70,72,233.83,250,250,59.3,60,60,62.83,65,67,55.41,58,62,64.44,66,67,9.02,9,15,65.69,66,68,65.94,67,68,61.64,63,64,59.68,61,61,61.63,60,60,83.71,40,250,63,62,62,60.99,63,63,56.92,54,62,61.11,61,61,62.54,65,68,101.94,47,250,66.79,68,68,66.57,61,250,91.21,96,100,68.52,67,68,61.74,63,62,61.79,60,64,59.89,59,58,75.88,39,250,61.29,62,65,56.47,60,62,65.02,63,63,68.77,69,69,60.38,60,62,97.33,81,250,66.98,52,250,107.54,83,250,45.09,39,2,63.14,58,250,69.72,73,76,60.29,60,63,92.73,33,250,162.78,195,250,63.51,65,67,83.87,51,250,65.98,41,250,64.58,65,67,67.55,54,8,70.37,43,250,66.77,52,2,52.44,53,58,62.53,59,60,94.4,59,250,60.47,59,62,64.77,66,67,72.75,49,250,103.52,77,250,64.35,65,66,68.24,44,250,138.22,143,250,82.66,43,250,66.62,60,63,46.76,37,2,45.91,43,6,81.96,68,3,0.95,0.03436 +VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,58.7,59,58,75.63,38,250,22.3,17,6,52.65,53,56,58.92,59,59,64.84,37,2,75.03,47,5,45.23,35,2,38.31,29,19,80,81,2,66.2,67,71,51.36,52,53,32.83,34,3,43.62,34,2,49.1,30,3,52.86,54,53,47.21,27,3,66.31,46,250,45.18,44,2,107.52,89,250,115.19,63,250,51.77,53,54,116.34,79,250,46.08,47,53,115.86,59,250,80.82,30,250,50.98,53,51,58.63,49,48,67.61,33,250,162.65,249,250,219.12,250,250,106.97,74,250,51.2,53,54,57.56,56,56,50.81,47,55,49.18,42,41,34.87,30,2,72.44,45,250,42.81,41,44,57.46,47,49,30.66,29,26,37.76,34,22,45.88,50,54,52.21,53,54,38.58,39,34,34.78,35,21,43.92,34,31,47.65,32,30,46.31,51,54,38.43,22,2,48.78,39,7,94.55,73,5,55.07,36,2,40.7,42,49,54.76,56,56,41.02,43,47,33.25,30,21,76.77,34,250,52.45,55,59,60.66,54,11,47.18,35,6,46.05,49,51,139.88,199,250,72.23,18,15,56.07,57,58,72.07,36,250,6.44,3,2,116.39,52,250,68.94,52,250,43.75,29,21,107.86,93,250,51,30,250,86.4,35,250,51.7,52,53,43.91,34,36,102.04,87,4,38.66,39,45,58.47,30,6,116.52,79,250,52.11,53,53,77.18,45,2,117.97,120,250,99.9,50,250,54.88,55,55,44.35,45,54,102.04,71,250,54.46,55,55,51.84,53,54,65.52,33,2,72.28,86,3,138.15,170,250,51.55,53,54,85.5,72,250,54.01,53,54,62.21,38,2,65.97,42,5,90.66,65,250,37.83,28,5,51.76,53,53,55.23,33,3,140.22,177,250,51.12,52,53,65.04,32,11,65.73,59,51,49.89,51,53,50.49,53,71,39.1,40,26,53.47,52,53,50.65,51,53,89.28,43,250,47.97,50,52,53.38,53,59,53.73,53,53,59.4,53,6,56.94,57,57,51.19,52,52,51.21,53,53,89.28,98,10,51.27,52,53,51.26,51,52,51.23,49,51,59.93,34,9,124.38,139,250,53.86,54,54,54.68,48,2,58.41,58,59,52.13,53,54,51.26,52,53,37.42,24,2,58.77,59,58,51.12,52,53,53.87,53,53,51.29,52,54,49.64,49,50,55.88,52,55,44.89,48,50,55.59,57,57,226.67,250,250,48.96,50,51,52.05,53,53,46.15,48,50,53.3,54,55,3.08,3,3,53.94,54,54,54.09,55,55,50.84,52,52,50.02,51,51,51.61,50,50,78.92,37,250,52.56,51,50,50.08,52,52,47.89,44,52,50.04,50,53,51.54,53,54,100.01,48,250,54.8,55,55,56.14,50,52,51.32,52,52,57.71,54,55,51.31,52,52,51.15,49,52,53.6,51,52,74.5,36,250,50.01,51,52,46.66,49,51,54.26,52,52,56.13,56,56,51.38,50,50,90.72,65,250,60.73,41,250,94.38,69,250,41.92,37,2,54.01,46,250,53.95,57,60,49.19,47,52,93.69,46,250,42.67,31,29,52.19,53,54,76.03,42,250,60.04,39,2,54.14,53,53,67.5,53,250,67.49,40,250,49.13,28,2,47.61,45,48,53.65,51,52,81.7,43,250,51.04,49,50,52.97,54,55,64.22,55,2,73.72,51,2,53.24,53,53,60.85,37,250,115.06,105,250,72.23,39,250,51.28,50,56,35.25,30,2,38.62,35,2,88.14,68,30,0.948,0.03428 +VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,48.85,49,49,67.09,31,250,22.73,19,6,42.55,44,44,48.18,48,42,54.01,37,10,84.24,50,3,47.79,37,2,35.53,28,13,68.37,53,3,48.94,49,48,43.61,44,45,29.96,31,2,39.98,32,2,33.98,28,5,45.71,48,50,43.61,22,5,64.74,38,250,31.56,28,15,92.11,78,250,118.76,80,250,44.34,45,46,93.92,56,250,38.78,39,45,54.08,37,3,83.76,25,250,43.02,44,47,54.73,41,41,64.88,28,250,130.56,164,42,192.92,245,250,103.26,68,250,43.67,45,45,48.51,48,45,43.88,41,45,44.43,35,31,30.09,30,5,65.72,34,250,35.67,33,37,50.6,40,43,27.72,26,26,32.86,32,31,37.58,40,41,44.65,45,46,34.15,34,36,31.19,31,27,32.55,27,4,34.43,22,19,36.36,39,43,37.65,21,5,44.02,34,43,103.79,85,250,86.76,94,9,36.42,38,16,46.49,47,46,35.43,37,39,28.12,27,28,75.32,30,250,44.75,47,48,66.57,48,6,32.11,21,20,40.58,43,44,138.48,173,250,66.58,21,5,46.71,47,47,67.13,29,250,5.41,3,2,98.43,54,250,57.53,39,250,42.93,26,11,90.34,84,250,47.37,25,8,84.9,50,250,43.98,44,45,57.66,51,62,51.67,40,8,31.56,31,28,54.17,24,4,109.3,64,250,44.28,45,46,59.34,36,5,142.67,147,250,94.65,46,250,46.44,47,47,38.62,38,36,76.62,58,30,46.16,46,47,44.34,44,45,47.8,26,5,47.41,41,2,131.85,162,250,43.96,44,45,84.24,70,250,46.07,45,46,43.91,24,2,54.09,27,3,51.26,49,32,26.04,18,4,44.23,45,46,44.8,29,2,85.86,81,4,43.91,44,44,44.73,33,2,53.96,49,42,42.08,43,44,23,22,21,32.96,33,44,45.91,44,44,43.01,44,45,79.94,34,250,40.93,42,44,60.14,46,41,45.7,45,45,50.17,38,4,47.99,48,47,44,44,45,43.52,44,44,79.24,82,2,43.87,44,44,43.61,43,43,44.11,41,41,44.97,33,4,127.89,120,250,45.84,46,46,49.36,42,43,49.15,48,47,44.48,45,46,43.49,44,44,27.38,15,2,49.72,50,51,43.58,44,46,46.09,45,45,43.88,44,43,42.58,42,43,48.85,45,47,39.09,37,39,47.67,48,48,228.55,250,250,40.93,41,42,44.11,45,45,38.93,39,43,44.34,45,45,7.42,6,4,46.33,46,45,45.98,46,47,43.24,44,44,41.99,43,44,43.8,42,42,79.07,40,250,44.69,43,43,42.05,43,44,42.49,38,42,43.07,43,45,43.94,45,46,90.26,46,250,46.46,47,47,47.65,41,44,46.09,46,47,50.27,47,47,43.64,44,43,45.18,42,41,45.11,42,44,66.35,36,250,42.89,43,44,40.56,42,42,45.78,43,41,47.51,48,47,44.16,42,45,79.46,60,250,56.75,39,3,83.2,60,250,38.93,30,28,47.79,40,42,47.96,49,48,42.77,41,40,99.22,51,250,45.2,30,31,44.45,45,46,69.27,34,250,47.31,33,2,46.48,47,48,50.99,37,34,47.39,27,250,47.8,27,2,39.98,38,40,45.68,42,43,84.57,43,250,43.8,41,41,45.15,46,46,61.48,46,3,68.24,53,250,45.45,45,47,59.44,32,250,111.29,91,250,56.86,35,11,48.97,42,45,27.36,19,6,35.31,33,40,70.67,55,2,0.946,0.03426 +VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,52.88,53,52,72.79,34,250,27.4,23,21,46.52,47,47,55.14,53,53,54.95,37,4,44.94,49,2,57.24,49,46,39.94,33,9,81.6,73,250,58.89,59,59,46.95,48,49,30.12,30,2,43.8,37,3,38.62,35,6,47.03,48,50,38.66,23,250,70.89,44,250,40.09,37,2,119.61,108,250,103.98,61,250,47.21,48,50,118.95,87,250,47.52,45,46,96.95,52,250,75.26,30,250,45.6,47,50,54.73,45,44,74.44,35,250,153.14,205,250,171.15,170,250,94.84,52,250,46.78,48,48,48.94,49,51,47.39,43,43,45.47,39,3,52.09,43,4,65.45,40,250,38.78,36,42,53.64,43,40,28.61,27,18,34.95,34,50,39.58,43,45,47.76,48,49,35.94,36,31,32.68,32,33,37.97,33,22,39.23,25,21,41.71,46,50,43.6,27,6,46.03,38,39,103.68,91,250,68.73,54,2,38.9,41,51,49.59,50,51,40.7,43,44,31.86,30,23,77.25,31,250,46.99,51,51,74.88,41,250,38.55,19,3,43.6,45,46,136.7,123,250,80.7,40,250,50.77,51,51,73.37,36,250,14.5,14,6,98.13,89,250,62.75,47,250,41.23,34,7,105.15,87,250,56.87,31,19,87.18,54,250,47.41,48,48,47.15,43,46,81.68,55,6,33.64,32,26,57.74,28,250,114.18,79,250,47.44,49,50,77.21,39,3,117.85,106,250,106.28,47,250,50,50,50,41.38,42,44,97.74,78,250,49.54,50,50,47.44,48,49,71.53,37,250,42.46,43,2,102.98,140,14,47.09,48,48,96.16,87,250,49.58,48,49,50.58,27,5,51.46,34,4,73.48,63,52,29.99,22,2,47.08,48,49,67.45,47,10,123.72,121,250,47.05,47,49,50.09,39,8,58.57,53,43,45.76,46,47,49.95,57,63,34.76,34,38,49.09,47,48,46.79,47,48,84.2,34,250,44,46,48,54.77,50,21,49.24,48,49,46.77,45,51,51.4,51,51,47.01,48,47,46.73,48,49,65.95,71,17,46.97,47,48,46.47,47,47,47.41,45,47,81.77,42,250,131.77,146,250,49.37,49,48,48.32,45,2,53.13,53,52,47.65,48,49,47.33,47,48,30.26,17,3,53.55,54,53,46.42,48,48,50.08,48,49,47.05,48,49,46.33,46,47,52.08,48,48,42.27,44,46,50.36,51,52,233.69,250,250,44.8,45,45,47.41,48,50,42.31,43,47,47.83,48,48,3.51,3,2,49.18,49,50,49.09,50,50,46.41,47,47,45.74,46,48,47.76,46,46,81.45,38,250,46.96,46,49,46.32,48,50,46.48,42,45,45.48,45,45,46.9,48,50,92.64,41,250,49.75,50,50,51.5,45,46,48.14,48,49,54.49,50,49,46.32,47,47,49.91,45,45,49.78,45,46,65.81,30,250,46.54,47,46,43.22,45,45,49.74,48,48,50.98,51,52,46.86,45,45,91.5,72,250,57.37,40,250,86.49,56,250,42.06,34,23,51,42,43,50.5,51,53,45.87,44,44,87.36,45,250,80.31,80,4,47.54,49,49,71.52,39,250,55.98,40,2,50.13,50,50,61.06,42,6,51.66,29,250,54.22,44,3,43.02,40,42,47.06,44,47,80.96,44,250,47.21,44,44,48.23,49,50,61.24,43,9,84.64,56,6,48.44,48,46,70.99,29,250,101.36,75,250,71.25,33,250,50.64,46,45,33.94,24,6,37.59,34,19,67.79,56,5,0.948,0.03421 +VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,65.99,65,63,70.52,31,250,21.1,14,3,51.65,53,56,71.4,69,68,59.17,39,3,86.06,75,2,48.55,31,10,45.6,40,8,87.67,71,250,80.02,79,82,53.91,55,56,37.89,39,2,46.17,36,2,47.26,31,2,57.68,59,59,42.15,24,9,75.84,49,250,49.91,40,3,112.08,99,250,121.22,96,250,55.71,57,57,85.78,56,30,48.86,46,54,125.79,89,250,85.34,34,250,51.76,53,54,50.68,47,46,73.56,35,250,148.61,189,250,200.73,227,250,100.7,50,250,53.83,55,56,63.47,61,54,50.43,47,52,50.98,43,45,34.67,31,2,66.78,40,250,41.56,39,42,58.51,48,250,33.1,33,34,41.97,40,22,44.58,48,48,55.67,56,56,42.16,42,31,37.66,37,34,39.32,31,6,45.15,27,4,48.51,52,56,50.92,25,3,53.22,46,55,112.89,82,250,77.49,65,3,43.94,45,58,59.32,60,59,42.19,44,47,36.48,33,25,80.84,32,250,56.96,63,70,73.31,66,8,38.91,23,21,46.61,49,48,145.45,239,250,78.96,31,250,62.24,62,61,78.91,41,250,5.71,4,2,111.19,92,250,68.39,53,250,45.64,31,14,117.26,116,250,48.44,29,9,90.83,45,250,54.3,55,57,39.76,26,16,68.53,57,6,39.95,40,40,62.01,32,2,123.7,90,250,55.63,57,57,77.48,37,250,132.59,139,250,105.05,50,250,59.25,59,58,47.3,47,52,95.76,67,250,58.66,59,59,54.6,55,57,55.7,32,2,38.69,41,4,138.37,180,250,54.25,55,55,82.42,53,250,56.73,56,57,49.44,20,2,55.41,33,8,116.39,108,250,27.09,15,2,54.66,56,57,64.63,40,8,128.84,140,250,53.17,53,54,64.65,45,11,64.67,60,55,52.76,53,54,34.04,35,16,43.64,44,45,55.68,54,55,52.71,53,55,91.27,45,250,50.39,52,55,38.93,36,33,56.29,56,55,67.35,57,18,61.93,62,61,54.01,55,55,54.93,56,57,70.56,76,25,53.54,54,54,51.19,51,52,52.94,50,50,50.2,25,3,128.06,141,250,57.95,58,58,53.25,48,2,66.07,65,63,55.11,56,57,52.65,53,54,36.55,22,5,67.41,67,64,54.38,55,57,55.39,55,57,53.78,55,55,51.16,51,54,59.59,55,54,44.54,48,54,60.41,61,61,229.27,250,250,48.62,49,51,55.01,56,57,46.45,48,50,56.6,57,59,5.42,5,5,56.74,56,56,58.41,59,59,52.47,53,52,50.26,51,52,51.63,49,49,81.47,43,250,53.58,52,53,50.94,52,53,53.01,48,53,50.62,50,51,54.19,56,55,86.11,42,250,58.98,59,60,57.76,52,55,54.4,54,57,60.66,57,55,52.84,54,52,51.77,48,47,52.51,49,49,65.96,32,250,50.88,51,49,47.6,49,51,55.1,53,54,61.38,62,61,52.52,50,51,90.37,66,250,60.18,40,250,92.68,68,250,34.72,31,3,55.27,48,51,65.4,66,77,52.77,51,51,94.83,39,250,59.65,53,53,55.9,57,58,75.73,40,250,59.94,37,8,59.26,59,54,61.17,43,250,74.97,42,250,61.35,50,6,45.29,44,46,55.42,52,49,88.25,47,250,49.75,48,47,57.1,58,58,55.72,36,6,81.87,63,250,54.91,55,56,72.91,31,250,108.27,87,250,70.13,37,250,54.81,47,45,34.85,31,4,40.94,40,56,75.77,61,5,0.946,0.03436 +VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,62.29,62,60,72.81,34,250,24.12,22,27,50.73,51,51,65.17,63,58,66.38,38,250,80.82,50,250,49.52,41,36,41.52,34,2,70.18,61,250,73.48,73,79,51.53,52,54,35.17,37,2,46.69,40,3,46.46,36,2,54.25,56,58,39.61,21,14,74.46,46,250,42.02,36,2,101.5,96,250,124.07,102,250,52.96,54,55,105.3,68,250,48.36,49,51,110.4,58,250,87.86,26,250,49.57,51,53,47.69,46,46,68.35,32,250,166.92,249,250,168.98,189,207,93.2,45,250,51.55,53,52,61.02,60,56,48.11,46,53,47.48,39,42,31.65,28,4,69.62,42,250,39.06,37,44,55.94,46,46,32.72,32,23,37.88,36,23,42.76,47,51,52.91,53,54,39.99,41,48,36.88,37,49,44.85,31,5,36.92,25,25,46.23,51,54,38.63,16,3,48.43,41,45,116.27,86,250,53.49,33,4,41.56,44,51,56.3,57,57,41.55,45,51,34.66,34,24,77.24,32,250,56.28,60,62,55.05,45,7,40.18,26,8,44.19,46,47,137.2,145,250,65.57,23,14,59.05,59,58,72.42,36,250,13.01,10,2,91.55,70,250,63.88,44,250,54.01,37,18,107.19,96,250,48.03,29,2,95.92,50,250,51.9,53,53,42.07,29,9,113.56,96,250,40.43,39,32,58.21,25,12,131.91,122,250,53.08,54,55,82.7,45,250,133.83,121,250,105.62,59,250,56.24,57,57,43.02,44,53,88.18,64,250,55.77,56,56,52.03,52,53,62.34,32,24,38.84,43,3,141.15,183,250,51.58,52,53,89.98,74,250,54.21,53,54,55,35,5,54.93,33,2,77.7,44,250,34.23,27,9,52.16,53,53,51.75,32,11,148.79,193,250,50.75,51,51,67.76,39,4,61.35,54,43,50.03,51,52,40.92,44,61,40.17,41,50,52.84,51,52,50.18,51,53,87.2,41,250,47.98,50,51,36.1,37,44,53.33,53,53,64.39,51,3,58.7,59,58,51.24,52,54,51.73,53,52,120.23,136,250,51.07,51,51,49.55,49,49,50.47,48,48,77.13,34,250,123.68,116,250,55.05,55,55,47.83,44,2,62.17,61,60,51.63,53,54,50.24,50,50,33.13,22,6,62.92,63,62,51.33,53,53,53.73,53,53,51.24,52,53,48.89,48,50,56.33,52,54,39.39,43,49,57.72,58,59,227.64,250,250,47.08,48,47,52.74,54,55,46.13,47,51,54.1,54,53,5.56,4,2,54.26,54,53,55.44,56,56,49.86,51,52,48.48,49,48,49.76,48,48,85.51,50,250,50.08,49,50,49.08,50,49,48.8,44,48,49.46,48,49,52.01,53,55,94.12,46,250,56.08,56,56,54.59,49,49,52.14,52,54,58.43,56,55,50.69,52,52,50.75,47,48,50.27,49,51,74.76,41,250,49.1,49,49,45.31,47,53,53.4,51,49,58.01,58,58,49.94,48,51,84.54,65,250,62.68,45,250,92.72,71,250,38.76,30,2,54.3,46,250,63.39,65,65,48.96,48,52,93.58,49,250,98.93,115,2,53.15,54,55,74.63,36,250,48.17,32,3,54.66,55,56,58.25,45,2,55.65,30,250,60.8,51,4,44.9,42,44,49.53,46,45,80.24,45,250,49.21,46,47,54.38,55,55,56.47,37,4,86.3,57,250,53.91,54,60,59.62,25,250,115.18,96,250,78.26,40,6,43.49,43,19,26.28,24,5,39.41,36,29,94.09,71,10,0.948,0.0343 +VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,57.22,57,57,63.95,32,250,23.36,18,5,46.62,47,54,60.28,60,58,55.3,36,2,37.02,38,3,49.84,33,20,36.71,28,13,71.46,59,250,66.41,66,65,46.56,47,48,29.16,31,2,41.45,35,2,40.34,24,8,51.05,52,52,44.79,26,250,61.71,40,250,36.43,34,2,123.36,126,250,112.6,77,250,48.26,49,49,112.66,77,250,41.69,40,43,108.15,82,250,78.72,34,250,43.5,44,42,41.43,39,38,69.62,29,250,160.53,246,250,200.41,223,250,99.52,61,250,46.2,47,48,54.61,53,51,45.5,41,43,43.49,35,35,32.18,31,6,63.73,37,250,36.56,33,34,52.89,42,48,32.72,33,33,38.3,35,18,39.45,43,46,48.05,48,48,39.01,38,29,32.87,33,40,34.09,27,25,36.77,25,23,42.62,45,54,42.17,23,4,42.29,37,41,99.39,82,250,56.75,40,250,38.83,40,44,51.46,52,52,36.07,38,38,31.96,30,17,77.55,30,250,47.02,51,56,50.81,38,21,40.98,22,2,38.42,40,39,131.58,111,250,62.15,20,2,53.94,54,54,69.57,34,250,4.02,3,2,104.79,50,250,55.22,39,250,59.91,45,6,99.28,98,250,50,25,24,86.93,60,250,47.08,47,48,44.72,33,13,61.26,53,3,35.9,35,20,57.04,23,2,119.62,90,250,48,49,49,74.38,38,2,92.96,64,250,99.26,48,250,51.23,51,51,38.13,38,44,96.93,69,250,50.85,51,51,47.32,48,48,75.27,36,250,35.8,33,2,128.78,164,250,46.72,47,47,75,66,250,48.86,48,47,55.13,26,2,45.85,28,6,88.62,82,57,26.92,16,2,47.27,48,49,44.65,36,13,132.85,108,250,45.56,46,46,79.54,41,250,55.92,51,43,45,45,45,31.6,28,21,31.43,32,24,48.05,46,46,45.88,46,46,88.17,36,250,43.4,45,47,57.25,44,31,48.6,48,49,50.56,46,29,53.54,53,53,46,46,46,47.58,48,50,76.92,72,5,46.36,46,47,43.55,44,46,45.95,43,44,82.8,36,250,126.15,138,250,49.85,50,49,52.51,44,2,57.16,56,56,46.88,48,49,44.92,45,46,46.43,30,3,58.35,58,55,46.94,48,49,49.29,48,49,46.15,47,47,44.54,44,45,50.82,47,46,36.84,40,43,53.08,54,56,224.92,250,250,41.7,42,41,47.76,48,48,41.47,42,45,48.72,49,50,5.45,4,3,49,48,47,50.45,51,51,44.86,45,46,43.18,43,43,44.76,42,44,79.15,36,250,47.15,45,45,44.33,45,44,45.14,40,41,42.07,42,39,46.58,48,49,88.45,41,250,51.03,51,51,51.14,44,47,46.74,47,49,51.97,50,49,45.09,45,46,44.39,41,44,47.01,43,44,71.45,33,250,43.51,44,45,41.48,43,43,48.62,46,46,52.92,53,52,44.38,42,42,80.59,53,250,60.13,40,250,87.05,56,250,35.72,29,2,50.6,42,46,56.11,57,62,44.62,43,45,86.82,34,250,62.33,60,58,48.25,49,49,68.66,34,250,50.56,35,6,49.33,48,47,53.48,40,250,60.39,32,250,53.99,28,2,41.16,38,44,46.81,44,43,75.08,39,250,43.27,40,43,49.47,50,50,53.87,42,2,76.13,47,250,47.79,47,47,57.15,32,250,106.96,89,250,58.63,32,250,48.64,44,42,28.34,26,2,33.97,31,41,75.89,55,3,0.947,0.03431 +VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,71.7,71,70,75.93,45,250,27.92,17,11,57.49,60,67,74.75,74,81,70.05,49,250,84.16,85,5,58.09,47,2,54.91,47,27,81.58,78,250,81.53,81,78,60.18,61,62,36.53,37,2,48.74,40,3,42.16,35,2,62.76,65,68,47.71,29,250,87.81,55,250,48.98,46,2,120.83,119,250,132.18,112,250,61.37,63,64,109.76,78,250,53.26,53,56,113.52,65,250,74.23,45,250,57.72,59,60,59.56,55,57,75.53,35,250,165.67,241,250,168.17,178,250,113.31,78,250,60.37,62,64,70.98,70,64,57.25,54,59,52.17,46,250,39.22,35,2,77.43,49,250,46.01,45,49,63.73,55,56,38.29,36,35,45.18,45,68,51.19,57,60,61.91,63,64,45.88,45,42,44.19,44,43,41.77,35,35,52.32,36,2,53.57,59,60,57.83,30,3,56.24,43,28,129.54,114,250,58.42,43,2,48.07,50,58,65.58,67,67,47.62,51,53,42.22,42,57,80.87,37,250,61.68,69,75,87.5,69,2,43.43,32,2,51.68,54,53,131.62,141,250,82.98,30,250,68.15,69,69,76.22,40,250,5.34,5,2,111.22,76,250,72.13,54,250,52.8,35,18,124.96,132,250,56.59,36,13,100.63,73,250,60.76,62,63,53.55,53,57,89.42,63,250,44.68,44,47,65.85,34,250,129.22,105,250,61.73,63,65,78.16,45,250,197.53,249,250,111.3,64,250,65.43,66,66,49.19,51,55,100.97,73,250,64.93,66,66,60.86,62,62,75.05,42,250,40.68,44,3,154.41,238,250,60.2,61,63,93.49,72,250,62.54,62,63,66.78,36,250,62.76,37,11,153.25,153,250,40.09,27,4,60.9,62,63,54.54,35,5,132.69,145,250,59.37,60,61,67.46,46,14,73.28,67,65,58.58,60,62,47.08,38,23,55.34,55,2,61.2,60,62,59.16,61,62,86.89,41,250,56.32,59,62,87.1,54,13,62.33,62,62,67.53,58,2,68.1,68,68,60.76,62,61,60.46,62,63,94.54,99,2,59.95,61,63,58.41,58,58,58.92,57,60,77.41,39,2,136.75,159,250,64.36,65,64,54.16,56,60,71.61,71,69,60.78,62,64,59.04,60,61,40.46,23,7,72.47,72,69,60.45,62,63,62.62,62,63,60.5,61,63,56.82,57,59,64.08,61,64,49.73,55,58,66.54,68,67,227.67,250,250,55.38,56,56,61.1,63,63,53.41,56,61,62.85,63,61,3.25,3,2,63.35,63,63,64.55,66,66,58.58,60,60,57.15,58,60,58.12,57,59,92.53,51,250,59.7,58,60,58.25,60,61,56.22,53,59,57.06,56,55,59.93,62,66,102.6,55,250,65.42,66,67,63.32,58,250,59.95,60,63,68.14,65,67,58.79,60,59,58.42,56,57,57.3,56,60,69.52,39,250,57.12,58,60,52.78,55,54,61.5,60,60,67.31,68,68,57.94,57,59,103.28,75,250,65.99,45,250,105.92,88,250,40.7,35,4,61.06,55,250,68.61,71,76,57.24,56,58,101.12,44,250,104.18,118,250,61.97,63,64,80.11,43,250,65.51,45,250,62.41,63,68,62.65,46,2,65.81,39,250,67.31,53,2,52.4,50,56,59.27,56,60,90.95,52,250,57.07,55,52,62.95,64,66,69.17,50,3,111.79,84,250,61.95,62,62,80.63,45,250,119.58,113,250,64.84,39,250,59.77,56,58,46.04,36,4,47.26,45,2,93.9,74,250,0.95,0.03433 +VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,60.55,60,59,79.83,36,250,28.49,23,4,46.43,47,48,67.47,65,62,66.18,39,3,110.02,81,250,61.86,34,2,43.08,37,2,93.65,92,250,67.63,66,63,48.98,49,49,35.5,37,2,44.9,38,3,61.71,29,2,53.44,55,63,51.77,27,250,72.24,44,250,53.47,35,2,131.58,134,250,107.46,73,250,50.85,51,53,115.29,71,250,40.18,37,43,116.49,94,250,74.18,23,250,44.29,45,44,47.78,42,43,75.29,37,250,150.34,202,250,218.27,249,250,109.05,69,250,49.5,50,51,62.27,61,57,48.21,44,47,40.96,31,2,61.65,44,5,69.64,43,42,37.19,34,36,53.48,42,250,34.5,34,37,41.17,41,21,41.66,45,49,51.17,51,50,40.43,42,49,37.3,38,47,45.15,32,4,49.46,35,34,46.52,50,55,53.79,24,2,51.23,39,24,114.48,78,250,56.97,38,250,41.09,42,48,53.18,54,54,39.48,41,40,33.85,33,22,77.13,32,250,57.79,60,60,106.07,103,250,50.23,27,250,39.35,41,43,143.37,156,250,81.71,39,250,59.34,59,58,72.06,32,250,4,4,4,97.23,56,250,68.88,45,250,50.83,36,28,122.81,112,250,52.56,30,250,120.14,69,250,50.13,50,51,57.51,45,53,71.81,59,32,40.02,40,43,64.35,33,250,119.9,89,250,51.93,53,54,99.2,51,250,142.6,169,250,99.36,54,250,55.18,55,56,43.4,43,45,101.84,82,250,53.54,54,53,49.67,49,50,65.81,43,41,39.14,42,51,129.26,173,250,48.66,49,48,88.42,69,250,51.3,50,50,69.81,45,3,66.59,38,6,90.3,71,250,30.61,18,3,50.18,51,50,74.79,52,27,145.15,186,250,46.37,46,46,90.5,52,250,60.71,56,54,48.52,49,49,56.66,58,72,42.91,45,43,51.36,48,48,49.11,49,51,90.72,45,250,46.19,48,50,55.39,48,43,50.51,49,48,79.95,53,5,56.01,56,55,47.86,48,48,50.88,51,51,100.53,110,10,47.59,47,48,48.78,48,47,49.22,45,43,93.91,50,250,124.64,110,250,53.54,54,56,53.34,40,37,61.32,61,62,49.39,50,49,47.4,47,48,51.97,34,2,60.42,60,58,49.93,51,52,50.45,49,51,46.8,47,46,47.52,46,48,53.73,48,47,36.63,37,35,52.37,53,56,229.64,250,250,43.7,44,44,50.36,51,53,47.8,48,49,51.52,51,49,,2,2,49.48,49,47,54.05,55,54,45.87,46,44,44.59,45,44,47.06,44,44,92.25,48,250,47.69,45,46,45.33,47,47,49.26,43,51,44.74,43,44,47.4,48,50,101.1,64,250,54.87,55,54,55.96,49,51,48.03,46,47,54.53,51,53,48.18,47,45,46.36,42,45,45.64,41,40,83.85,48,250,43.05,44,46,42.59,42,39,48.03,45,45,55.99,56,57,46.23,43,44,96.8,83,250,69.95,46,250,104.33,94,250,42.49,34,5,49.66,41,43,59.47,59,64,47.61,45,47,118.57,71,250,76.01,67,64,51.26,52,52,76.31,39,250,61.06,38,250,52.31,51,53,76.71,56,250,65.71,36,250,58.77,33,13,42.4,38,38,45.37,42,42,85.37,47,250,44.64,40,39,51.87,52,52,74.17,48,250,83.25,69,250,47.72,47,47,75.88,54,250,116.89,104,250,74.59,49,250,48.35,43,38,41.94,36,8,36.28,34,39,91.07,89,250,0.946,0.03425 +VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,43.14,43,43,64.94,26,250,25.61,20,8,38.37,39,40,42.5,43,44,54.12,29,21,47.25,52,5,53.01,37,35,32.07,27,2,62.26,53,250,43.94,44,41,38.65,39,40,26.14,26,2,39.34,33,2,32.43,21,2,40.13,41,39,40.72,20,250,61.33,36,250,33.49,30,3,85.17,70,250,112.89,84,250,39.16,40,40,88.68,54,30,35.58,34,38,83.27,41,4,68.59,23,250,37.56,38,40,37.75,34,34,54.06,24,2,117.26,145,38,149.11,162,167,92.3,60,250,38.38,39,40,41.56,41,36,39.94,36,39,39.81,31,35,27.66,26,3,60.08,33,250,32.16,29,34,47.49,35,36,23.31,22,17,30.5,29,22,34.52,37,38,39.17,39,40,29.23,28,18,27.61,27,20,29.68,25,20,33.19,22,14,32.98,35,40,33.38,16,4,39.27,30,19,87.23,68,250,54.99,38,250,30.94,32,41,41.01,42,42,31.58,32,31,25.84,25,21,72.45,26,250,38.8,41,42,47.63,35,3,33.32,20,3,35.65,36,34,130.52,128,250,68.37,23,13,41.39,41,42,64.98,26,250,5.14,4,2,94.41,73,250,52.18,32,250,39.57,19,13,93.85,91,250,49,28,5,92.88,48,250,38.73,39,40,40.22,33,33,57.24,48,2,28.83,28,24,52.87,22,2,99.1,54,250,39.1,40,41,77.75,43,10,131.25,135,250,96.34,39,250,41.12,41,41,31.73,32,38,74.36,48,36,40.87,41,41,39.18,39,40,52.04,27,2,33.01,31,2,128.53,152,250,38.83,39,41,74.88,56,250,40.77,40,40,40.75,28,2,49.68,26,5,49.45,41,2,21.34,12,2,39.05,40,40,38.71,24,3,129.91,144,250,38.53,39,39,44.15,30,7,49.02,45,39,37.1,38,39,73.07,83,2,29.64,30,33,40.82,39,38,38.26,38,40,79.72,30,250,36.18,37,38,29.64,31,40,40.63,40,40,49.71,38,2,42.55,42,42,38.74,39,39,38.56,39,39,95.7,106,5,38.99,39,38,38.05,38,38,39.45,36,39,52.15,25,3,121.61,133,250,40.46,40,40,41.23,34,42,43.22,43,42,39.05,39,39,38.72,39,38,27.63,17,3,43.77,44,44,38.45,39,40,40.79,40,41,39.04,39,39,38.09,37,38,44.43,39,39,31.05,35,37,42.19,43,43,228.5,250,250,36.32,37,38,39.22,40,40,34.69,35,36,39.69,40,40,4.4,3,3,40.92,41,42,40.49,41,41,38.2,39,40,37.23,37,37,39.35,37,36,75.44,35,250,39.49,38,38,37.67,39,40,37.35,33,38,38.22,37,36,38.44,39,40,80.23,37,250,41.05,41,41,43.72,37,38,40.3,40,40,44.54,41,40,38.57,39,39,39.61,37,39,39.38,36,38,60.66,31,250,37.77,38,39,35.49,36,41,41.12,38,36,42.04,42,42,38.71,36,37,72.65,53,250,52.27,35,36,78.26,58,250,28.57,26,3,44.15,34,32,40.54,41,44,38.47,36,39,84.66,45,250,79.35,84,85,39.08,40,41,64.48,30,250,49.76,32,3,41.18,40,44,47.52,35,17,50.56,27,250,42.1,22,3,35.5,33,33,40.66,38,39,66.89,33,250,37.63,35,36,40.04,40,41,47.43,38,4,56.53,44,5,40.67,40,40,65.46,44,250,106.78,85,250,60.52,33,19,39.53,37,36,30.54,25,3,31.79,31,34,54.89,47,2,0.945,0.03424 +VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,75.11,75,75,71.31,39,250,37.02,31,30,60.14,63,63,79.29,78,74,81.78,55,250,65.89,68,5,74.79,61,2,53.74,47,2,99.31,104,250,85.17,85,82,64.04,65,66,40.71,41,2,53.28,41,5,56.48,48,3,68.76,72,75,51.1,33,250,85.14,57,250,48.82,50,3,134.13,142,250,126.68,88,250,65.45,67,69,111.4,80,250,58.1,56,2,134.55,126,250,75.56,47,250,61.15,63,67,72.55,61,250,81.61,44,250,157.89,198,250,223.95,250,250,107.91,67,250,63.79,66,67,74.13,73,69,62.86,61,68,58.69,53,250,67.04,53,2,78.62,54,250,52.02,51,57,68.01,59,250,40.35,39,42,49.17,50,71,53.77,59,61,65.34,67,68,49,50,72,46.7,46,33,52.11,41,7,51.85,37,2,56.5,61,60,55.03,32,2,62.65,50,250,113.6,105,250,66.46,53,2,53.61,56,59,68.97,70,71,54.14,58,63,43.21,41,27,83.66,42,250,62.93,68,73,76.73,65,5,59.09,38,250,54.5,57,62,138.05,157,250,70.83,24,250,71.3,72,74,78.57,41,250,17.54,10,3,118.9,68,250,69.76,55,250,74.97,52,25,127.62,144,250,63.9,41,2,103.27,59,250,64.39,66,67,64.52,59,61,101.35,58,250,46.61,47,50,66.65,35,250,128.03,103,250,65.48,67,68,95.17,57,250,144.74,172,250,110.35,62,250,68.93,70,71,49.02,52,57,107.18,87,250,68.49,69,70,64.78,66,68,81.66,51,250,55.34,56,2,156.6,217,250,64.01,65,66,108.82,98,250,66.77,66,67,55.48,22,2,67.99,34,5,103.89,81,250,42.08,24,8,64.5,66,67,66.19,39,22,155.44,205,250,63.78,65,65,72.78,45,26,79.69,70,60,62.26,64,64,84.04,92,111,40.09,39,41,65.04,64,66,63.32,65,67,91.09,46,250,59.54,63,65,51.26,57,60,66.48,66,67,76.25,68,3,71.95,72,72,63.73,65,66,64.14,66,66,118.78,133,250,63.57,64,65,62.81,63,63,63.04,62,64,67.24,49,9,127.05,80,250,67.87,68,68,63.54,57,2,75.09,75,75,64.85,66,67,63.6,64,65,43.79,26,20,76.16,76,77,63.35,65,66,66.42,66,65,64.26,66,67,60.81,61,63,68.7,65,66,53.9,59,73,70.35,72,73,224.92,250,250,59.38,61,61,65.13,66,65,57.38,60,62,66.77,67,65,8.65,8,2,67.49,67,67,68.14,69,70,63.09,64,64,61.1,62,63,62.27,61,64,96.13,57,250,63.5,62,64,62.54,65,66,60.86,58,67,61.54,61,61,63.49,66,66,102.13,51,250,68.92,70,70,66.66,61,250,65.08,66,69,71.27,68,71,62.52,65,66,64.6,60,62,59.9,59,64,75.53,40,250,62.05,63,64,57.54,60,64,65.36,64,64,71.06,71,72,61.4,60,60,109.43,91,250,71.67,53,250,99.26,80,250,50.38,44,3,67.51,59,250,76.06,77,77,60.36,60,63,95.24,43,250,99.46,101,106,65.53,67,68,78.18,45,250,65.27,44,250,67.97,68,71,76.84,57,250,67.29,42,250,63.29,41,2,55.16,56,60,64.28,61,61,100.91,63,250,61.17,59,56,66.77,68,69,76.12,56,250,97.93,72,250,64.74,65,66,83.71,39,250,134.24,133,250,75.81,49,250,65.09,60,62,45.6,36,5,51.95,51,60,122.8,131,250,0.948,0.03438 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv new file mode 100644 index 000000000..d7514da1a --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv @@ -0,0 +1,48 @@ +sample_id,run_ena +VBS46299-6321STDY9453299,"ERR5967855, ERR5967879, ERR5967903" +VBS46300-6321STDY9453300,"ERR5967861, ERR5967885, ERR5967909" +VBS46301-6321STDY9453301,"ERR5967867, ERR5967891, ERR5967915" +VBS46302-6321STDY9453302,"ERR5967873, ERR5967897, ERR5967921" +VBS46303-6321STDY9453303,"ERR6045486, ERR6045509, ERR6045532" +VBS46304-6321STDY9453304,"ERR6045492, ERR6045515, ERR6045538" +VBS46305-6321STDY9453305,"ERR6045498, ERR6045521, ERR6045544" +VBS46306-6321STDY9453306,"ERR6045504, ERR6045527, ERR6045550" +VBS46307-6321STDY9453307,"ERR5967856, ERR5967880, ERR5967904" +VBS46308-6321STDY9453308,"ERR5967862, ERR5967886, ERR5967910" +VBS46309-6321STDY9453309,"ERR5967868, ERR5967892, ERR5967916" +VBS46310-6321STDY9453310,"ERR5967874, ERR5967898, ERR5967922" +VBS46311-6321STDY9453311,"ERR6045487, ERR6045510, ERR6045533" +VBS46312-6321STDY9453312,"ERR6045493, ERR6045516, ERR6045539" +VBS46313-6321STDY9453313,"ERR6045499, ERR6045522, ERR6045545" +VBS46314-6321STDY9453314,"ERR6045505, ERR6045528, ERR6045551" +VBS46315-6321STDY9453315,"ERR5967857, ERR5967881, ERR5967905" +VBS46316-6321STDY9453316,"ERR5967863, ERR5967887, ERR5967911" +VBS46317-6321STDY9453317,"ERR5967869, ERR5967893, ERR5967917" +VBS46318-6321STDY9453318,"ERR5967875, ERR5967899, ERR5967923" +VBS46319-6321STDY9453319,"ERR6045488, ERR6045511, ERR6045534" +VBS46320-6321STDY9453320,"ERR6045494, ERR6045517, ERR6045540" +VBS46321-6321STDY9453321,"ERR6045500, ERR6045523, ERR6045546" +VBS46322-6321STDY9453322,"ERR6045506, ERR6045529, ERR6045552" +VBS46323-6321STDY9453323,"ERR5967858, ERR5967882, ERR5967906" +VBS46324-6321STDY9453324,"ERR5967864, ERR5967888, ERR5967912" +VBS46325-6321STDY9453325,"ERR5967870, ERR5967894, ERR5967918" +VBS46326-6321STDY9453326,"ERR5967876, ERR5967900, ERR5967924" +VBS46327-6321STDY9453327,"ERR6045489, ERR6045512, ERR6045535" +VBS46328-6321STDY9453328,"ERR6045495, ERR6045518, ERR6045541" +VBS46329-6321STDY9453329,"ERR6045501, ERR6045524, ERR6045547" +VBS46330-6321STDY9453330,"ERR6045507, ERR6045530, ERR6045553" +VBS46331-6321STDY9453331,"ERR5967859, ERR5967883, ERR5967907" +VBS46332-6321STDY9453332,"ERR5967865, ERR5967889, ERR5967913" +VBS46333-6321STDY9453333,"ERR5967871, ERR5967895, ERR5967919" +VBS46334-6321STDY9453334,"ERR5967877, ERR5967901, ERR5967925" +VBS46335-6321STDY9453335,"ERR6045490, ERR6045513, ERR6045536" +VBS46336-6321STDY9453336,"ERR6045496, ERR6045519, ERR6045542" +VBS46337-6321STDY9453337,"ERR6045502, ERR6045525, ERR6045548" +VBS46338-6321STDY9453338,"ERR6045508, ERR6045531, ERR6045554" +VBS46339-6321STDY9453339,"ERR5967860, ERR5967884, ERR5967908" +VBS46340-6321STDY9453340,"ERR5967866, ERR5967890, ERR5967914" +VBS46341-6321STDY9453341,"ERR5967872, ERR5967896, ERR5967920" +VBS46342-6321STDY9453342,"ERR5967878, ERR5967902, ERR5967926" +VBS46343-6321STDY9453343,"ERR6045491, ERR6045514, ERR6045537" +VBS46344-6321STDY9453344,"ERR6045497, ERR6045520, ERR6045543" +VBS46345-6321STDY9453345,"ERR6045503, ERR6045526, ERR6045549" diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv index 0fa8ea5c8..0881518fe 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv @@ -1,27 +1,27 @@ -sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude -VBS45687-6143STDY8787412,VBS45687-6143STDY8787412,A2682,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45688-6143STDY8787413,VBS45688-6143STDY8787413,A2685,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45689-6143STDY8787414,VBS45689-6143STDY8787414,A2686,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45690-6143STDY8787415,VBS45690-6143STDY8787415,A2688,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45691-6143STDY8787416,VBS45691-6143STDY8787416,A2631,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45692-6143STDY8787417,VBS45692-6143STDY8787417,A2645,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45701-6143STDY8787420,VBS45701-6143STDY8787420,A2675,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45702-6143STDY8787421,VBS45702-6143STDY8787421,A2749,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45708-6143STDY8787424,VBS45708-6143STDY8787424,A2709,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45709-6143STDY8787425,VBS45709-6143STDY8787425,A2710,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45711-6143STDY8787426,VBS45711-6143STDY8787426,A2718,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45713-6143STDY8787427,VBS45713-6143STDY8787427,A2722,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997 -VBS45717-6143STDY8787429,VBS45717-6143STDY8787429,A4003,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45718-6143STDY8787430,VBS45718-6143STDY8787430,A4004,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45720-6143STDY8787431,VBS45720-6143STDY8787431,A3930,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45723-6143STDY8787432,VBS45723-6143STDY8787432,A3956,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45724-6143STDY8787433,VBS45724-6143STDY8787433,A3964,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45728-6143STDY8787434,VBS45728-6143STDY8787434,A3988,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45734-6143STDY8787435,VBS45734-6143STDY8787435,A3925,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45735-6143STDY8787436,VBS45735-6143STDY8787436,A3926,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45737-6143STDY8787437,VBS45737-6143STDY8787437,A4007,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45738-6143STDY8787438,VBS45738-6143STDY8787438,A4008,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45739-6143STDY8787439,VBS45739-6143STDY8787439,A4009,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45742-6143STDY8787440,VBS45742-6143STDY8787440,A4013,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45743-6143STDY8787441,VBS45743-6143STDY8787441,A4014,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 -VBS45745-6143STDY8787442,VBS45745-6143STDY8787442,A4019,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093 +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS45687-6143STDY8787412,A2682,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45688-6143STDY8787413,A2685,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45689-6143STDY8787414,A2686,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45690-6143STDY8787415,A2688,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45691-6143STDY8787416,A2631,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45692-6143STDY8787417,A2645,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45701-6143STDY8787420,A2675,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45702-6143STDY8787421,A2749,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45708-6143STDY8787424,A2709,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45709-6143STDY8787425,A2710,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45711-6143STDY8787426,A2718,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45713-6143STDY8787427,A2722,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45717-6143STDY8787429,A4003,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45718-6143STDY8787430,A4004,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45720-6143STDY8787431,A3930,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45723-6143STDY8787432,A3956,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45724-6143STDY8787433,A3964,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45728-6143STDY8787434,A3988,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45734-6143STDY8787435,A3925,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45735-6143STDY8787436,A3926,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45737-6143STDY8787437,A4007,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45738-6143STDY8787438,A4008,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45739-6143STDY8787439,A4009,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45742-6143STDY8787440,A4013,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45743-6143STDY8787441,A4014,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45745-6143STDY8787442,A4019,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv index fa5b7c3ea..c5514f4cc 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -1,27 +1,27 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 -1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 -2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 -3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 -4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 -5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 -8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 -9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 -12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 -13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 -14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 -15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 -17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 -18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 -19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 -20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 -21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 -22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 -23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 -24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 -25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 -26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 -27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 -28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 -29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 -30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +VBS45688-6143STDY8787413,33.19,33,33,33,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33,33,33,32.89,33,33,0.984,0.01377 +VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +VBS45743-6143STDY8787441,41.01,41,41,41,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv new file mode 100644 index 000000000..5beda0a88 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv @@ -0,0 +1,27 @@ +sample_id,run_ena +VBS45687-6143STDY8787412,"ERR4696346, ERR4766075, ERR4766106" +VBS45688-6143STDY8787413,"ERR4696347, ERR4766076, ERR4766107" +VBS45689-6143STDY8787414,"ERR4696348, ERR4766077, ERR4766108" +VBS45690-6143STDY8787415,"ERR4696349, ERR4766078, ERR4766109" +VBS45691-6143STDY8787416,"ERR4696350, ERR4766079, ERR4766110" +VBS45692-6143STDY8787417,"ERR4696351, ERR4766080, ERR4766111" +VBS45701-6143STDY8787420,"ERR4696354, ERR4766083, ERR4766114" +VBS45702-6143STDY8787421,"ERR4696355, ERR4766084, ERR4766115" +VBS45708-6143STDY8787424,"ERR4696358, ERR4766087, ERR4766118" +VBS45709-6143STDY8787425,"ERR4696359, ERR4766088, ERR4766119" +VBS45711-6143STDY8787426,"ERR4696360, ERR4766089, ERR4766120" +VBS45713-6143STDY8787427,"ERR4696361, ERR4766090, ERR4766121" +VBS45717-6143STDY8787429,"ERR4696363, ERR4766092, ERR4766123" +VBS45718-6143STDY8787430,"ERR4696364, ERR4766093, ERR4766124" +VBS45720-6143STDY8787431,"ERR4696365, ERR4766094, ERR4766125" +VBS45723-6143STDY8787432,"ERR4696366, ERR4766095, ERR4766126" +VBS45724-6143STDY8787433,"ERR4696367, ERR4766096, ERR4766127" +VBS45728-6143STDY8787434,"ERR4696368, ERR4766097, ERR4766128" +VBS45734-6143STDY8787435,"ERR4696369, ERR4766098, ERR4766129" +VBS45735-6143STDY8787436,"ERR4696370, ERR4766099, ERR4766130" +VBS45737-6143STDY8787437,"ERR4696371, ERR4766100, ERR4766131" +VBS45738-6143STDY8787438,"ERR4696372, ERR4766101, ERR4766132" +VBS45739-6143STDY8787439,"ERR4696373, ERR4766102, ERR4766133" +VBS45742-6143STDY8787440,"ERR4696374, ERR4766103, ERR4766134" +VBS45743-6143STDY8787441,"ERR4696375, ERR4766104, ERR4766135" +VBS45745-6143STDY8787442,"ERR4696376, ERR4766105, ERR4766136" diff --git a/tests/anoph/test_base.py b/tests/anoph/test_base.py index 8d7e22499..0eab7f853 100644 --- a/tests/anoph/test_base.py +++ b/tests/anoph/test_base.py @@ -6,6 +6,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.base import AnophelesBase @@ -33,6 +34,18 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesBase( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -53,6 +66,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + @parametrize_with_cases("fixture,api", cases=".") def test_config(fixture, api): config = api.config diff --git a/tests/anoph/test_dipclust.py b/tests/anoph/test_dipclust.py index c0bbad033..72e003b94 100644 --- a/tests/anoph/test_dipclust.py +++ b/tests/anoph/test_dipclust.py @@ -4,6 +4,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.dipclust import AnophelesDipClustAnalysis @@ -60,6 +61,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesDipClustAnalysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -80,6 +99,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + @pytest.mark.parametrize("distance_metric", ["cityblock", "euclidean"]) @parametrize_with_cases("fixture,api", cases=".") def test_plot_diplotype_clustering( diff --git a/tests/anoph/test_distance.py b/tests/anoph/test_distance.py index 9091ee454..9565580e4 100644 --- a/tests/anoph/test_distance.py +++ b/tests/anoph/test_distance.py @@ -7,6 +7,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.distance import AnophelesDistanceAnalysis from malariagen_data.anoph import pca_params @@ -56,6 +57,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesDistanceAnalysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -76,6 +95,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + def check_biallelic_diplotype_pairwise_distance(*, api, data_params, metric): # Check available data. ds = api.biallelic_snp_calls(**data_params) diff --git a/tests/anoph/test_fst.py b/tests/anoph/test_fst.py index 098f08538..8cfaea808 100644 --- a/tests/anoph/test_fst.py +++ b/tests/anoph/test_fst.py @@ -9,6 +9,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.fst import AnophelesFstAnalysis @@ -57,6 +58,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesFstAnalysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -77,6 +96,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + @parametrize_with_cases("fixture,api", cases=".") def test_fst_gwss(fixture, api: AnophelesFstAnalysis): # Set up test parameters. diff --git a/tests/anoph/test_g123.py b/tests/anoph/test_g123.py index ab5e25537..6ab324d1d 100644 --- a/tests/anoph/test_g123.py +++ b/tests/anoph/test_g123.py @@ -6,6 +6,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.g123 import AnophelesG123Analysis @@ -56,6 +57,25 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesG123Analysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + default_phasing_analysis="dirus_noneyet", + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -76,6 +96,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + def check_g123_gwss(*, api, g123_params): # Run main gwss function under test. x, g123 = api.g123_gwss(**g123_params) diff --git a/tests/anoph/test_genome_features.py b/tests/anoph/test_genome_features.py index eaef4ee4e..1bceb6d37 100644 --- a/tests/anoph/test_genome_features.py +++ b/tests/anoph/test_genome_features.py @@ -7,6 +7,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.genome_features import AnophelesGenomeFeaturesData from malariagen_data.util import Region, resolve_region @@ -42,6 +43,21 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesGenomeFeaturesData( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + ) + + def case_ag3_sim(ag3_sim_fixture, ag3_sim_api): return ag3_sim_fixture, ag3_sim_api @@ -50,6 +66,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + gff3_cols = [ "contig", "source", @@ -91,6 +111,15 @@ def test_genome_features_default_attributes_af1( assert df_gf.columns.to_list() == expected_cols +def test_genome_features_default_attributes_adir1( + adir1_sim_api: AnophelesGenomeFeaturesData, +): + df_gf = adir1_sim_api.genome_features() + assert isinstance(df_gf, pd.DataFrame) + expected_cols = gff3_cols + ["ID", "Parent", "Note", "description"] + assert df_gf.columns.to_list() == expected_cols + + @parametrize_with_cases("fixture,api", cases=".") def test_genome_features_region_contig(fixture, api: AnophelesGenomeFeaturesData): for contig in fixture.contigs: diff --git a/tests/anoph/test_pca.py b/tests/anoph/test_pca.py index e5fa667a6..6ca02bf03 100644 --- a/tests/anoph/test_pca.py +++ b/tests/anoph/test_pca.py @@ -8,6 +8,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.pca import AnophelesPca from malariagen_data.anoph import pca_params @@ -57,6 +58,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesPca( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -77,6 +96,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + @parametrize_with_cases("fixture,api", cases=".") def test_pca_plotting(fixture, api: AnophelesPca): # Parameters for selecting input data. diff --git a/tests/anoph/test_plink_converter.py b/tests/anoph/test_plink_converter.py index 44e476cd9..0480670ca 100644 --- a/tests/anoph/test_plink_converter.py +++ b/tests/anoph/test_plink_converter.py @@ -4,6 +4,8 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 + from malariagen_data.anoph.to_plink import PlinkConverter import os @@ -57,6 +59,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return PlinkConverter( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for diff --git a/tests/anoph/test_sample_metadata.py b/tests/anoph/test_sample_metadata.py index 68d51c6ff..935e3bdb9 100644 --- a/tests/anoph/test_sample_metadata.py +++ b/tests/anoph/test_sample_metadata.py @@ -13,7 +13,6 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 from malariagen_data import adir1 as _adir1 -from malariagen_data import amin1 as _amin1 from malariagen_data.anoph.sample_metadata import AnophelesSampleMetadata @@ -65,19 +64,6 @@ def adir1_sim_api(adir1_sim_fixture): ) -@pytest.fixture -def amin1_sim_api(amin1_sim_fixture): - return AnophelesSampleMetadata( - url=amin1_sim_fixture.url, - public_url=amin1_sim_fixture.url, - config_path=_amin1.CONFIG_PATH, - major_version_number=_amin1.MAJOR_VERSION_NUMBER, - major_version_path=_amin1.MAJOR_VERSION_PATH, - pre=False, - taxon_colors=_amin1.TAXON_COLORS, - ) - - @pytest.fixture def missing_metadata_api(fixture_dir): # In this fixture, one of the sample sets (AG1000G-BF-A) has missing files @@ -108,12 +94,8 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api -def case_adir1_sim(adir1_sim_fixture, adir_sim_api): - return adir1_sim_fixture, adir_sim_api - - -def case_amin1_sim(amin1_sim_fixture, amin1_sim_api): - return amin1_sim_fixture, amin1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api def general_metadata_expected_columns(): diff --git a/tests/anoph/test_snp_frq.py b/tests/anoph/test_snp_frq.py index f7a0224f6..ccb85917c 100644 --- a/tests/anoph/test_snp_frq.py +++ b/tests/anoph/test_snp_frq.py @@ -10,6 +10,8 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 + from malariagen_data.anoph.snp_frq import AnophelesSnpFrequencyAnalysis from malariagen_data.util import compare_series_like from .test_frq import ( @@ -66,6 +68,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesSnpFrequencyAnalysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -86,6 +106,10 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): + return adir1_sim_fixture, adir1_sim_api + + expected_alleles = list("ACGT") expected_effects = [ "FIVE_PRIME_UTR", From 7303340b9479aa28872fdc544989ac976fc06061 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 25 Nov 2025 11:24:36 +1000 Subject: [PATCH 35/41] fix cohort validation in adir1 conftest & add dummy contam data --- .../samples.admin_units.csv | 48 ++ .../samples.cohorts.csv | 48 ++ .../1276-AD-BD-ALAM-VMF00156/samples.taxa.csv | 48 ++ .../samples.admin_units.csv | 27 + .../samples.cohorts.csv | 27 + .../samples.taxa.csv | 27 + .../samples.admin_units.csv | 249 +++++++++ .../samples.cohorts.csv | 249 +++++++++ .../samples.taxa.csv | 249 +++++++++ .../samples.admin_units.csv | 220 ++++++++ .../samples.cohorts.csv | 220 ++++++++ .../samples.taxa.csv | 220 ++++++++ .../sequence_qc_stats.csv | 48 ++ .../sequence_qc_stats.csv | 27 + .../sequence_qc_stats.csv | 249 +++++++++ .../sequence_qc_stats.csv | 220 ++++++++ .../1276-AD-BD-ALAM-VMF00156/samples.meta.csv | 48 ++ .../sequence_qc_stats.csv | 48 ++ .../wgs_accession_data.csv | 48 ++ .../1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv | 48 ++ .../samples.meta.csv | 27 + .../sequence_qc_stats.csv | 27 + .../wgs_accession_data.csv | 27 + .../wgs_snp_data.csv | 27 + .../samples.meta.csv | 249 +++++++++ .../sequence_qc_stats.csv | 249 +++++++++ .../wgs_accession_data.csv | 249 +++++++++ .../wgs_snp_data.csv | 249 +++++++++ .../samples.meta.csv | 220 ++++++++ .../sequence_qc_stats.csv | 220 ++++++++ .../wgs_accession_data.csv | 220 ++++++++ .../wgs_snp_data.csv | 220 ++++++++ tests/anoph/conftest.py | 2 +- .../sequence_qc_stats.csv | 96 ++-- .../sequence_qc_stats.csv | 54 +- .../sequence_qc_stats.csv | 498 +++++++++--------- .../sequence_qc_stats.csv | 440 ++++++++-------- .../1175-VO-KH-STLAURENT/samples.meta.csv | 303 +++++++++++ .../sequence_qc_stats.csv | 303 +++++++++++ .../1175-VO-KH-STLAURENT/wgs_snp_data.csv | 303 +++++++++++ .../1276-AD-BD-ALAM-VMF00156/samples.meta.csv | 94 ++-- .../sequence_qc_stats.csv | 96 ++-- .../wgs_accession_data.csv | 96 ++-- .../sequence_qc_stats.csv | 52 +- .../wgs_accession_data.csv | 54 +- .../samples.meta.csv | 249 +++++++++ .../sequence_qc_stats.csv | 249 +++++++++ .../wgs_accession_data.csv | 249 +++++++++ .../wgs_snp_data.csv | 249 +++++++++ .../samples.meta.csv | 220 ++++++++ .../sequence_qc_stats.csv | 220 ++++++++ .../wgs_accession_data.csv | 220 ++++++++ .../wgs_snp_data.csv | 220 ++++++++ tests/anoph/test_g123.py | 2 +- 54 files changed, 7879 insertions(+), 742 deletions(-) create mode 100644 metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv create mode 100644 metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv create mode 100644 metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv create mode 100644 metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv create mode 100644 metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv create mode 100644 metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv create mode 100644 metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv create mode 100644 metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv create mode 100644 metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv create mode 100644 metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv create mode 100644 metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv create mode 100644 metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv create mode 100644 metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv create mode 100644 metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv create mode 100644 metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/samples.meta.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv create mode 100644 tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv diff --git a/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv new file mode 100644 index 000000000..cfb109ef1 --- /dev/null +++ b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.admin_units.csv @@ -0,0 +1,48 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS46299-6321STDY9453299,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46307-6321STDY9453307,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46315-6321STDY9453315,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46323-6321STDY9453323,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46331-6321STDY9453331,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46339-6321STDY9453339,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46300-6321STDY9453300,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46308-6321STDY9453308,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46316-6321STDY9453316,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46324-6321STDY9453324,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46332-6321STDY9453332,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46340-6321STDY9453340,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46301-6321STDY9453301,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46309-6321STDY9453309,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46317-6321STDY9453317,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46325-6321STDY9453325,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46333-6321STDY9453333,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46341-6321STDY9453341,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46302-6321STDY9453302,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46310-6321STDY9453310,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46318-6321STDY9453318,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46326-6321STDY9453326,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46334-6321STDY9453334,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46342-6321STDY9453342,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46303-6321STDY9453303,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46311-6321STDY9453311,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46319-6321STDY9453319,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46327-6321STDY9453327,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46335-6321STDY9453335,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46343-6321STDY9453343,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46304-6321STDY9453304,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46312-6321STDY9453312,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46320-6321STDY9453320,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46328-6321STDY9453328,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46336-6321STDY9453336,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46344-6321STDY9453344,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46305-6321STDY9453305,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46313-6321STDY9453313,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46321-6321STDY9453321,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46329-6321STDY9453329,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46337-6321STDY9453337,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati +VBS46345-6321STDY9453345,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46306-6321STDY9453306,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46314-6321STDY9453314,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46322-6321STDY9453322,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46330-6321STDY9453330,Bangladesh,BGD,Chittagong Division,BD-B,Bandarban +VBS46338-6321STDY9453338,Bangladesh,BGD,Chittagong Division,BD-B,Rangamati diff --git a/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv new file mode 100644 index 000000000..23f0d4382 --- /dev/null +++ b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.cohorts.csv @@ -0,0 +1,48 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS46299-6321STDY9453299,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46307-6321STDY9453307,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46315-6321STDY9453315,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46323-6321STDY9453323,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46331-6321STDY9453331,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46339-6321STDY9453339,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46300-6321STDY9453300,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46308-6321STDY9453308,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46316-6321STDY9453316,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46324-6321STDY9453324,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46332-6321STDY9453332,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46340-6321STDY9453340,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_10,BD-B_Bandarban_baim_2018_Q4 +VBS46301-6321STDY9453301,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46309-6321STDY9453309,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46317-6321STDY9453317,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46325-6321STDY9453325,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46333-6321STDY9453333,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46341-6321STDY9453341,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46302-6321STDY9453302,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46310-6321STDY9453310,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_06,BD-B_Rangamati_baim_2018_Q2 +VBS46318-6321STDY9453318,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46326-6321STDY9453326,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46334-6321STDY9453334,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46342-6321STDY9453342,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46303-6321STDY9453303,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46311-6321STDY9453311,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46319-6321STDY9453319,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46327-6321STDY9453327,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46335-6321STDY9453335,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46343-6321STDY9453343,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_10,BD-B_baim_2018_Q4,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_10,BD-B_Rangamati_baim_2018_Q4 +VBS46304-6321STDY9453304,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46312-6321STDY9453312,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46320-6321STDY9453320,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46328-6321STDY9453328,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46336-6321STDY9453336,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46344-6321STDY9453344,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46305-6321STDY9453305,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46313-6321STDY9453313,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46321-6321STDY9453321,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46329-6321STDY9453329,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_08,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_08,BD-B_Bandarban_baim_2018_Q3 +VBS46337-6321STDY9453337,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 +VBS46345-6321STDY9453345,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_05,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_05,BD-B_Bandarban_baim_2018_Q2 +VBS46306-6321STDY9453306,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_06,BD-B_baim_2018_Q2,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_06,BD-B_Bandarban_baim_2018_Q2 +VBS46314-6321STDY9453314,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46322-6321STDY9453322,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_07,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_07,BD-B_Bandarban_baim_2018_Q3 +VBS46330-6321STDY9453330,BGD,Chittagong Division,BD-B,Bandarban,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Bandarban_baim_2018,BD-B_Bandarban_baim_2018_09,BD-B_Bandarban_baim_2018_Q3 +VBS46338-6321STDY9453338,BGD,Chittagong Division,BD-B,Rangamati,baimaii,BD-B_baim_2018,BD-B_baim_2018_09,BD-B_baim_2018_Q3,BD-B_Rangamati_baim_2018,BD-B_Rangamati_baim_2018_09,BD-B_Rangamati_baim_2018_Q3 diff --git a/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv new file mode 100644 index 000000000..b6e56d8a5 --- /dev/null +++ b/metadata/cohorts_20250710/1276-AD-BD-ALAM-VMF00156/samples.taxa.csv @@ -0,0 +1,48 @@ +sample_id,taxon +VBS46299-6321STDY9453299,baimaii +VBS46307-6321STDY9453307,baimaii +VBS46315-6321STDY9453315,baimaii +VBS46323-6321STDY9453323,baimaii +VBS46331-6321STDY9453331,baimaii +VBS46339-6321STDY9453339,baimaii +VBS46300-6321STDY9453300,baimaii +VBS46308-6321STDY9453308,baimaii +VBS46316-6321STDY9453316,baimaii +VBS46324-6321STDY9453324,baimaii +VBS46332-6321STDY9453332,baimaii +VBS46340-6321STDY9453340,baimaii +VBS46301-6321STDY9453301,baimaii +VBS46309-6321STDY9453309,baimaii +VBS46317-6321STDY9453317,baimaii +VBS46325-6321STDY9453325,baimaii +VBS46333-6321STDY9453333,baimaii +VBS46341-6321STDY9453341,baimaii +VBS46302-6321STDY9453302,baimaii +VBS46310-6321STDY9453310,baimaii +VBS46318-6321STDY9453318,baimaii +VBS46326-6321STDY9453326,baimaii +VBS46334-6321STDY9453334,baimaii +VBS46342-6321STDY9453342,baimaii +VBS46303-6321STDY9453303,baimaii +VBS46311-6321STDY9453311,baimaii +VBS46319-6321STDY9453319,baimaii +VBS46327-6321STDY9453327,baimaii +VBS46335-6321STDY9453335,baimaii +VBS46343-6321STDY9453343,baimaii +VBS46304-6321STDY9453304,baimaii +VBS46312-6321STDY9453312,baimaii +VBS46320-6321STDY9453320,baimaii +VBS46328-6321STDY9453328,baimaii +VBS46336-6321STDY9453336,baimaii +VBS46344-6321STDY9453344,baimaii +VBS46305-6321STDY9453305,baimaii +VBS46313-6321STDY9453313,baimaii +VBS46321-6321STDY9453321,baimaii +VBS46329-6321STDY9453329,baimaii +VBS46337-6321STDY9453337,baimaii +VBS46345-6321STDY9453345,baimaii +VBS46306-6321STDY9453306,baimaii +VBS46314-6321STDY9453314,baimaii +VBS46322-6321STDY9453322,baimaii +VBS46330-6321STDY9453330,baimaii +VBS46338-6321STDY9453338,baimaii diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv new file mode 100644 index 000000000..a4b676943 --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.admin_units.csv @@ -0,0 +1,27 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45687-6143STDY8787412,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45688-6143STDY8787413,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45689-6143STDY8787414,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45690-6143STDY8787415,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45691-6143STDY8787416,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45692-6143STDY8787417,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45701-6143STDY8787420,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45702-6143STDY8787421,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45708-6143STDY8787424,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45709-6143STDY8787425,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45711-6143STDY8787426,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45713-6143STDY8787427,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS45717-6143STDY8787429,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45718-6143STDY8787430,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45720-6143STDY8787431,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45723-6143STDY8787432,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45724-6143STDY8787433,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45728-6143STDY8787434,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45734-6143STDY8787435,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45735-6143STDY8787436,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45737-6143STDY8787437,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45738-6143STDY8787438,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45739-6143STDY8787439,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45742-6143STDY8787440,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45743-6143STDY8787441,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang +VBS45745-6143STDY8787442,Cambodia,KHM,Mondulkiri,KH-11,Ou Reang diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv new file mode 100644 index 000000000..4e11f7239 --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.cohorts.csv @@ -0,0 +1,27 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45687-6143STDY8787412,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45688-6143STDY8787413,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45689-6143STDY8787414,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45690-6143STDY8787415,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45691-6143STDY8787416,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45692-6143STDY8787417,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45701-6143STDY8787420,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45702-6143STDY8787421,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45708-6143STDY8787424,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45709-6143STDY8787425,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45711-6143STDY8787426,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45713-6143STDY8787427,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2017,KH-11_diru_2017_08,KH-11_diru_2017_Q3,KH-11_Kaev-Seima_diru_2017,KH-11_Kaev-Seima_diru_2017_08,KH-11_Kaev-Seima_diru_2017_Q3 +VBS45717-6143STDY8787429,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45718-6143STDY8787430,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45720-6143STDY8787431,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45723-6143STDY8787432,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45724-6143STDY8787433,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45728-6143STDY8787434,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45734-6143STDY8787435,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45735-6143STDY8787436,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45737-6143STDY8787437,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45738-6143STDY8787438,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45739-6143STDY8787439,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45742-6143STDY8787440,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45743-6143STDY8787441,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 +VBS45745-6143STDY8787442,KHM,Mondulkiri,KH-11,Ou Reang,dirus,KH-11_diru_2018,KH-11_diru_2018_01,KH-11_diru_2018_Q1,KH-11_Ou-Reang_diru_2018,KH-11_Ou-Reang_diru_2018_01,KH-11_Ou-Reang_diru_2018_Q1 diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv new file mode 100644 index 000000000..39284922d --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00151/samples.taxa.csv @@ -0,0 +1,27 @@ +sample_id,taxon +VBS45687-6143STDY8787412,dirus +VBS45688-6143STDY8787413,dirus +VBS45689-6143STDY8787414,dirus +VBS45690-6143STDY8787415,dirus +VBS45691-6143STDY8787416,dirus +VBS45692-6143STDY8787417,dirus +VBS45701-6143STDY8787420,dirus +VBS45702-6143STDY8787421,dirus +VBS45708-6143STDY8787424,dirus +VBS45709-6143STDY8787425,dirus +VBS45711-6143STDY8787426,dirus +VBS45713-6143STDY8787427,dirus +VBS45717-6143STDY8787429,dirus +VBS45718-6143STDY8787430,dirus +VBS45720-6143STDY8787431,dirus +VBS45723-6143STDY8787432,dirus +VBS45724-6143STDY8787433,dirus +VBS45728-6143STDY8787434,dirus +VBS45734-6143STDY8787435,dirus +VBS45735-6143STDY8787436,dirus +VBS45737-6143STDY8787437,dirus +VBS45738-6143STDY8787438,dirus +VBS45739-6143STDY8787439,dirus +VBS45742-6143STDY8787440,dirus +VBS45743-6143STDY8787441,dirus +VBS45745-6143STDY8787442,dirus diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv new file mode 100644 index 000000000..25ae0f297 --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.admin_units.csv @@ -0,0 +1,249 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS54551-6143STDY11462443,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54553-6143STDY11462445,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54554-6143STDY11462446,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54555-6143STDY11462447,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54556-6143STDY11462448,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54557-6143STDY11462449,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54558-6143STDY11462450,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54561-6143STDY11462453,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54562-6143STDY11462454,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54563-6143STDY11462455,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54564-6143STDY11462456,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54565-6143STDY11462457,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54567-6143STDY11462459,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54569-6143STDY11462461,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54570-6143STDY11462462,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54571-6143STDY11462463,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54572-6143STDY11462464,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54574-6143STDY11462466,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54575-6143STDY11462467,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54576-6143STDY11462468,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54577-6143STDY11462469,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54578-6143STDY11462470,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54579-6143STDY11462471,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54580-6143STDY11462472,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54581-6143STDY11462473,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54582-6143STDY11462474,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54583-6143STDY11462475,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54585-6143STDY11462477,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54586-6143STDY11462478,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54588-6143STDY11462480,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54589-6143STDY11462481,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54590-6143STDY11462482,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54591-6143STDY11462483,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54592-6143STDY11462484,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54593-6143STDY11462485,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54594-6143STDY11462486,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54595-6143STDY11462487,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54596-6143STDY11462488,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54597-6143STDY11462489,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54598-6143STDY11462490,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54599-6143STDY11462491,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54644-6143STDY11462538,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54647-6143STDY11462541,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54648-6143STDY11462542,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54649-6143STDY11462543,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54650-6143STDY11462544,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54651-6143STDY11462545,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54654-6143STDY11462548,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54655-6143STDY11462549,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54656-6143STDY11462550,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54657-6143STDY11462551,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54658-6143STDY11462552,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54659-6143STDY11462553,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54661-6143STDY11462555,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54662-6143STDY11462556,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54663-6143STDY11462557,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54664-6143STDY11462558,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54665-6143STDY11462559,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54666-6143STDY11462560,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54667-6143STDY11462561,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54668-6143STDY11462562,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54669-6143STDY11462563,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54671-6143STDY11462565,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54675-6143STDY11462569,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54679-6143STDY11462573,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54680-6143STDY11462574,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54682-6143STDY11462576,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54683-6143STDY11462577,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54687-6143STDY11462581,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54689-6143STDY11462583,Cambodia,KHM,Mondulkiri,KH-11,Kaev Seima +VBS54697-6143STDY11462591,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54699-6143STDY11462593,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54702-6143STDY11462596,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54703-6143STDY11462597,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54704-6143STDY11462598,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54706-6143STDY11462600,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54707-6143STDY11462601,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54709-6143STDY11462603,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54710-6143STDY11462604,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54711-6143STDY11462605,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54712-6143STDY11462606,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54713-6143STDY11462607,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54715-6143STDY11462609,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54716-6143STDY11462610,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54717-6143STDY11462611,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54718-6143STDY11462612,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54719-6143STDY11462613,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54720-6143STDY11462614,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54722-6143STDY11462616,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54723-6143STDY11462617,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54724-6143STDY11462618,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54726-6143STDY11462620,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54731-6143STDY11462625,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54734-6143STDY11462628,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54735-6143STDY11462629,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54737-6143STDY11462631,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54738-6143STDY11462634,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54739-6143STDY11462635,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54740-6143STDY11462636,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54741-6143STDY11462637,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54742-6143STDY11462638,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54743-6143STDY11462639,Cambodia,KHM,Stung Treng,KH-19,Siem Bouk +VBS54744-6143STDY11462640,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54746-6143STDY11462642,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54747-6143STDY11462643,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54748-6143STDY11462644,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54749-6143STDY11462645,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54750-6143STDY11462646,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54751-6143STDY11462647,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54752-6143STDY11462648,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54753-6143STDY11462649,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54754-6143STDY11462650,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54755-6143STDY11462651,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54756-6143STDY11462652,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54757-6143STDY11462653,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54758-6143STDY11462654,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54759-6143STDY11462655,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54760-6143STDY11462656,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54761-6143STDY11462657,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54762-6143STDY11462658,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54763-6143STDY11462659,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54764-6143STDY11462660,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54765-6143STDY11462661,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54766-6143STDY11462662,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54767-6143STDY11462663,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54768-6143STDY11462664,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54769-6143STDY11462665,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54770-6143STDY11462666,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54771-6143STDY11462667,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54772-6143STDY11462668,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54773-6143STDY11462669,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54776-6143STDY11462672,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54777-6143STDY11462673,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54778-6143STDY11462674,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54779-6143STDY11462675,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54780-6143STDY11462676,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54781-6143STDY11462677,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54782-6143STDY11462678,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54783-6143STDY11462679,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54784-6143STDY11462680,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54785-6143STDY11462681,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54786-6143STDY11462682,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54787-6143STDY11462683,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54788-6143STDY11462684,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54789-6143STDY11462685,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54790-6143STDY11462686,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54791-6143STDY11462687,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54792-6143STDY11462688,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54793-6143STDY11462689,Cambodia,KHM,Kratie,KH-10,Sambour +VBS54794-6143STDY11462690,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54795-6143STDY11462691,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54796-6143STDY11462692,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54797-6143STDY11462693,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54798-6143STDY11462694,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54799-6143STDY11462695,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54800-6143STDY11462696,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54801-6143STDY11462697,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54802-6143STDY11462698,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54803-6143STDY11462699,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54804-6143STDY11462700,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54805-6143STDY11462701,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54806-6143STDY11462702,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54807-6143STDY11462703,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54808-6143STDY11462704,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54809-6143STDY11462705,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54810-6143STDY11462706,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54811-6143STDY11462707,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54812-6143STDY11462708,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54813-6143STDY11462709,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54814-6143STDY11462710,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54815-6143STDY11462711,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54816-6143STDY11462712,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54817-6143STDY11462713,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54818-6143STDY11462714,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54819-6143STDY11462715,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54820-6143STDY11462716,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54821-6143STDY11462717,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54822-6143STDY11462718,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54823-6143STDY11462719,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54824-6143STDY11462720,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54825-6143STDY11462721,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54826-6143STDY11462722,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54827-6143STDY11462723,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54828-6143STDY11462724,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54829-6143STDY11462725,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54830-6143STDY11462726,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54831-6143STDY11462727,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54832-6143STDY11462730,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54833-6143STDY11462731,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54834-6143STDY11462732,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54835-6143STDY11462733,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54836-6143STDY11462734,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54837-6143STDY11462735,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54838-6143STDY11462736,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54839-6143STDY11462737,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54840-6143STDY11462738,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54841-6143STDY11462739,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54842-6143STDY11462740,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54843-6143STDY11462741,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54844-6143STDY11462742,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54845-6143STDY11462743,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54846-6143STDY11462744,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54847-6143STDY11462745,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54848-6143STDY11462746,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54849-6143STDY11462747,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54850-6143STDY11462748,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54851-6143STDY11462749,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54852-6143STDY11462750,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54853-6143STDY11462751,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54854-6143STDY11462752,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54855-6143STDY11462753,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54856-6143STDY11462754,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54857-6143STDY11462755,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54858-6143STDY11462756,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54859-6143STDY11462757,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54860-6143STDY11462758,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54861-6143STDY11462759,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54862-6143STDY11462760,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54863-6143STDY11462761,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54864-6143STDY11462762,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54865-6143STDY11462763,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54866-6143STDY11462764,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54867-6143STDY11462765,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54868-6143STDY11462766,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54869-6143STDY11462767,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54870-6143STDY11462768,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54871-6143STDY11462769,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54872-6143STDY11462770,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54873-6143STDY11462771,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54874-6143STDY11462772,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54875-6143STDY11462773,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54876-6143STDY11462774,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54877-6143STDY11462775,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54878-6143STDY11462776,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54879-6143STDY11462777,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54880-6143STDY11462778,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54881-6143STDY11462779,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54882-6143STDY11462780,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54883-6143STDY11462781,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54884-6143STDY11462782,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54885-6143STDY11462783,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54886-6143STDY11462784,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54887-6143STDY11462785,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54888-6143STDY11462786,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54889-6143STDY11462787,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54890-6143STDY11462788,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54891-6143STDY11462789,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek +VBS54892-6143STDY11462790,Cambodia,KHM,Mondulkiri,KH-11,Kaoh Nheaek diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv new file mode 100644 index 000000000..05caefe06 --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.cohorts.csv @@ -0,0 +1,249 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS54551-6143STDY11462443,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54553-6143STDY11462445,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54554-6143STDY11462446,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54555-6143STDY11462447,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54556-6143STDY11462448,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54557-6143STDY11462449,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54558-6143STDY11462450,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54561-6143STDY11462453,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54562-6143STDY11462454,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54563-6143STDY11462455,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54564-6143STDY11462456,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54565-6143STDY11462457,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54567-6143STDY11462459,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54569-6143STDY11462461,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54570-6143STDY11462462,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54571-6143STDY11462463,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54572-6143STDY11462464,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54574-6143STDY11462466,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54575-6143STDY11462467,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54576-6143STDY11462468,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54577-6143STDY11462469,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54578-6143STDY11462470,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54579-6143STDY11462471,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54580-6143STDY11462472,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54581-6143STDY11462473,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54582-6143STDY11462474,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54583-6143STDY11462475,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54585-6143STDY11462477,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54586-6143STDY11462478,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54588-6143STDY11462480,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54589-6143STDY11462481,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54590-6143STDY11462482,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54591-6143STDY11462483,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54592-6143STDY11462484,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54593-6143STDY11462485,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54594-6143STDY11462486,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54595-6143STDY11462487,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54596-6143STDY11462488,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54597-6143STDY11462489,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54598-6143STDY11462490,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54599-6143STDY11462491,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2019,KH-11_diru_2019_10,KH-11_diru_2019_Q4,KH-11_Kaev-Seima_diru_2019,KH-11_Kaev-Seima_diru_2019_10,KH-11_Kaev-Seima_diru_2019_Q4 +VBS54644-6143STDY11462538,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54647-6143STDY11462541,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_08,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_08,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54648-6143STDY11462542,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54649-6143STDY11462543,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54650-6143STDY11462544,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54651-6143STDY11462545,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54654-6143STDY11462548,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54655-6143STDY11462549,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54656-6143STDY11462550,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54657-6143STDY11462551,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54658-6143STDY11462552,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54659-6143STDY11462553,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54661-6143STDY11462555,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54662-6143STDY11462556,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54663-6143STDY11462557,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54664-6143STDY11462558,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54665-6143STDY11462559,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54666-6143STDY11462560,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54667-6143STDY11462561,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54668-6143STDY11462562,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54669-6143STDY11462563,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54671-6143STDY11462565,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54675-6143STDY11462569,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54679-6143STDY11462573,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54680-6143STDY11462574,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54682-6143STDY11462576,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54683-6143STDY11462577,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_09,KH-11_diru_2020_Q3,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_09,KH-11_Kaev-Seima_diru_2020_Q3 +VBS54687-6143STDY11462581,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54689-6143STDY11462583,KHM,Mondulkiri,KH-11,Kaev Seima,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaev-Seima_diru_2020,KH-11_Kaev-Seima_diru_2020_10,KH-11_Kaev-Seima_diru_2020_Q4 +VBS54697-6143STDY11462591,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54699-6143STDY11462593,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54702-6143STDY11462596,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54703-6143STDY11462597,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54704-6143STDY11462598,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54706-6143STDY11462600,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54707-6143STDY11462601,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54709-6143STDY11462603,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54710-6143STDY11462604,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54711-6143STDY11462605,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54712-6143STDY11462606,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54713-6143STDY11462607,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54715-6143STDY11462609,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54716-6143STDY11462610,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54717-6143STDY11462611,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54718-6143STDY11462612,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54719-6143STDY11462613,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54720-6143STDY11462614,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54722-6143STDY11462616,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54723-6143STDY11462617,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54724-6143STDY11462618,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54726-6143STDY11462620,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54731-6143STDY11462625,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54734-6143STDY11462628,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54735-6143STDY11462629,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54737-6143STDY11462631,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54738-6143STDY11462634,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54739-6143STDY11462635,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54740-6143STDY11462636,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54741-6143STDY11462637,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54742-6143STDY11462638,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54743-6143STDY11462639,KHM,Stung Treng,KH-19,Siem Bouk,dirus,KH-19_diru_2020,KH-19_diru_2020_11,KH-19_diru_2020_Q4,KH-19_Siem-Bouk_diru_2020,KH-19_Siem-Bouk_diru_2020_11,KH-19_Siem-Bouk_diru_2020_Q4 +VBS54744-6143STDY11462640,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54746-6143STDY11462642,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54747-6143STDY11462643,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_12,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_12,KH-10_Sambour_diru_2020_Q4 +VBS54748-6143STDY11462644,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54749-6143STDY11462645,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54750-6143STDY11462646,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54751-6143STDY11462647,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54752-6143STDY11462648,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54753-6143STDY11462649,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54754-6143STDY11462650,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54755-6143STDY11462651,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54756-6143STDY11462652,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54757-6143STDY11462653,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54758-6143STDY11462654,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54759-6143STDY11462655,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54760-6143STDY11462656,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54761-6143STDY11462657,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54762-6143STDY11462658,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54763-6143STDY11462659,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54764-6143STDY11462660,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54765-6143STDY11462661,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54766-6143STDY11462662,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54767-6143STDY11462663,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54768-6143STDY11462664,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54769-6143STDY11462665,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54770-6143STDY11462666,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54771-6143STDY11462667,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54772-6143STDY11462668,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54773-6143STDY11462669,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54776-6143STDY11462672,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54777-6143STDY11462673,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54778-6143STDY11462674,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54779-6143STDY11462675,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54780-6143STDY11462676,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54781-6143STDY11462677,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54782-6143STDY11462678,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54783-6143STDY11462679,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54784-6143STDY11462680,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54785-6143STDY11462681,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54786-6143STDY11462682,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54787-6143STDY11462683,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54788-6143STDY11462684,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54789-6143STDY11462685,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54790-6143STDY11462686,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54791-6143STDY11462687,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54792-6143STDY11462688,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54793-6143STDY11462689,KHM,Kratie,KH-10,Sambour,dirus,KH-10_diru_2020,KH-10_diru_2020_11,KH-10_diru_2020_Q4,KH-10_Sambour_diru_2020,KH-10_Sambour_diru_2020_11,KH-10_Sambour_diru_2020_Q4 +VBS54794-6143STDY11462690,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54795-6143STDY11462691,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54796-6143STDY11462692,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54797-6143STDY11462693,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54798-6143STDY11462694,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54799-6143STDY11462695,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54800-6143STDY11462696,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54801-6143STDY11462697,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54802-6143STDY11462698,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54803-6143STDY11462699,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_10,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_10,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54804-6143STDY11462700,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54805-6143STDY11462701,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54806-6143STDY11462702,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54807-6143STDY11462703,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54808-6143STDY11462704,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54809-6143STDY11462705,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54810-6143STDY11462706,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54811-6143STDY11462707,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54812-6143STDY11462708,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54813-6143STDY11462709,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54814-6143STDY11462710,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54815-6143STDY11462711,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54816-6143STDY11462712,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54817-6143STDY11462713,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54818-6143STDY11462714,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54819-6143STDY11462715,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54820-6143STDY11462716,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54821-6143STDY11462717,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54822-6143STDY11462718,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54823-6143STDY11462719,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54824-6143STDY11462720,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54825-6143STDY11462721,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54826-6143STDY11462722,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54827-6143STDY11462723,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54828-6143STDY11462724,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54829-6143STDY11462725,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54830-6143STDY11462726,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54831-6143STDY11462727,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54832-6143STDY11462730,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54833-6143STDY11462731,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54834-6143STDY11462732,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54835-6143STDY11462733,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54836-6143STDY11462734,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54837-6143STDY11462735,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54838-6143STDY11462736,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54839-6143STDY11462737,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54840-6143STDY11462738,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54841-6143STDY11462739,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54842-6143STDY11462740,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54843-6143STDY11462741,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54844-6143STDY11462742,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54845-6143STDY11462743,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54846-6143STDY11462744,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54847-6143STDY11462745,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54848-6143STDY11462746,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54849-6143STDY11462747,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_12,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_12,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54850-6143STDY11462748,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54851-6143STDY11462749,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54852-6143STDY11462750,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54853-6143STDY11462751,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54854-6143STDY11462752,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54855-6143STDY11462753,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54856-6143STDY11462754,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54857-6143STDY11462755,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54858-6143STDY11462756,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54859-6143STDY11462757,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54860-6143STDY11462758,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54861-6143STDY11462759,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54862-6143STDY11462760,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54863-6143STDY11462761,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54864-6143STDY11462762,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54865-6143STDY11462763,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54866-6143STDY11462764,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54867-6143STDY11462765,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54868-6143STDY11462766,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54869-6143STDY11462767,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54870-6143STDY11462768,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54871-6143STDY11462769,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54872-6143STDY11462770,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54873-6143STDY11462771,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54874-6143STDY11462772,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54875-6143STDY11462773,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54876-6143STDY11462774,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54877-6143STDY11462775,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54878-6143STDY11462776,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54879-6143STDY11462777,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54880-6143STDY11462778,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54881-6143STDY11462779,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54882-6143STDY11462780,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54883-6143STDY11462781,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54884-6143STDY11462782,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54885-6143STDY11462783,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54886-6143STDY11462784,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54887-6143STDY11462785,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54888-6143STDY11462786,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54889-6143STDY11462787,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54890-6143STDY11462788,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54891-6143STDY11462789,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 +VBS54892-6143STDY11462790,KHM,Mondulkiri,KH-11,Kaoh Nheaek,dirus,KH-11_diru_2020,KH-11_diru_2020_11,KH-11_diru_2020_Q4,KH-11_Kaoh-Nheaek_diru_2020,KH-11_Kaoh-Nheaek_diru_2020_11,KH-11_Kaoh-Nheaek_diru_2020_Q4 diff --git a/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv new file mode 100644 index 000000000..4c76b6b29 --- /dev/null +++ b/metadata/cohorts_20250710/1277-VO-KH-WITKOWSKI-VMF00183/samples.taxa.csv @@ -0,0 +1,249 @@ +sample_id,taxon +VBS54551-6143STDY11462443,dirus +VBS54553-6143STDY11462445,dirus +VBS54554-6143STDY11462446,dirus +VBS54555-6143STDY11462447,dirus +VBS54556-6143STDY11462448,dirus +VBS54557-6143STDY11462449,dirus +VBS54558-6143STDY11462450,dirus +VBS54561-6143STDY11462453,dirus +VBS54562-6143STDY11462454,dirus +VBS54563-6143STDY11462455,dirus +VBS54564-6143STDY11462456,dirus +VBS54565-6143STDY11462457,dirus +VBS54567-6143STDY11462459,dirus +VBS54569-6143STDY11462461,dirus +VBS54570-6143STDY11462462,dirus +VBS54571-6143STDY11462463,dirus +VBS54572-6143STDY11462464,dirus +VBS54574-6143STDY11462466,dirus +VBS54575-6143STDY11462467,dirus +VBS54576-6143STDY11462468,dirus +VBS54577-6143STDY11462469,dirus +VBS54578-6143STDY11462470,dirus +VBS54579-6143STDY11462471,dirus +VBS54580-6143STDY11462472,dirus +VBS54581-6143STDY11462473,dirus +VBS54582-6143STDY11462474,dirus +VBS54583-6143STDY11462475,dirus +VBS54585-6143STDY11462477,dirus +VBS54586-6143STDY11462478,dirus +VBS54588-6143STDY11462480,dirus +VBS54589-6143STDY11462481,dirus +VBS54590-6143STDY11462482,dirus +VBS54591-6143STDY11462483,dirus +VBS54592-6143STDY11462484,dirus +VBS54593-6143STDY11462485,dirus +VBS54594-6143STDY11462486,dirus +VBS54595-6143STDY11462487,dirus +VBS54596-6143STDY11462488,dirus +VBS54597-6143STDY11462489,dirus +VBS54598-6143STDY11462490,dirus +VBS54599-6143STDY11462491,dirus +VBS54644-6143STDY11462538,dirus +VBS54647-6143STDY11462541,dirus +VBS54648-6143STDY11462542,dirus +VBS54649-6143STDY11462543,dirus +VBS54650-6143STDY11462544,dirus +VBS54651-6143STDY11462545,dirus +VBS54654-6143STDY11462548,dirus +VBS54655-6143STDY11462549,dirus +VBS54656-6143STDY11462550,dirus +VBS54657-6143STDY11462551,dirus +VBS54658-6143STDY11462552,dirus +VBS54659-6143STDY11462553,dirus +VBS54661-6143STDY11462555,dirus +VBS54662-6143STDY11462556,dirus +VBS54663-6143STDY11462557,dirus +VBS54664-6143STDY11462558,dirus +VBS54665-6143STDY11462559,dirus +VBS54666-6143STDY11462560,dirus +VBS54667-6143STDY11462561,dirus +VBS54668-6143STDY11462562,dirus +VBS54669-6143STDY11462563,dirus +VBS54671-6143STDY11462565,dirus +VBS54675-6143STDY11462569,dirus +VBS54679-6143STDY11462573,dirus +VBS54680-6143STDY11462574,dirus +VBS54682-6143STDY11462576,dirus +VBS54683-6143STDY11462577,dirus +VBS54687-6143STDY11462581,dirus +VBS54689-6143STDY11462583,dirus +VBS54697-6143STDY11462591,dirus +VBS54699-6143STDY11462593,dirus +VBS54702-6143STDY11462596,dirus +VBS54703-6143STDY11462597,dirus +VBS54704-6143STDY11462598,dirus +VBS54706-6143STDY11462600,dirus +VBS54707-6143STDY11462601,dirus +VBS54709-6143STDY11462603,dirus +VBS54710-6143STDY11462604,dirus +VBS54711-6143STDY11462605,dirus +VBS54712-6143STDY11462606,dirus +VBS54713-6143STDY11462607,dirus +VBS54715-6143STDY11462609,dirus +VBS54716-6143STDY11462610,dirus +VBS54717-6143STDY11462611,dirus +VBS54718-6143STDY11462612,dirus +VBS54719-6143STDY11462613,dirus +VBS54720-6143STDY11462614,dirus +VBS54722-6143STDY11462616,dirus +VBS54723-6143STDY11462617,dirus +VBS54724-6143STDY11462618,dirus +VBS54726-6143STDY11462620,dirus +VBS54731-6143STDY11462625,dirus +VBS54734-6143STDY11462628,dirus +VBS54735-6143STDY11462629,dirus +VBS54737-6143STDY11462631,dirus +VBS54738-6143STDY11462634,dirus +VBS54739-6143STDY11462635,dirus +VBS54740-6143STDY11462636,dirus +VBS54741-6143STDY11462637,dirus +VBS54742-6143STDY11462638,dirus +VBS54743-6143STDY11462639,dirus +VBS54744-6143STDY11462640,dirus +VBS54746-6143STDY11462642,dirus +VBS54747-6143STDY11462643,dirus +VBS54748-6143STDY11462644,dirus +VBS54749-6143STDY11462645,dirus +VBS54750-6143STDY11462646,dirus +VBS54751-6143STDY11462647,dirus +VBS54752-6143STDY11462648,dirus +VBS54753-6143STDY11462649,dirus +VBS54754-6143STDY11462650,dirus +VBS54755-6143STDY11462651,dirus +VBS54756-6143STDY11462652,dirus +VBS54757-6143STDY11462653,dirus +VBS54758-6143STDY11462654,dirus +VBS54759-6143STDY11462655,dirus +VBS54760-6143STDY11462656,dirus +VBS54761-6143STDY11462657,dirus +VBS54762-6143STDY11462658,dirus +VBS54763-6143STDY11462659,dirus +VBS54764-6143STDY11462660,dirus +VBS54765-6143STDY11462661,dirus +VBS54766-6143STDY11462662,dirus +VBS54767-6143STDY11462663,dirus +VBS54768-6143STDY11462664,dirus +VBS54769-6143STDY11462665,dirus +VBS54770-6143STDY11462666,dirus +VBS54771-6143STDY11462667,dirus +VBS54772-6143STDY11462668,dirus +VBS54773-6143STDY11462669,dirus +VBS54776-6143STDY11462672,dirus +VBS54777-6143STDY11462673,dirus +VBS54778-6143STDY11462674,dirus +VBS54779-6143STDY11462675,dirus +VBS54780-6143STDY11462676,dirus +VBS54781-6143STDY11462677,dirus +VBS54782-6143STDY11462678,dirus +VBS54783-6143STDY11462679,dirus +VBS54784-6143STDY11462680,dirus +VBS54785-6143STDY11462681,dirus +VBS54786-6143STDY11462682,dirus +VBS54787-6143STDY11462683,dirus +VBS54788-6143STDY11462684,dirus +VBS54789-6143STDY11462685,dirus +VBS54790-6143STDY11462686,dirus +VBS54791-6143STDY11462687,dirus +VBS54792-6143STDY11462688,dirus +VBS54793-6143STDY11462689,dirus +VBS54794-6143STDY11462690,dirus +VBS54795-6143STDY11462691,dirus +VBS54796-6143STDY11462692,dirus +VBS54797-6143STDY11462693,dirus +VBS54798-6143STDY11462694,dirus +VBS54799-6143STDY11462695,dirus +VBS54800-6143STDY11462696,dirus +VBS54801-6143STDY11462697,dirus +VBS54802-6143STDY11462698,dirus +VBS54803-6143STDY11462699,dirus +VBS54804-6143STDY11462700,dirus +VBS54805-6143STDY11462701,dirus +VBS54806-6143STDY11462702,dirus +VBS54807-6143STDY11462703,dirus +VBS54808-6143STDY11462704,dirus +VBS54809-6143STDY11462705,dirus +VBS54810-6143STDY11462706,dirus +VBS54811-6143STDY11462707,dirus +VBS54812-6143STDY11462708,dirus +VBS54813-6143STDY11462709,dirus +VBS54814-6143STDY11462710,dirus +VBS54815-6143STDY11462711,dirus +VBS54816-6143STDY11462712,dirus +VBS54817-6143STDY11462713,dirus +VBS54818-6143STDY11462714,dirus +VBS54819-6143STDY11462715,dirus +VBS54820-6143STDY11462716,dirus +VBS54821-6143STDY11462717,dirus +VBS54822-6143STDY11462718,dirus +VBS54823-6143STDY11462719,dirus +VBS54824-6143STDY11462720,dirus +VBS54825-6143STDY11462721,dirus +VBS54826-6143STDY11462722,dirus +VBS54827-6143STDY11462723,dirus +VBS54828-6143STDY11462724,dirus +VBS54829-6143STDY11462725,dirus +VBS54830-6143STDY11462726,dirus +VBS54831-6143STDY11462727,dirus +VBS54832-6143STDY11462730,dirus +VBS54833-6143STDY11462731,dirus +VBS54834-6143STDY11462732,dirus +VBS54835-6143STDY11462733,dirus +VBS54836-6143STDY11462734,dirus +VBS54837-6143STDY11462735,dirus +VBS54838-6143STDY11462736,dirus +VBS54839-6143STDY11462737,dirus +VBS54840-6143STDY11462738,dirus +VBS54841-6143STDY11462739,dirus +VBS54842-6143STDY11462740,dirus +VBS54843-6143STDY11462741,dirus +VBS54844-6143STDY11462742,dirus +VBS54845-6143STDY11462743,dirus +VBS54846-6143STDY11462744,dirus +VBS54847-6143STDY11462745,dirus +VBS54848-6143STDY11462746,dirus +VBS54849-6143STDY11462747,dirus +VBS54850-6143STDY11462748,dirus +VBS54851-6143STDY11462749,dirus +VBS54852-6143STDY11462750,dirus +VBS54853-6143STDY11462751,dirus +VBS54854-6143STDY11462752,dirus +VBS54855-6143STDY11462753,dirus +VBS54856-6143STDY11462754,dirus +VBS54857-6143STDY11462755,dirus +VBS54858-6143STDY11462756,dirus +VBS54859-6143STDY11462757,dirus +VBS54860-6143STDY11462758,dirus +VBS54861-6143STDY11462759,dirus +VBS54862-6143STDY11462760,dirus +VBS54863-6143STDY11462761,dirus +VBS54864-6143STDY11462762,dirus +VBS54865-6143STDY11462763,dirus +VBS54866-6143STDY11462764,dirus +VBS54867-6143STDY11462765,dirus +VBS54868-6143STDY11462766,dirus +VBS54869-6143STDY11462767,dirus +VBS54870-6143STDY11462768,dirus +VBS54871-6143STDY11462769,dirus +VBS54872-6143STDY11462770,dirus +VBS54873-6143STDY11462771,dirus +VBS54874-6143STDY11462772,dirus +VBS54875-6143STDY11462773,dirus +VBS54876-6143STDY11462774,dirus +VBS54877-6143STDY11462775,dirus +VBS54878-6143STDY11462776,dirus +VBS54879-6143STDY11462777,dirus +VBS54880-6143STDY11462778,dirus +VBS54881-6143STDY11462779,dirus +VBS54882-6143STDY11462780,dirus +VBS54883-6143STDY11462781,dirus +VBS54884-6143STDY11462782,dirus +VBS54885-6143STDY11462783,dirus +VBS54886-6143STDY11462784,dirus +VBS54887-6143STDY11462785,dirus +VBS54888-6143STDY11462786,dirus +VBS54889-6143STDY11462787,dirus +VBS54890-6143STDY11462788,dirus +VBS54891-6143STDY11462789,dirus +VBS54892-6143STDY11462790,dirus diff --git a/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv new file mode 100644 index 000000000..2f3c5ca05 --- /dev/null +++ b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.admin_units.csv @@ -0,0 +1,220 @@ +sample_id,country,country_ISO,adm1_name,adm1_ISO,adm2_name +VBS45974-6296STDY9478582,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45976-6296STDY9478584,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45979-6296STDY9478587,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45982-6296STDY9478589,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46005-6296STDY9478612,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46042-6296STDY9478649,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46050-6296STDY9478657,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46059-6296STDY9478666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46066-6296STDY9478673,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46067-6296STDY9478674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46078-6296STDY9478687,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46083-6296STDY9478692,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46084-6296STDY9478693,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46087-6296STDY9478696,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46088-6296STDY9478697,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46098-6296STDY9478707,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46121-6296STDY9478730,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46141-6296STDY9478750,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46145-6296STDY9478754,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46146-6296STDY9478755,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46154-6296STDY9478763,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46168-6296STDY9478779,Thailand,THA,Surat Thani Province,TH-84,Vibhavadi +VBS46172-6296STDY9478782,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46173-6296STDY9478783,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46175-6296STDY9478785,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46180-6296STDY9478790,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46183-6296STDY9478793,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46187-6296STDY9478797,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46188-6296STDY9478798,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46189-6296STDY9478799,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46190-6296STDY9478800,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46192-6296STDY9478801,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46198-6296STDY9478807,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45975-6296STDY10244530,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45983-6296STDY10244537,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45984-6296STDY10244538,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45985-6296STDY10244539,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45986-6296STDY10244540,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45987-6296STDY10244541,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS45988-6296STDY10244542,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45989-6296STDY10244543,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45991-6296STDY10244545,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45992-6296STDY10244546,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45993-6296STDY10244547,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45994-6296STDY10244548,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45995-6296STDY10244549,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45996-6296STDY10244550,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45997-6296STDY10244551,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45998-6296STDY10244552,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS45999-6296STDY10244553,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46000-6296STDY10244554,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46001-6296STDY10244555,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46002-6296STDY10244556,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46003-6296STDY10244557,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46004-6296STDY10244558,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46006-6296STDY10244560,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46007-6296STDY10244561,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46008-6296STDY10244562,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46009-6296STDY10244563,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46010-6296STDY10244564,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46011-6296STDY10244565,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46012-6296STDY10244566,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46013-6296STDY10244567,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46014-6296STDY10244568,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46016-6296STDY10244570,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46017-6296STDY10244571,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46019-6296STDY10244573,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46020-6296STDY10244574,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46021-6296STDY10244575,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46022-6296STDY10244576,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46025-6296STDY10244579,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46026-6296STDY10244580,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46027-6296STDY10244581,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46028-6296STDY10244582,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46029-6296STDY10244583,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46030-6296STDY10244584,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46031-6296STDY10244585,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46032-6296STDY10244586,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46033-6296STDY10244587,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46034-6296STDY10244588,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46035-6296STDY10244589,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46036-6296STDY10244590,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46037-6296STDY10244591,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46038-6296STDY10244592,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46039-6296STDY10244593,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46040-6296STDY10244594,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46041-6296STDY10244595,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46043-6296STDY10244597,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46044-6296STDY10244598,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46045-6296STDY10244599,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46046-6296STDY10244600,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46047-6296STDY10244601,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46048-6296STDY10244602,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46049-6296STDY10244603,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46051-6296STDY10244605,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46052-6296STDY10244606,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46053-6296STDY10244607,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46054-6296STDY10244608,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46055-6296STDY10244609,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46056-6296STDY10244610,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46057-6296STDY10244611,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46060-6296STDY10244614,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46061-6296STDY10244615,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46063-6296STDY10244617,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46064-6296STDY10244618,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46065-6296STDY10244619,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46068-6296STDY10244622,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46069-6296STDY10244625,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46070-6296STDY10244626,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46071-6296STDY10244627,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46072-6296STDY10244628,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46073-6296STDY10244629,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46074-6296STDY10244630,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46075-6296STDY10244631,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46076-6296STDY10244632,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46077-6296STDY10244633,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46079-6296STDY10244635,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46080-6296STDY10244636,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46081-6296STDY10244637,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46082-6296STDY10244638,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46085-6296STDY10244641,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46086-6296STDY10244642,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46089-6296STDY10244645,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46090-6296STDY10244646,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46091-6296STDY10244647,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46092-6296STDY10244648,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46093-6296STDY10244649,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46094-6296STDY10244650,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46095-6296STDY10244651,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46096-6296STDY10244652,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46097-6296STDY10244653,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46099-6296STDY10244655,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46100-6296STDY10244656,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46101-6296STDY10244657,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46102-6296STDY10244658,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46103-6296STDY10244659,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46104-6296STDY10244660,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46105-6296STDY10244661,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46106-6296STDY10244662,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46107-6296STDY10244663,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46108-6296STDY10244664,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46109-6296STDY10244665,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46110-6296STDY10244666,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46111-6296STDY10244667,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46112-6296STDY10244668,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46113-6296STDY10244669,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46114-6296STDY10244670,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46115-6296STDY10244671,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46116-6296STDY10244672,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46117-6296STDY10244673,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46118-6296STDY10244674,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46119-6296STDY10244675,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46120-6296STDY10244676,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46122-6296STDY10244678,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46123-6296STDY10244679,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46124-6296STDY10244680,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46125-6296STDY10244681,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46126-6296STDY10244682,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46127-6296STDY10244683,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46128-6296STDY10244684,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46129-6296STDY10244685,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46130-6296STDY10244686,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46131-6296STDY10244687,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46132-6296STDY10244688,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46133-6296STDY10244689,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46134-6296STDY10244690,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46135-6296STDY10244691,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46136-6296STDY10244692,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46137-6296STDY10244693,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46138-6296STDY10244694,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46139-6296STDY10244695,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46140-6296STDY10244696,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46142-6296STDY10244698,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46143-6296STDY10244699,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46144-6296STDY10244700,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46147-6296STDY10244703,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46148-6296STDY10244704,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46149-6296STDY10244705,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46150-6296STDY10244706,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46151-6296STDY10244707,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46152-6296STDY10244708,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46153-6296STDY10244709,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46155-6296STDY10244711,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46156-6296STDY10244712,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46157-6296STDY10244713,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46158-6296STDY10244714,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46160-6296STDY10244716,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46161-6296STDY10244717,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46162-6296STDY10244718,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46163-6296STDY10244721,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46164-6296STDY10244722,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46165-6296STDY10244723,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46166-6296STDY10244724,Thailand,THA,Surat Thani Province,TH-84,Phanom +VBS46170-6296STDY10244727,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46171-6296STDY10244728,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46174-6296STDY10244731,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46176-6296STDY10244733,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46177-6296STDY10244734,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46178-6296STDY10244735,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46179-6296STDY10244736,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46181-6296STDY10244738,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46182-6296STDY10244739,Thailand,THA,Surat Thani Province,TH-84,Tha Chang +VBS46184-6296STDY10244741,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46185-6296STDY10244742,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46186-6296STDY10244743,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46193-6296STDY10244749,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46194-6296STDY10244750,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46195-6296STDY10244751,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46196-6296STDY10244752,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46197-6296STDY10244753,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46199-6296STDY10244755,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46200-6296STDY10244756,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46201-6296STDY10244757,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46202-6296STDY10244758,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46203-6296STDY10244759,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46204-6296STDY10244760,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46205-6296STDY10244761,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46206-6296STDY10244762,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom +VBS46207-6296STDY10244763,Thailand,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom diff --git a/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv new file mode 100644 index 000000000..6db6689d7 --- /dev/null +++ b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.cohorts.csv @@ -0,0 +1,220 @@ +sample_id,country_ISO,adm1_name,adm1_ISO,adm2_name,taxon,cohort_admin1_year,cohort_admin1_month,cohort_admin1_quarter,cohort_admin2_year,cohort_admin2_month,cohort_admin2_quarter +VBS45974-6296STDY9478582,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45976-6296STDY9478584,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45979-6296STDY9478587,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_03,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45982-6296STDY9478589,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46005-6296STDY9478612,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46042-6296STDY9478649,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46050-6296STDY9478657,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46059-6296STDY9478666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46066-6296STDY9478673,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46067-6296STDY9478674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46078-6296STDY9478687,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46083-6296STDY9478692,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46084-6296STDY9478693,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46087-6296STDY9478696,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46088-6296STDY9478697,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46098-6296STDY9478707,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46121-6296STDY9478730,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46141-6296STDY9478750,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46145-6296STDY9478754,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46146-6296STDY9478755,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46154-6296STDY9478763,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46168-6296STDY9478779,THA,Surat Thani Province,TH-84,Vibhavadi,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Vibhavadi_diru_2019,TH-84_Vibhavadi_diru_2019_10,TH-84_Vibhavadi_diru_2019_Q4 +VBS46172-6296STDY9478782,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46173-6296STDY9478783,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46175-6296STDY9478785,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46180-6296STDY9478790,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46183-6296STDY9478793,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46187-6296STDY9478797,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46188-6296STDY9478798,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46189-6296STDY9478799,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46190-6296STDY9478800,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46192-6296STDY9478801,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46198-6296STDY9478807,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS45975-6296STDY10244530,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_02,TH-84_Khiri-Rat-Nikhom_diru_2019_Q1 +VBS45983-6296STDY10244537,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45984-6296STDY10244538,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45985-6296STDY10244539,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_04,TH-84_Phanom_diru_2019_Q2 +VBS45986-6296STDY10244540,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45987-6296STDY10244541,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_04,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_04,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS45988-6296STDY10244542,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45989-6296STDY10244543,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45991-6296STDY10244545,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45992-6296STDY10244546,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45993-6296STDY10244547,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45994-6296STDY10244548,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45995-6296STDY10244549,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45996-6296STDY10244550,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45997-6296STDY10244551,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45998-6296STDY10244552,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS45999-6296STDY10244553,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46000-6296STDY10244554,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46001-6296STDY10244555,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46002-6296STDY10244556,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46003-6296STDY10244557,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46004-6296STDY10244558,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46006-6296STDY10244560,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46007-6296STDY10244561,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46008-6296STDY10244562,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46009-6296STDY10244563,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46010-6296STDY10244564,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46011-6296STDY10244565,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46012-6296STDY10244566,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46013-6296STDY10244567,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46014-6296STDY10244568,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46016-6296STDY10244570,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46017-6296STDY10244571,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46019-6296STDY10244573,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46020-6296STDY10244574,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46021-6296STDY10244575,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46022-6296STDY10244576,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46025-6296STDY10244579,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46026-6296STDY10244580,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46027-6296STDY10244581,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46028-6296STDY10244582,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46029-6296STDY10244583,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46030-6296STDY10244584,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46031-6296STDY10244585,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46032-6296STDY10244586,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46033-6296STDY10244587,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46034-6296STDY10244588,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46035-6296STDY10244589,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46036-6296STDY10244590,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46037-6296STDY10244591,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46038-6296STDY10244592,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46039-6296STDY10244593,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46040-6296STDY10244594,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46041-6296STDY10244595,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46043-6296STDY10244597,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46044-6296STDY10244598,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46045-6296STDY10244599,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46046-6296STDY10244600,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46047-6296STDY10244601,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46048-6296STDY10244602,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46049-6296STDY10244603,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46051-6296STDY10244605,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46052-6296STDY10244606,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46053-6296STDY10244607,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_05,TH-84_Phanom_diru_2019_Q2 +VBS46054-6296STDY10244608,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46055-6296STDY10244609,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46056-6296STDY10244610,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46057-6296STDY10244611,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_05,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46060-6296STDY10244614,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_05,TH-84_diru_2019_Q2,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_05,TH-84_Tha-Chang_diru_2019_Q2 +VBS46061-6296STDY10244615,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_01,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_01,TH-84_Tha-Chang_diru_2019_Q1 +VBS46063-6296STDY10244617,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46064-6296STDY10244618,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46065-6296STDY10244619,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_06,TH-84_Phanom_diru_2019_Q2 +VBS46068-6296STDY10244622,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46069-6296STDY10244625,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46070-6296STDY10244626,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46071-6296STDY10244627,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46072-6296STDY10244628,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46073-6296STDY10244629,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46074-6296STDY10244630,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46075-6296STDY10244631,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46076-6296STDY10244632,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46077-6296STDY10244633,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46079-6296STDY10244635,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46080-6296STDY10244636,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46081-6296STDY10244637,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46082-6296STDY10244638,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46085-6296STDY10244641,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46086-6296STDY10244642,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_06,TH-84_diru_2019_Q2,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_06,TH-84_Khiri-Rat-Nikhom_diru_2019_Q2 +VBS46089-6296STDY10244645,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46090-6296STDY10244646,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46091-6296STDY10244647,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_07,TH-84_Tha-Chang_diru_2019_Q3 +VBS46092-6296STDY10244648,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46093-6296STDY10244649,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46094-6296STDY10244650,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46095-6296STDY10244651,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46096-6296STDY10244652,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_07,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_07,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46097-6296STDY10244653,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46099-6296STDY10244655,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_03,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_03,TH-84_Tha-Chang_diru_2019_Q1 +VBS46100-6296STDY10244656,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46101-6296STDY10244657,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46102-6296STDY10244658,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46103-6296STDY10244659,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46104-6296STDY10244660,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46105-6296STDY10244661,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46106-6296STDY10244662,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46107-6296STDY10244663,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46108-6296STDY10244664,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46109-6296STDY10244665,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46110-6296STDY10244666,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46111-6296STDY10244667,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46112-6296STDY10244668,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46113-6296STDY10244669,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46114-6296STDY10244670,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46115-6296STDY10244671,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46116-6296STDY10244672,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46117-6296STDY10244673,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46118-6296STDY10244674,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46119-6296STDY10244675,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46120-6296STDY10244676,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46122-6296STDY10244678,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46123-6296STDY10244679,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_08,TH-84_diru_2019_Q3,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_08,TH-84_Khiri-Rat-Nikhom_diru_2019_Q3 +VBS46124-6296STDY10244680,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46125-6296STDY10244681,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46126-6296STDY10244682,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46127-6296STDY10244683,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46128-6296STDY10244684,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46129-6296STDY10244685,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46130-6296STDY10244686,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_02,TH-84_diru_2019_Q1,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_02,TH-84_Tha-Chang_diru_2019_Q1 +VBS46131-6296STDY10244687,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46132-6296STDY10244688,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46133-6296STDY10244689,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46134-6296STDY10244690,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46135-6296STDY10244691,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46136-6296STDY10244692,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46137-6296STDY10244693,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46138-6296STDY10244694,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46139-6296STDY10244695,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46140-6296STDY10244696,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46142-6296STDY10244698,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46143-6296STDY10244699,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46144-6296STDY10244700,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46147-6296STDY10244703,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46148-6296STDY10244704,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46149-6296STDY10244705,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46150-6296STDY10244706,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46151-6296STDY10244707,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46152-6296STDY10244708,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46153-6296STDY10244709,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46155-6296STDY10244711,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46156-6296STDY10244712,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46157-6296STDY10244713,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46158-6296STDY10244714,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46160-6296STDY10244716,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46161-6296STDY10244717,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46162-6296STDY10244718,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46163-6296STDY10244721,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46164-6296STDY10244722,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46165-6296STDY10244723,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46166-6296STDY10244724,THA,Surat Thani Province,TH-84,Phanom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Phanom_diru_2019,TH-84_Phanom_diru_2019_10,TH-84_Phanom_diru_2019_Q4 +VBS46170-6296STDY10244727,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46171-6296STDY10244728,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46174-6296STDY10244731,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46176-6296STDY10244733,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46177-6296STDY10244734,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46178-6296STDY10244735,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46179-6296STDY10244736,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46181-6296STDY10244738,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46182-6296STDY10244739,THA,Surat Thani Province,TH-84,Tha Chang,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Tha-Chang_diru_2019,TH-84_Tha-Chang_diru_2019_10,TH-84_Tha-Chang_diru_2019_Q4 +VBS46184-6296STDY10244741,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46185-6296STDY10244742,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46186-6296STDY10244743,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46193-6296STDY10244749,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46194-6296STDY10244750,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46195-6296STDY10244751,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46196-6296STDY10244752,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46197-6296STDY10244753,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46199-6296STDY10244755,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46200-6296STDY10244756,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46201-6296STDY10244757,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46202-6296STDY10244758,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46203-6296STDY10244759,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46204-6296STDY10244760,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46205-6296STDY10244761,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46206-6296STDY10244762,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 +VBS46207-6296STDY10244763,THA,Surat Thani Province,TH-84,Khiri Rat Nikhom,dirus,TH-84_diru_2019,TH-84_diru_2019_10,TH-84_diru_2019_Q4,TH-84_Khiri-Rat-Nikhom_diru_2019,TH-84_Khiri-Rat-Nikhom_diru_2019_10,TH-84_Khiri-Rat-Nikhom_diru_2019_Q4 diff --git a/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv new file mode 100644 index 000000000..6393f49a5 --- /dev/null +++ b/metadata/cohorts_20250710/1278-VO-TH-KOBYLINSKI-VMF00153/samples.taxa.csv @@ -0,0 +1,220 @@ +sample_id,taxon +VBS45974-6296STDY9478582,dirus +VBS45976-6296STDY9478584,dirus +VBS45979-6296STDY9478587,dirus +VBS45982-6296STDY9478589,dirus +VBS46005-6296STDY9478612,dirus +VBS46042-6296STDY9478649,dirus +VBS46050-6296STDY9478657,dirus +VBS46059-6296STDY9478666,dirus +VBS46066-6296STDY9478673,dirus +VBS46067-6296STDY9478674,dirus +VBS46078-6296STDY9478687,dirus +VBS46083-6296STDY9478692,dirus +VBS46084-6296STDY9478693,dirus +VBS46087-6296STDY9478696,dirus +VBS46088-6296STDY9478697,dirus +VBS46098-6296STDY9478707,dirus +VBS46121-6296STDY9478730,dirus +VBS46141-6296STDY9478750,dirus +VBS46145-6296STDY9478754,dirus +VBS46146-6296STDY9478755,dirus +VBS46154-6296STDY9478763,dirus +VBS46168-6296STDY9478779,dirus +VBS46172-6296STDY9478782,dirus +VBS46173-6296STDY9478783,dirus +VBS46175-6296STDY9478785,dirus +VBS46180-6296STDY9478790,dirus +VBS46183-6296STDY9478793,dirus +VBS46187-6296STDY9478797,dirus +VBS46188-6296STDY9478798,dirus +VBS46189-6296STDY9478799,dirus +VBS46190-6296STDY9478800,dirus +VBS46192-6296STDY9478801,dirus +VBS46198-6296STDY9478807,dirus +VBS45975-6296STDY10244530,dirus +VBS45983-6296STDY10244537,dirus +VBS45984-6296STDY10244538,dirus +VBS45985-6296STDY10244539,dirus +VBS45986-6296STDY10244540,dirus +VBS45987-6296STDY10244541,dirus +VBS45988-6296STDY10244542,dirus +VBS45989-6296STDY10244543,dirus +VBS45991-6296STDY10244545,dirus +VBS45992-6296STDY10244546,dirus +VBS45993-6296STDY10244547,dirus +VBS45994-6296STDY10244548,dirus +VBS45995-6296STDY10244549,dirus +VBS45996-6296STDY10244550,dirus +VBS45997-6296STDY10244551,dirus +VBS45998-6296STDY10244552,dirus +VBS45999-6296STDY10244553,dirus +VBS46000-6296STDY10244554,dirus +VBS46001-6296STDY10244555,dirus +VBS46002-6296STDY10244556,dirus +VBS46003-6296STDY10244557,dirus +VBS46004-6296STDY10244558,dirus +VBS46006-6296STDY10244560,dirus +VBS46007-6296STDY10244561,dirus +VBS46008-6296STDY10244562,dirus +VBS46009-6296STDY10244563,dirus +VBS46010-6296STDY10244564,dirus +VBS46011-6296STDY10244565,dirus +VBS46012-6296STDY10244566,dirus +VBS46013-6296STDY10244567,dirus +VBS46014-6296STDY10244568,dirus +VBS46016-6296STDY10244570,dirus +VBS46017-6296STDY10244571,dirus +VBS46019-6296STDY10244573,dirus +VBS46020-6296STDY10244574,dirus +VBS46021-6296STDY10244575,dirus +VBS46022-6296STDY10244576,dirus +VBS46025-6296STDY10244579,dirus +VBS46026-6296STDY10244580,dirus +VBS46027-6296STDY10244581,dirus +VBS46028-6296STDY10244582,dirus +VBS46029-6296STDY10244583,dirus +VBS46030-6296STDY10244584,dirus +VBS46031-6296STDY10244585,dirus +VBS46032-6296STDY10244586,dirus +VBS46033-6296STDY10244587,dirus +VBS46034-6296STDY10244588,dirus +VBS46035-6296STDY10244589,dirus +VBS46036-6296STDY10244590,dirus +VBS46037-6296STDY10244591,dirus +VBS46038-6296STDY10244592,dirus +VBS46039-6296STDY10244593,dirus +VBS46040-6296STDY10244594,dirus +VBS46041-6296STDY10244595,dirus +VBS46043-6296STDY10244597,dirus +VBS46044-6296STDY10244598,dirus +VBS46045-6296STDY10244599,dirus +VBS46046-6296STDY10244600,dirus +VBS46047-6296STDY10244601,dirus +VBS46048-6296STDY10244602,dirus +VBS46049-6296STDY10244603,dirus +VBS46051-6296STDY10244605,dirus +VBS46052-6296STDY10244606,dirus +VBS46053-6296STDY10244607,dirus +VBS46054-6296STDY10244608,dirus +VBS46055-6296STDY10244609,dirus +VBS46056-6296STDY10244610,dirus +VBS46057-6296STDY10244611,dirus +VBS46060-6296STDY10244614,dirus +VBS46061-6296STDY10244615,dirus +VBS46063-6296STDY10244617,dirus +VBS46064-6296STDY10244618,dirus +VBS46065-6296STDY10244619,dirus +VBS46068-6296STDY10244622,dirus +VBS46069-6296STDY10244625,dirus +VBS46070-6296STDY10244626,dirus +VBS46071-6296STDY10244627,dirus +VBS46072-6296STDY10244628,dirus +VBS46073-6296STDY10244629,dirus +VBS46074-6296STDY10244630,dirus +VBS46075-6296STDY10244631,dirus +VBS46076-6296STDY10244632,dirus +VBS46077-6296STDY10244633,dirus +VBS46079-6296STDY10244635,dirus +VBS46080-6296STDY10244636,dirus +VBS46081-6296STDY10244637,dirus +VBS46082-6296STDY10244638,dirus +VBS46085-6296STDY10244641,dirus +VBS46086-6296STDY10244642,dirus +VBS46089-6296STDY10244645,dirus +VBS46090-6296STDY10244646,dirus +VBS46091-6296STDY10244647,dirus +VBS46092-6296STDY10244648,dirus +VBS46093-6296STDY10244649,dirus +VBS46094-6296STDY10244650,dirus +VBS46095-6296STDY10244651,dirus +VBS46096-6296STDY10244652,dirus +VBS46097-6296STDY10244653,dirus +VBS46099-6296STDY10244655,dirus +VBS46100-6296STDY10244656,dirus +VBS46101-6296STDY10244657,dirus +VBS46102-6296STDY10244658,dirus +VBS46103-6296STDY10244659,dirus +VBS46104-6296STDY10244660,dirus +VBS46105-6296STDY10244661,dirus +VBS46106-6296STDY10244662,dirus +VBS46107-6296STDY10244663,dirus +VBS46108-6296STDY10244664,dirus +VBS46109-6296STDY10244665,dirus +VBS46110-6296STDY10244666,dirus +VBS46111-6296STDY10244667,dirus +VBS46112-6296STDY10244668,dirus +VBS46113-6296STDY10244669,dirus +VBS46114-6296STDY10244670,dirus +VBS46115-6296STDY10244671,dirus +VBS46116-6296STDY10244672,dirus +VBS46117-6296STDY10244673,dirus +VBS46118-6296STDY10244674,dirus +VBS46119-6296STDY10244675,dirus +VBS46120-6296STDY10244676,dirus +VBS46122-6296STDY10244678,dirus +VBS46123-6296STDY10244679,dirus +VBS46124-6296STDY10244680,dirus +VBS46125-6296STDY10244681,dirus +VBS46126-6296STDY10244682,dirus +VBS46127-6296STDY10244683,dirus +VBS46128-6296STDY10244684,dirus +VBS46129-6296STDY10244685,dirus +VBS46130-6296STDY10244686,dirus +VBS46131-6296STDY10244687,dirus +VBS46132-6296STDY10244688,dirus +VBS46133-6296STDY10244689,dirus +VBS46134-6296STDY10244690,dirus +VBS46135-6296STDY10244691,dirus +VBS46136-6296STDY10244692,dirus +VBS46137-6296STDY10244693,dirus +VBS46138-6296STDY10244694,dirus +VBS46139-6296STDY10244695,dirus +VBS46140-6296STDY10244696,dirus +VBS46142-6296STDY10244698,dirus +VBS46143-6296STDY10244699,dirus +VBS46144-6296STDY10244700,dirus +VBS46147-6296STDY10244703,dirus +VBS46148-6296STDY10244704,dirus +VBS46149-6296STDY10244705,dirus +VBS46150-6296STDY10244706,dirus +VBS46151-6296STDY10244707,dirus +VBS46152-6296STDY10244708,dirus +VBS46153-6296STDY10244709,dirus +VBS46155-6296STDY10244711,dirus +VBS46156-6296STDY10244712,dirus +VBS46157-6296STDY10244713,dirus +VBS46158-6296STDY10244714,dirus +VBS46160-6296STDY10244716,dirus +VBS46161-6296STDY10244717,dirus +VBS46162-6296STDY10244718,dirus +VBS46163-6296STDY10244721,dirus +VBS46164-6296STDY10244722,dirus +VBS46165-6296STDY10244723,dirus +VBS46166-6296STDY10244724,dirus +VBS46170-6296STDY10244727,dirus +VBS46171-6296STDY10244728,dirus +VBS46174-6296STDY10244731,dirus +VBS46176-6296STDY10244733,dirus +VBS46177-6296STDY10244734,dirus +VBS46178-6296STDY10244735,dirus +VBS46179-6296STDY10244736,dirus +VBS46181-6296STDY10244738,dirus +VBS46182-6296STDY10244739,dirus +VBS46184-6296STDY10244741,dirus +VBS46185-6296STDY10244742,dirus +VBS46186-6296STDY10244743,dirus +VBS46193-6296STDY10244749,dirus +VBS46194-6296STDY10244750,dirus +VBS46195-6296STDY10244751,dirus +VBS46196-6296STDY10244752,dirus +VBS46197-6296STDY10244753,dirus +VBS46199-6296STDY10244755,dirus +VBS46200-6296STDY10244756,dirus +VBS46201-6296STDY10244757,dirus +VBS46202-6296STDY10244758,dirus +VBS46203-6296STDY10244759,dirus +VBS46204-6296STDY10244760,dirus +VBS46205-6296STDY10244761,dirus +VBS46206-6296STDY10244762,dirus +VBS46207-6296STDY10244763,dirus diff --git a/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..dd54a7c5f --- /dev/null +++ b/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence +VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,41.69,42,42,43.08,43,43,0.946,0.03433 +VBS46300-6321STDY9453300,52.17,53,53,53.0,54,54,52.56,53,54,54.34,55,55,0.946,0.03436 +VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,67.76,69,69,70.22,71,71,0.948,0.03442 +VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,62.5,63,64,64.97,65,65,0.947,0.03441 +VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,44.25,45,45,45.88,46,46,0.947,0.03424 +VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,63.19,64,65,65.51,66,66,0.948,0.03448 +VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,66.65,68,67,69.32,70,69,0.947,0.03441 +VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,55.26,56,57,57.67,58,58,0.946,0.03434 +VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,47.96,48,49,49.81,50,49,0.947,0.03415 +VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,60.85,62,62,63.53,64,63,0.947,0.03438 +VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,56.96,58,58,58.55,59,59,0.949,0.03429 +VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.43,64,65,64.99,65,65,0.948,0.03447 +VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,61.86,63,63,64.63,65,65,0.947,0.03439 +VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,73.41,75,76,75.79,76,76,0.949,0.0345 +VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,53.13,54,54,55.22,55,55,0.947,0.03427 +VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,46.97,47,48,48.91,49,49,0.947,0.03424 +VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,40.18,40,40,41.62,41,41,0.946,0.03426 +VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,50.34,51,51,52.46,53,53,0.946,0.03433 +VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,56.45,57,57,58.84,59,59,0.947,0.0343 +VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,60.39,61,61,62.89,63,63,0.95,0.03434 +VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,55.8,56,57,58.31,58,58,0.947,0.03435 +VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,53.38,54,55,55.44,56,55,0.947,0.03434 +VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,69.19,70,71,72.5,73,73,0.949,0.03429 +VBS46322-6321STDY9453322,75.5,77,78,77.0,78,79,76.25,78,78,79.39,80,80,0.948,0.03438 +VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,50.51,51,51,52.64,53,53,0.947,0.03426 +VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,47.28,48,48,49.09,49,49,0.946,0.0343 +VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,64.38,65,66,67.53,68,68,0.947,0.03439 +VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,57.73,58,58,60.27,60,60,0.948,0.03432 +VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,62.97,64,64,65.63,66,66,0.948,0.0344 +VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,56.29,57,58,58.57,59,59,0.948,0.03423 +VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,62.48,63,64,64.93,65,65,0.947,0.03439 +VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,67.11,68,68,70.18,70,70,0.947,0.03445 +VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,53.12,54,54,55.63,56,55,0.948,0.03424 +VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,32.3,32,32,33.45,33,33,0.946,0.03412 +VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,58.94,59,59,61.85,62,61,0.947,0.03442 +VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,59.99,61,61,62.7,63,63,0.948,0.0343 +VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,66.31,67,68,69.36,70,70,0.95,0.03436 +VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,54.46,55,55,56.94,57,57,0.948,0.03428 +VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,46.16,46,47,47.99,48,47,0.946,0.03426 +VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,49.54,50,50,51.4,51,51,0.948,0.03421 +VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,58.66,59,59,61.93,62,61,0.946,0.03436 +VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,55.77,56,56,58.7,59,58,0.948,0.0343 +VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,50.85,51,51,53.54,53,53,0.947,0.03431 +VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,64.93,66,66,68.1,68,68,0.95,0.03433 +VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,53.54,54,53,56.01,56,55,0.946,0.03425 +VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,40.87,41,41,42.55,42,42,0.945,0.03424 +VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,68.49,69,70,71.95,72,72,0.948,0.03438 diff --git a/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..f287046c5 --- /dev/null +++ b/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence +VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,0.983,0.01374 +VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,0.984,0.01378 +VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,0.984,0.01378 +VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,0.984,0.01377 +VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,0.984,0.01377 +VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,0.983,0.01377 +VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,0.981,0.01546 +VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,0.981,0.01543 +VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,0.981,0.01538 +VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,0.98,0.01539 +VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,0.982,0.01536 +VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,0.983,0.01382 +VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,0.984,0.01375 +VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,0.984,0.01387 +VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,0.984,0.0138 +VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,0.984,0.01373 +VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,0.984,0.01378 +VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,0.984,0.0138 +VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,0.984,0.01379 +VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,0.984,0.01378 +VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,0.984,0.01379 +VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,0.984,0.01378 +VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,0.984,0.01376 +VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,0.984,0.01376 +VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,0.984,0.01376 +VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,0.984,0.01381 diff --git a/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..217837f6a --- /dev/null +++ b/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence +VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,0.982,0.01406 +VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,0.983,0.01392 +VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,0.982,0.0143 +VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,0.976,0.01665 +VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,0.982,0.01416 +VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,0.982,0.01417 +VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,0.978,0.01598 +VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,0.983,0.01387 +VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,0.983,0.01393 +VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,0.983,0.01379 +VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,0.983,0.01377 +VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,0.984,0.01377 +VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,0.983,0.01379 +VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,0.981,0.01793 +VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,0.983,0.01394 +VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,0.981,0.01532 +VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,0.983,0.01378 +VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,0.982,0.01402 +VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,0.982,0.01468 +VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,0.983,0.01383 +VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,0.983,0.01393 +VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,0.983,0.01381 +VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,0.982,0.01433 +VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,0.983,0.01384 +VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,0.981,0.01738 +VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,0.981,0.01615 +VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,0.982,0.01476 +VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,0.981,0.01622 +VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,0.983,0.01386 +VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,0.983,0.01378 +VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,0.983,0.01382 +VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,0.981,0.01644 +VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,0.982,0.01476 +VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,0.982,0.01442 +VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,0.981,0.01679 +VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,0.982,0.01496 +VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,0.982,0.0154 +VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,0.982,0.01467 +VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,0.982,0.01413 +VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,0.982,0.01552 +VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,0.982,0.01448 +VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,0.983,0.01384 +VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,0.982,0.01453 +VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,0.983,0.01378 +VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,0.983,0.01396 +VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,0.983,0.01386 +VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,0.983,0.01388 +VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,0.983,0.01381 +VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,0.983,0.01376 +VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,0.985,0.01378 +VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,0.984,0.01377 +VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,0.985,0.01374 +VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,0.982,0.01404 +VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,0.981,0.01549 +VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,0.984,0.0138 +VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,0.984,0.01377 +VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,0.985,0.01374 +VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,0.984,0.01374 +VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,0.983,0.01384 +VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,0.983,0.01401 +VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,0.983,0.01377 +VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,0.983,0.01388 +VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,0.982,0.01405 +VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,0.983,0.0139 +VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,0.982,0.01456 +VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,0.983,0.01405 +VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,0.979,0.01477 +VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,0.983,0.01398 +VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,0.983,0.01384 +VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,0.982,0.01428 +VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,0.958,0.03367 +VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,0.982,0.01398 +VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,0.983,0.01381 +VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,0.979,0.01493 +VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,0.982,0.01427 +VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,0.983,0.01379 +VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,0.979,0.01483 +VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,0.981,0.01462 +VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,0.981,0.01466 +VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,0.982,0.01419 +VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,0.983,0.0138 +VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,0.982,0.01395 +VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,0.981,0.01464 +VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,0.983,0.01383 +VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,0.983,0.01379 +VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,0.983,0.01398 +VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,0.956,0.03347 +VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,0.983,0.01387 +VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,0.983,0.0139 +VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,0.983,0.01396 +VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,0.981,0.01493 +VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,0.983,0.01381 +VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,0.956,0.03349 +VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,0.957,0.03355 +VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,0.984,0.01376 +VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,0.983,0.01378 +VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,0.984,0.01376 +VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,0.984,0.01378 +VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,0.984,0.01375 +VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,0.984,0.01378 +VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,0.984,0.01377 +VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,0.984,0.01379 +VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,0.984,0.01442 +VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,0.983,0.0138 +VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,0.984,0.0138 +VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,0.983,0.01378 +VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,0.984,0.01377 +VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,0.983,0.01379 +VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,0.983,0.01383 +VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,0.984,0.01375 +VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,0.984,0.0138 +VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,0.983,0.01392 +VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,0.984,0.01378 +VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,0.983,0.01375 +VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,0.983,0.01391 +VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,0.984,0.01397 +VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,0.983,0.01378 +VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,0.983,0.01383 +VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,0.983,0.0139 +VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,0.983,0.01376 +VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,0.981,0.01484 +VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,0.984,0.01376 +VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,0.983,0.01401 +VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,0.983,0.01381 +VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,0.982,0.01407 +VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,0.984,0.01378 +VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,0.983,0.01383 +VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,0.983,0.01381 +VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,0.982,0.01422 +VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,0.983,0.01379 +VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,0.984,0.0138 +VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,0.984,0.01373 +VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,0.983,0.01379 +VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,0.983,0.01379 +VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,0.983,0.01378 +VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,0.984,0.01374 +VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,0.984,0.01376 +VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,0.983,0.01371 +VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,0.983,0.01378 +VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,0.984,0.01381 +VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,0.983,0.01379 +VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,0.984,0.01375 +VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,0.983,0.01381 +VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,0.983,0.01378 +VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,0.984,0.01378 +VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,0.976,0.01475 +VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,0.984,0.01377 +VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,0.984,0.01376 +VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,0.984,0.01376 +VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,0.984,0.01377 +VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,0.983,0.01381 +VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,0.984,0.01377 +VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,0.984,0.01378 +VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,0.983,0.01376 +VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,0.983,0.01378 +VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,0.984,0.0138 +VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,0.984,0.01373 +VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,0.983,0.01375 +VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,0.983,0.01377 +VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,0.983,0.01382 +VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,0.983,0.01375 +VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,0.983,0.01385 +VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,0.983,0.01385 +VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,0.984,0.01413 +VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,0.983,0.01389 +VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,0.983,0.01378 +VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,0.983,0.01375 +VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,0.982,0.01384 +VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,0.983,0.01381 +VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,0.984,0.01386 +VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,0.983,0.01379 +VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,0.984,0.0138 +VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,0.984,0.01376 +VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,0.983,0.01378 +VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,0.983,0.01377 +VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,0.983,0.01381 +VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,0.983,0.01379 +VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,0.983,0.01378 +VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,0.984,0.01377 +VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,0.983,0.01376 +VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,0.983,0.01375 +VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,0.984,0.01375 +VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,0.984,0.01375 +VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,0.983,0.01375 +VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,0.984,0.01373 +VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,0.984,0.01379 +VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,0.984,0.01377 +VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,0.984,0.01378 +VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,0.984,0.01373 +VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,0.983,0.01374 +VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,0.983,0.01381 +VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,0.984,0.01387 +VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,0.984,0.01378 +VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,0.983,0.01382 +VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,0.983,0.01539 +VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,0.984,0.01375 +VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,0.984,0.01375 +VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,0.983,0.01374 +VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,0.983,0.01374 +VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,0.983,0.01376 +VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,0.984,0.01379 +VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,0.983,0.01378 +VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,0.984,0.01375 +VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,0.984,0.01375 +VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,0.984,0.01375 +VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,0.983,0.01381 +VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,0.984,0.0138 +VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,0.984,0.01378 +VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,0.984,0.01378 +VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,0.984,0.01375 +VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,0.984,0.01377 +VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,0.984,0.01372 +VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,0.982,0.01453 +VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,0.984,0.0138 +VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,0.984,0.01373 +VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,0.984,0.01377 +VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,0.983,0.01374 +VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,0.984,0.01374 +VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,0.984,0.01378 +VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,0.984,0.01377 +VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,0.983,0.01377 +VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,0.984,0.01375 +VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,0.983,0.01382 +VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,0.984,0.01379 +VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,0.984,0.01372 +VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,0.984,0.01376 +VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,0.984,0.01376 +VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,0.983,0.01382 +VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,0.984,0.01374 +VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,0.984,0.01375 +VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,0.984,0.01383 +VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,0.983,0.0138 +VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,0.984,0.01379 +VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,0.984,0.01375 +VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,0.983,0.0138 +VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,0.984,0.01379 +VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,0.983,0.01379 +VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,0.984,0.0138 +VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,0.983,0.01377 +VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,0.983,0.01382 +VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,0.983,0.01377 +VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,0.984,0.01374 +VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,0.984,0.01377 +VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,0.984,0.01378 +VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,0.984,0.01378 +VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,0.984,0.01374 +VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,0.984,0.01378 +VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,0.984,0.01378 diff --git a/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..234e010b3 --- /dev/null +++ b/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence +VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,0.952,0.03652 +VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,0.959,0.03382 +VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,0.952,0.03517 +VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,0.954,0.03525 +VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,0.955,0.03414 +VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,0.955,0.03482 +VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,0.957,0.03366 +VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,0.957,0.03361 +VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,0.956,0.03393 +VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,0.957,0.03383 +VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,0.958,0.03386 +VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,0.957,0.03365 +VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,0.958,0.03387 +VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,0.957,0.03359 +VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,0.957,0.03362 +VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,0.957,0.03363 +VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,0.955,0.03396 +VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,0.957,0.0336 +VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,0.959,0.03383 +VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,0.959,0.03395 +VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,0.958,0.03387 +VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,0.959,0.03382 +VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,0.957,0.03358 +VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,0.957,0.03366 +VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,0.957,0.03363 +VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,0.958,0.03388 +VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,0.955,0.0338 +VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,0.957,0.03363 +VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,0.958,0.03385 +VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,0.957,0.03369 +VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,0.957,0.03363 +VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,0.957,0.03363 +VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,0.958,0.03362 +VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,0.958,0.03389 +VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,0.959,0.03389 +VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,0.958,0.03375 +VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,0.958,0.03383 +VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,0.956,0.03361 +VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,0.957,0.03365 +VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,0.958,0.03382 +VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,0.957,0.03365 +VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,0.956,0.03397 +VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,0.957,0.03357 +VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,0.956,0.03364 +VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,0.956,0.03361 +VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,0.958,0.03385 +VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,0.956,0.03355 +VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,0.955,0.0337 +VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,0.957,0.03365 +VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,0.956,0.03359 +VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,0.957,0.03364 +VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,0.956,0.03359 +VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,0.956,0.03361 +VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,0.958,0.03384 +VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,0.956,0.03383 +VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,0.958,0.03385 +VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,0.958,0.03386 +VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,0.958,0.03385 +VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,0.957,0.03379 +VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,0.957,0.03381 +VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,0.958,0.03379 +VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,0.959,0.03395 +VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,0.957,0.03372 +VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,0.958,0.03371 +VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,0.958,0.03371 +VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,0.955,0.03376 +VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,0.958,0.03383 +VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,0.951,0.03565 +VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,0.959,0.03397 +VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,0.958,0.03385 +VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,0.958,0.03372 +VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,0.958,0.03372 +VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,0.957,0.03365 +VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,0.956,0.03358 +VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,0.956,0.03396 +VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,0.952,0.03534 +VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,0.956,0.03361 +VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,0.958,0.0338 +VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,0.957,0.03364 +VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,0.958,0.03388 +VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,0.958,0.0339 +VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,0.955,0.03359 +VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,0.952,0.03507 +VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,0.959,0.03395 +VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,0.957,0.03378 +VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,0.955,0.03388 +VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,0.957,0.03381 +VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,0.957,0.03376 +VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,0.958,0.0338 +VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,0.958,0.03387 +VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,0.957,0.03379 +VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,0.958,0.0338 +VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,0.956,0.03358 +VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,0.956,0.03397 +VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,0.958,0.0338 +VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,0.956,0.03387 +VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,0.957,0.03379 +VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,0.956,0.03363 +VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,0.955,0.03352 +VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,0.957,0.03382 +VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,0.957,0.0338 +VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,0.957,0.03378 +VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,0.957,0.03378 +VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,0.957,0.03358 +VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,0.956,0.03359 +VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,0.956,0.03365 +VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,0.956,0.03394 +VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,0.957,0.03365 +VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,0.952,0.03478 +VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,0.957,0.03359 +VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,0.957,0.03378 +VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,0.958,0.03386 +VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,0.958,0.03587 +VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,0.957,0.03378 +VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,0.956,0.03357 +VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,0.955,0.03362 +VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,0.958,0.03379 +VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,0.957,0.03364 +VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,0.957,0.03377 +VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,0.956,0.03358 +VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,0.957,0.03384 +VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,0.956,0.03359 +VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,0.956,0.03361 +VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,0.958,0.03386 +VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,0.956,0.03398 +VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,0.957,0.03366 +VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,0.956,0.03383 +VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,0.957,0.03361 +VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,0.957,0.03362 +VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,0.957,0.03387 +VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,0.956,0.03397 +VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,0.958,0.03375 +VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,0.958,0.03387 +VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,0.958,0.03383 +VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,0.957,0.0338 +VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,0.955,0.03391 +VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,0.957,0.03357 +VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,0.957,0.03379 +VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,0.956,0.0339 +VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,0.957,0.03365 +VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,0.955,0.03396 +VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,0.956,0.03358 +VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,0.958,0.03382 +VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,0.956,0.03385 +VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,0.957,0.03382 +VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,0.956,0.03359 +VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,0.957,0.0338 +VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,0.957,0.0338 +VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,0.956,0.0336 +VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,0.956,0.03355 +VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,0.956,0.03361 +VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,0.955,0.03387 +VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,0.957,0.03383 +VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,0.957,0.03381 +VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,0.958,0.03387 +VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,0.958,0.03377 +VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,0.955,0.03437 +VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,0.957,0.03385 +VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,0.957,0.03378 +VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,0.957,0.03379 +VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,0.953,0.03403 +VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,0.957,0.03381 +VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,0.956,0.03354 +VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,0.957,0.03377 +VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,0.957,0.03379 +VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,0.956,0.03391 +VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,0.955,0.0336 +VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,0.956,0.03356 +VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,0.956,0.03359 +VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,0.956,0.03394 +VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,0.956,0.03396 +VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,0.961,0.03411 +VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,0.957,0.03381 +VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,0.95,0.03358 +VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,0.956,0.0336 +VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,0.957,0.03361 +VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,0.957,0.03379 +VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,0.957,0.03376 +VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,0.957,0.03358 +VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,0.957,0.03367 +VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,0.955,0.03352 +VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,0.954,0.03396 +VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,0.956,0.03363 +VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,0.957,0.03378 +VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,0.955,0.03366 +VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,0.956,0.034 +VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,0.957,0.03362 +VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,0.956,0.03414 +VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,0.957,0.0337 +VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,0.956,0.03355 +VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,0.957,0.03378 +VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,0.958,0.03383 +VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,0.955,0.03357 +VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,0.956,0.0336 +VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,0.958,0.03393 +VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,0.954,0.03397 +VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,0.957,0.03364 +VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,0.957,0.03361 +VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,0.957,0.03366 +VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,0.958,0.0338 +VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,0.958,0.03381 +VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,0.954,0.03431 +VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,0.956,0.03355 +VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,0.954,0.03387 +VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,0.957,0.03377 +VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,0.956,0.03359 +VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,0.956,0.03356 +VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,0.959,0.03387 +VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,0.958,0.03387 +VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,0.958,0.03386 +VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,0.958,0.03382 +VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,0.957,0.03363 +VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,0.958,0.03384 +VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,0.955,0.03393 +VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,0.958,0.03386 +VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,0.957,0.03363 +VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,0.957,0.03365 +VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,0.958,0.03385 +VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,0.956,0.03361 diff --git a/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv b/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv new file mode 100644 index 000000000..f56c518e6 --- /dev/null +++ b/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv @@ -0,0 +1,48 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288,UKN +VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203,UKN +VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282,UKN +VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203,UKN +VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194,UKN +VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288,UKN +VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN diff --git a/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv new file mode 100644 index 000000000..bcdffb77d --- /dev/null +++ b/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -0,0 +1,48 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672491,median_cov_KB672491,mode_cov_KB672491,mean_cov_KB672492,median_cov_KB672492,mode_cov_KB672492,mean_cov_KB672503,median_cov_KB672503,mode_cov_KB672503,mean_cov_KB672514,median_cov_KB672514,mode_cov_KB672514,mean_cov_KB672525,median_cov_KB672525,mode_cov_KB672525,mean_cov_KB672536,median_cov_KB672536,mode_cov_KB672536,mean_cov_KB672547,median_cov_KB672547,mode_cov_KB672547,mean_cov_KB672558,median_cov_KB672558,mode_cov_KB672558,mean_cov_KB672569,median_cov_KB672569,mode_cov_KB672569,mean_cov_KB672580,median_cov_KB672580,mode_cov_KB672580,mean_cov_KB672591,median_cov_KB672591,mode_cov_KB672591,mean_cov_KB672602,median_cov_KB672602,mode_cov_KB672602,mean_cov_KB672603,median_cov_KB672603,mode_cov_KB672603,mean_cov_KB672614,median_cov_KB672614,mode_cov_KB672614,mean_cov_KB672625,median_cov_KB672625,mode_cov_KB672625,mean_cov_KB672636,median_cov_KB672636,mode_cov_KB672636,mean_cov_KB672647,median_cov_KB672647,mode_cov_KB672647,mean_cov_KB672658,median_cov_KB672658,mode_cov_KB672658,mean_cov_KB672680,median_cov_KB672680,mode_cov_KB672680,mean_cov_KB672691,median_cov_KB672691,mode_cov_KB672691,mean_cov_KB672702,median_cov_KB672702,mode_cov_KB672702,mean_cov_KB672713,median_cov_KB672713,mode_cov_KB672713,mean_cov_KB672714,median_cov_KB672714,mode_cov_KB672714,mean_cov_KB672725,median_cov_KB672725,mode_cov_KB672725,mean_cov_KB672736,median_cov_KB672736,mode_cov_KB672736,mean_cov_KB672747,median_cov_KB672747,mode_cov_KB672747,mean_cov_KB672758,median_cov_KB672758,mode_cov_KB672758,mean_cov_KB672769,median_cov_KB672769,mode_cov_KB672769,mean_cov_KB672780,median_cov_KB672780,mode_cov_KB672780,mean_cov_KB672788,median_cov_KB672788,mode_cov_KB672788,mean_cov_KB672789,median_cov_KB672789,mode_cov_KB672789,mean_cov_KB672790,median_cov_KB672790,mode_cov_KB672790,mean_cov_KB672791,median_cov_KB672791,mode_cov_KB672791,mean_cov_KB672792,median_cov_KB672792,mode_cov_KB672792,mean_cov_KB672793,median_cov_KB672793,mode_cov_KB672793,mean_cov_KB672794,median_cov_KB672794,mode_cov_KB672794,mean_cov_KB672795,median_cov_KB672795,mode_cov_KB672795,mean_cov_KB672796,median_cov_KB672796,mode_cov_KB672796,mean_cov_KB672797,median_cov_KB672797,mode_cov_KB672797,mean_cov_KB672798,median_cov_KB672798,mode_cov_KB672798,mean_cov_KB672799,median_cov_KB672799,mode_cov_KB672799,mean_cov_KB672800,median_cov_KB672800,mode_cov_KB672800,mean_cov_KB672801,median_cov_KB672801,mode_cov_KB672801,mean_cov_KB672802,median_cov_KB672802,mode_cov_KB672802,mean_cov_KB672803,median_cov_KB672803,mode_cov_KB672803,mean_cov_KB672804,median_cov_KB672804,mode_cov_KB672804,mean_cov_KB672805,median_cov_KB672805,mode_cov_KB672805,mean_cov_KB672806,median_cov_KB672806,mode_cov_KB672806,mean_cov_KB672807,median_cov_KB672807,mode_cov_KB672807,mean_cov_KB672808,median_cov_KB672808,mode_cov_KB672808,mean_cov_KB672809,median_cov_KB672809,mode_cov_KB672809,mean_cov_KB672810,median_cov_KB672810,mode_cov_KB672810,mean_cov_KB672811,median_cov_KB672811,mode_cov_KB672811,mean_cov_KB672812,median_cov_KB672812,mode_cov_KB672812,mean_cov_KB672813,median_cov_KB672813,mode_cov_KB672813,mean_cov_KB672814,median_cov_KB672814,mode_cov_KB672814,mean_cov_KB672815,median_cov_KB672815,mode_cov_KB672815,mean_cov_KB672816,median_cov_KB672816,mode_cov_KB672816,mean_cov_KB672817,median_cov_KB672817,mode_cov_KB672817,mean_cov_KB672818,median_cov_KB672818,mode_cov_KB672818,mean_cov_KB672819,median_cov_KB672819,mode_cov_KB672819,mean_cov_KB672820,median_cov_KB672820,mode_cov_KB672820,mean_cov_KB672821,median_cov_KB672821,mode_cov_KB672821,mean_cov_KB672823,median_cov_KB672823,mode_cov_KB672823,mean_cov_KB672824,median_cov_KB672824,mode_cov_KB672824,mean_cov_KB672825,median_cov_KB672825,mode_cov_KB672825,mean_cov_KB672826,median_cov_KB672826,mode_cov_KB672826,mean_cov_KB672827,median_cov_KB672827,mode_cov_KB672827,mean_cov_KB672828,median_cov_KB672828,mode_cov_KB672828,mean_cov_KB672829,median_cov_KB672829,mode_cov_KB672829,mean_cov_KB672830,median_cov_KB672830,mode_cov_KB672830,mean_cov_KB672832,median_cov_KB672832,mode_cov_KB672832,mean_cov_KB672833,median_cov_KB672833,mode_cov_KB672833,mean_cov_KB672835,median_cov_KB672835,mode_cov_KB672835,mean_cov_KB672837,median_cov_KB672837,mode_cov_KB672837,mean_cov_KB672838,median_cov_KB672838,mode_cov_KB672838,mean_cov_KB672839,median_cov_KB672839,mode_cov_KB672839,mean_cov_KB672843,median_cov_KB672843,mode_cov_KB672843,mean_cov_KB672845,median_cov_KB672845,mode_cov_KB672845,mean_cov_KB672846,median_cov_KB672846,mode_cov_KB672846,mean_cov_KB672849,median_cov_KB672849,mode_cov_KB672849,mean_cov_KB672851,median_cov_KB672851,mode_cov_KB672851,mean_cov_KB672855,median_cov_KB672855,mode_cov_KB672855,mean_cov_KB672857,median_cov_KB672857,mode_cov_KB672857,mean_cov_KB672859,median_cov_KB672859,mode_cov_KB672859,mean_cov_KB672861,median_cov_KB672861,mode_cov_KB672861,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672869,median_cov_KB672869,mode_cov_KB672869,mean_cov_KB672871,median_cov_KB672871,mode_cov_KB672871,mean_cov_KB672873,median_cov_KB672873,mode_cov_KB672873,mean_cov_KB672877,median_cov_KB672877,mode_cov_KB672877,mean_cov_KB672880,median_cov_KB672880,mode_cov_KB672880,mean_cov_KB672884,median_cov_KB672884,mode_cov_KB672884,mean_cov_KB672891,median_cov_KB672891,mode_cov_KB672891,mean_cov_KB672892,median_cov_KB672892,mode_cov_KB672892,mean_cov_KB672894,median_cov_KB672894,mode_cov_KB672894,mean_cov_KB672900,median_cov_KB672900,mode_cov_KB672900,mean_cov_KB672901,median_cov_KB672901,mode_cov_KB672901,mean_cov_KB672902,median_cov_KB672902,mode_cov_KB672902,mean_cov_KB672905,median_cov_KB672905,mode_cov_KB672905,mean_cov_KB672907,median_cov_KB672907,mode_cov_KB672907,mean_cov_KB672913,median_cov_KB672913,mode_cov_KB672913,mean_cov_KB672914,median_cov_KB672914,mode_cov_KB672914,mean_cov_KB672915,median_cov_KB672915,mode_cov_KB672915,mean_cov_KB672924,median_cov_KB672924,mode_cov_KB672924,mean_cov_KB672930,median_cov_KB672930,mode_cov_KB672930,mean_cov_KB672932,median_cov_KB672932,mode_cov_KB672932,mean_cov_KB672935,median_cov_KB672935,mode_cov_KB672935,mean_cov_KB672946,median_cov_KB672946,mode_cov_KB672946,mean_cov_KB672954,median_cov_KB672954,mode_cov_KB672954,mean_cov_KB672957,median_cov_KB672957,mode_cov_KB672957,mean_cov_KB672964,median_cov_KB672964,mode_cov_KB672964,mean_cov_KB672968,median_cov_KB672968,mode_cov_KB672968,mean_cov_KB672975,median_cov_KB672975,mode_cov_KB672975,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB672980,median_cov_KB672980,mode_cov_KB672980,mean_cov_KB672991,median_cov_KB672991,mode_cov_KB672991,mean_cov_KB673001,median_cov_KB673001,mode_cov_KB673001,mean_cov_KB673002,median_cov_KB673002,mode_cov_KB673002,mean_cov_KB673013,median_cov_KB673013,mode_cov_KB673013,mean_cov_KB673024,median_cov_KB673024,mode_cov_KB673024,mean_cov_KB673027,median_cov_KB673027,mode_cov_KB673027,mean_cov_KB673028,median_cov_KB673028,mode_cov_KB673028,mean_cov_KB673035,median_cov_KB673035,mode_cov_KB673035,mean_cov_KB673044,median_cov_KB673044,mode_cov_KB673044,mean_cov_KB673046,median_cov_KB673046,mode_cov_KB673046,mean_cov_KB673057,median_cov_KB673057,mode_cov_KB673057,mean_cov_KB673068,median_cov_KB673068,mode_cov_KB673068,mean_cov_KB673070,median_cov_KB673070,mode_cov_KB673070,mean_cov_KB673079,median_cov_KB673079,mode_cov_KB673079,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673091,median_cov_KB673091,mode_cov_KB673091,mean_cov_KB673102,median_cov_KB673102,mode_cov_KB673102,mean_cov_KB673113,median_cov_KB673113,mode_cov_KB673113,mean_cov_KB673124,median_cov_KB673124,mode_cov_KB673124,mean_cov_KB673130,median_cov_KB673130,mode_cov_KB673130,mean_cov_KB673135,median_cov_KB673135,mode_cov_KB673135,mean_cov_KB673138,median_cov_KB673138,mode_cov_KB673138,mean_cov_KB673146,median_cov_KB673146,mode_cov_KB673146,mean_cov_KB673157,median_cov_KB673157,mode_cov_KB673157,mean_cov_KB673168,median_cov_KB673168,mode_cov_KB673168,mean_cov_KB673179,median_cov_KB673179,mode_cov_KB673179,mean_cov_KB673187,median_cov_KB673187,mode_cov_KB673187,mean_cov_KB673190,median_cov_KB673190,mode_cov_KB673190,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,mean_cov_KB673202,median_cov_KB673202,mode_cov_KB673202,mean_cov_KB673213,median_cov_KB673213,mode_cov_KB673213,mean_cov_KB673224,median_cov_KB673224,mode_cov_KB673224,mean_cov_KB673235,median_cov_KB673235,mode_cov_KB673235,mean_cov_KB673246,median_cov_KB673246,mode_cov_KB673246,mean_cov_KB673257,median_cov_KB673257,mode_cov_KB673257,mean_cov_KB673268,median_cov_KB673268,mode_cov_KB673268,mean_cov_KB673279,median_cov_KB673279,mode_cov_KB673279,mean_cov_KB673290,median_cov_KB673290,mode_cov_KB673290,mean_cov_KB673301,median_cov_KB673301,mode_cov_KB673301,mean_cov_KB673312,median_cov_KB673312,mode_cov_KB673312,mean_cov_KB673313,median_cov_KB673313,mode_cov_KB673313,mean_cov_KB673324,median_cov_KB673324,mode_cov_KB673324,mean_cov_KB673335,median_cov_KB673335,mode_cov_KB673335,mean_cov_KB673346,median_cov_KB673346,mode_cov_KB673346,mean_cov_KB673357,median_cov_KB673357,mode_cov_KB673357,mean_cov_KB673368,median_cov_KB673368,mode_cov_KB673368,mean_cov_KB673379,median_cov_KB673379,mode_cov_KB673379,mean_cov_KB673390,median_cov_KB673390,mode_cov_KB673390,mean_cov_KB673401,median_cov_KB673401,mode_cov_KB673401,mean_cov_KB673412,median_cov_KB673412,mode_cov_KB673412,mean_cov_KB673423,median_cov_KB673423,mode_cov_KB673423,mean_cov_KB673424,median_cov_KB673424,mode_cov_KB673424,mean_cov_KB673435,median_cov_KB673435,mode_cov_KB673435,mean_cov_KB673446,median_cov_KB673446,mode_cov_KB673446,mean_cov_KB673457,median_cov_KB673457,mode_cov_KB673457,mean_cov_KB673468,median_cov_KB673468,mode_cov_KB673468,mean_cov_KB673479,median_cov_KB673479,mode_cov_KB673479,mean_cov_KB673490,median_cov_KB673490,mode_cov_KB673490,mean_cov_KB673501,median_cov_KB673501,mode_cov_KB673501,mean_cov_KB673512,median_cov_KB673512,mode_cov_KB673512,mean_cov_KB673523,median_cov_KB673523,mode_cov_KB673523,mean_cov_KB673534,median_cov_KB673534,mode_cov_KB673534,mean_cov_KB673535,median_cov_KB673535,mode_cov_KB673535,mean_cov_KB673546,median_cov_KB673546,mode_cov_KB673546,mean_cov_KB673557,median_cov_KB673557,mode_cov_KB673557,mean_cov_KB673568,median_cov_KB673568,mode_cov_KB673568,mean_cov_KB673579,median_cov_KB673579,mode_cov_KB673579,mean_cov_KB673590,median_cov_KB673590,mode_cov_KB673590,mean_cov_KB673601,median_cov_KB673601,mode_cov_KB673601,mean_cov_KB673612,median_cov_KB673612,mode_cov_KB673612,mean_cov_KB673623,median_cov_KB673623,mode_cov_KB673623,mean_cov_KB673634,median_cov_KB673634,mode_cov_KB673634,mean_cov_KB673645,median_cov_KB673645,mode_cov_KB673645,mean_cov_KB673646,median_cov_KB673646,mode_cov_KB673646,mean_cov_KB673657,median_cov_KB673657,mode_cov_KB673657,mean_cov_KB673668,median_cov_KB673668,mode_cov_KB673668,mean_cov_KB673679,median_cov_KB673679,mode_cov_KB673679,mean_cov_KB673690,median_cov_KB673690,mode_cov_KB673690,mean_cov_KB673701,median_cov_KB673701,mode_cov_KB673701,mean_cov_KB673712,median_cov_KB673712,mode_cov_KB673712,mean_cov_KB673723,median_cov_KB673723,mode_cov_KB673723,mean_cov_KB673734,median_cov_KB673734,mode_cov_KB673734,mean_cov_KB673745,median_cov_KB673745,mode_cov_KB673745,frac_gen_cov,divergence +VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,43.79,44,45,60.55,27,250,16.23,11,4,38.94,39,42,44.94,45,43,54.29,35,9,45.56,42,2,52.79,54,2,34.42,29,5,55.21,47,5,47.0,48,50,40.02,40,41,26.22,26,4,36.38,27,2,39.86,25,8,40.5,42,44,37.91,20,11,59.17,38,35,30.22,30,47,87.41,72,250,99.45,56,250,40.2,41,42,78.14,49,30,38.88,37,37,83.94,34,12,66.36,21,250,38.76,40,37,39.03,38,39,59.96,28,250,156.93,227,250,198.16,249,250,97.68,64,250,39.5,40,41,41.69,42,42,41.74,38,41,41.35,32,33,30.58,28,13,65.33,35,250,44.28,41,40,49.37,38,44,24.49,23,22,30.33,31,15,36.77,39,39,40.66,41,42,30.6,31,41,26.96,26,23,36.19,24,3,32.29,22,23,35.4,38,41,41.02,23,2,39.73,34,43,81.5,66,21,53.69,38,5,34.67,36,40,41.7,42,43,33.54,35,37,28.07,26,13,77.45,27,250,38.85,42,45,54.61,39,3,28.84,18,2,35.55,36,38,134.14,139,250,64.91,24,2,42.47,43,43,62.35,29,250,13.41,14,13,114.89,51,250,55.01,38,250,46.89,35,14,101.41,72,250,39.55,25,10,86.38,50,250,40.47,41,41,40.24,34,10,49.96,38,7,29.04,29,28,52.07,21,3,104.64,54,250,39.58,41,41,73.95,43,6,138.3,127,250,92.6,44,250,42.19,42,43,35.91,36,35,94.91,64,250,41.69,42,42,40.46,41,41,44.44,27,9,29.76,29,2,73.41,93,10,40.08,41,41,70.99,61,250,42.22,41,42,52.12,28,3,48.28,26,3,54.92,44,29,21.33,15,2,39.97,41,41,47.79,27,2,131.4,123,250,40.01,40,41,38.28,29,4,50.06,46,39,38.71,40,40,28.73,28,28,36.66,32,15,42.06,40,41,40.04,40,41,83.07,33,250,37.81,39,40,42.39,43,45,41.88,41,42,50.39,45,5,43.08,43,43,40.01,40,42,38.86,40,42,60.32,60,8,40.04,40,41,40.55,41,41,41.0,38,40,52.51,32,3,101.08,61,250,41.7,42,42,40.63,34,26,43.94,44,43,40.55,41,42,40.81,41,41,22.44,11,6,44.21,45,45,39.73,40,41,41.93,41,42,40.24,41,42,38.84,39,41,44.91,41,41,35.1,37,37,42.02,43,42,232.25,250,250,38.77,39,39,40.06,41,41,36.63,37,40,40.41,41,42,2.45,2,2,41.75,42,42,41.48,42,42,40.0,41,41,39.07,40,41,41.43,39,41,70.47,29,250,40.79,39,38,39.76,41,40,39.15,35,42,41.15,40,40,42.83,42,43,76.39,32,250,42.02,42,42,45.23,39,40,39.8,39,40,45.23,42,40,39.32,40,42,42.4,39,38,41.98,39,41,57.08,29,250,40.08,40,40,37.03,38,41,44.01,41,43,42.85,43,43,40.93,38,37,70.11,50,250,50.12,32,25,83.34,64,250,32.28,29,2,42.77,36,41,40.47,41,41,39.04,37,37,72.68,26,250,55.31,53,3,40.12,41,42,69.35,34,250,51.5,32,3,41.52,42,45,55.5,39,250,49.38,28,250,41.06,22,2,38.34,36,37,41.41,39,42,70.15,35,250,40.96,39,38,41.08,41,42,44.65,34,4,62.66,46,4,42.0,41,42,51.54,18,250,105.22,76,250,69.42,34,250,42.66,39,41,24.68,18,2,33.62,31,4,66.75,52,7,0.946,0.03433 +VBS46300-6321STDY9453300,52.17,53,53,53.0,54,54,55.48,56,56,75.61,40,250,27.9,21,2,48.46,50,51,58.59,56,50,67.28,41,250,101.45,69,250,52.44,39,5,41.34,33,15,84.55,66,15,57.66,59,62,50.13,51,52,32.54,33,5,44.01,33,2,50.52,41,2,51.84,54,55,44.1,25,250,79.53,48,250,37.46,31,25,110.62,91,250,118.04,80,250,50.65,52,54,122.63,88,250,46.91,46,49,91.77,74,2,67.97,39,250,48.13,49,47,45.75,47,48,77.52,36,250,160.03,223,250,127.56,131,131,101.74,72,250,49.78,51,53,54.64,54,51,51.32,49,53,48.8,41,44,37.18,35,12,77.18,45,250,42.32,41,49,56.41,47,47,30.18,30,36,38.52,39,55,45.84,50,51,50.56,51,53,39.03,39,41,34.74,34,24,40.26,32,32,48.64,34,2,44.22,48,51,42.33,22,2,49.0,43,51,109.61,82,250,66.17,54,3,42.26,44,50,52.61,54,54,43.24,46,47,33.99,32,29,74.41,35,250,50.92,53,51,103.89,99,6,44.47,29,4,44.69,46,45,141.24,171,250,75.33,30,250,53.68,54,56,75.21,35,250,6.37,4,2,115.58,71,250,60.85,44,250,41.06,25,19,101.74,71,250,52.25,32,9,91.08,43,250,50.72,51,53,42.43,29,24,75.23,58,2,34.28,33,31,61.49,32,250,116.94,77,250,49.66,51,53,68.06,37,3,131.88,137,250,103.57,50,250,53.15,54,54,44.3,45,47,115.65,79,250,52.56,53,54,50.65,51,53,55.69,24,2,34.59,38,2,139.03,184,250,50.47,51,52,91.42,79,250,53.06,52,53,54.54,32,2,59.11,36,2,110.93,95,250,29.28,16,3,50.36,52,53,57.87,32,24,129.38,76,250,50.54,51,52,45.42,34,4,61.98,55,42,48.82,50,51,46.88,45,18,44.56,41,33,52.15,51,50,49.46,50,52,79.16,39,250,47.39,49,52,82.82,56,47,52.26,52,52,50.27,45,39,54.34,55,55,50.36,51,52,49.82,51,51,92.16,105,6,50.28,51,51,51.0,51,53,50.28,48,49,58.91,34,13,119.93,103,250,52.12,52,53,51.06,46,4,55.19,56,58,50.19,51,52,51.0,51,52,30.93,16,10,56.05,56,56,49.91,51,52,51.76,51,52,50.49,51,52,49.52,49,51,55.79,52,54,44.73,48,48,53.72,55,54,227.09,250,250,48.17,49,50,50.25,52,54,45.5,47,51,51.22,52,54,4.23,4,2,52.44,52,53,52.35,53,53,50.43,51,53,48.65,50,50,51.75,50,52,85.26,41,250,52.02,50,52,49.92,51,52,47.06,43,49,50.34,50,50,49.83,51,52,81.73,43,250,52.88,53,54,54.08,48,52,50.04,50,49,56.56,53,55,48.65,50,50,51.85,50,49,50.3,49,48,66.83,34,250,50.51,51,53,46.15,49,51,52.94,51,50,54.02,54,54,50.9,49,50,92.23,75,250,58.63,40,2,91.35,76,250,48.03,43,4,51.05,45,49,50.84,51,50,48.7,47,49,84.9,37,250,76.67,85,3,50.6,52,53,73.6,38,250,68.06,41,2,52.49,52,53,68.0,51,2,54.88,34,250,48.54,26,3,47.54,45,48,53.87,49,48,87.34,48,250,51.48,50,52,51.67,53,53,66.04,54,2,79.52,59,250,52.38,52,54,61.88,36,250,115.86,104,250,62.48,37,250,54.35,49,49,34.01,25,6,40.94,40,4,87.3,66,4,0.946,0.03436 +VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,71.02,72,72,73.54,39,250,28.38,18,12,60.78,64,71,72.67,74,75,82.42,51,4,111.85,91,250,53.46,33,24,51.9,44,2,95.56,105,250,76.59,77,78,64.76,66,68,41.06,41,4,51.7,42,3,60.86,58,3,67.5,70,75,54.61,31,250,88.06,63,250,51.55,52,6,133.29,148,250,132.9,116,250,65.09,67,69,121.71,78,250,57.62,56,5,121.34,102,250,92.74,31,250,63.85,66,70,63.91,62,63,76.97,44,250,154.72,193,250,191.05,219,250,109.5,66,250,63.64,66,68,68.84,70,67,66.0,64,69,58.17,54,250,44.44,43,17,81.76,54,250,53.71,54,63,66.52,59,250,41.34,40,42,47.12,45,31,56.99,64,65,65.59,67,68,46.78,47,35,44.91,44,31,53.77,42,4,53.52,36,35,56.81,62,69,52.79,30,3,57.93,49,4,112.18,104,250,83.16,73,2,55.46,59,63,67.92,69,70,54.63,58,60,43.31,41,67,84.58,44,250,66.05,69,68,82.62,75,250,48.47,28,3,60.37,64,68,142.35,174,250,80.68,34,250,68.8,70,71,82.5,46,250,4.57,3,3,111.68,65,250,72.6,60,250,75.79,58,21,128.85,130,250,63.22,39,250,107.06,67,250,65.47,67,68,60.86,55,18,63.06,50,2,47.64,47,46,62.29,35,250,121.73,86,250,64.94,67,68,83.08,44,250,151.59,181,250,110.05,65,250,68.62,69,70,53.38,54,72,112.13,81,250,67.76,69,69,65.31,67,67,74.43,43,250,47.2,55,2,107.89,117,2,65.06,67,68,113.94,121,250,67.98,67,68,66.66,38,2,72.11,38,250,82.47,62,32,36.24,25,2,64.78,67,69,72.51,37,19,147.92,173,250,65.52,67,68,61.01,49,6,79.85,73,65,63.23,65,67,45.4,48,60,47.86,45,2,66.97,66,67,63.72,66,67,94.79,55,250,60.71,64,67,50.62,55,63,67.19,67,67,75.74,67,4,70.22,71,71,65.13,67,67,64.6,67,68,85.51,91,30,65.04,66,67,65.68,66,66,64.01,63,66,88.49,53,250,131.69,155,250,67.81,68,68,60.69,62,2,70.8,71,72,65.72,67,68,65.7,67,68,35.61,21,14,72.21,73,73,64.45,66,68,65.58,66,71,65.18,67,68,61.86,63,68,70.81,67,68,57.23,61,68,68.21,70,71,226.32,250,250,63.48,65,65,65.43,67,67,58.41,61,66,66.45,68,70,4.08,3,2,67.92,68,69,67.48,69,70,64.53,66,66,63.37,65,65,65.43,65,65,88.13,51,250,66.04,65,66,64.08,67,68,60.11,56,67,65.37,65,65,64.31,67,69,103.44,49,250,68.29,69,70,68.83,64,250,64.21,65,67,70.24,68,70,62.98,65,65,63.85,65,70,62.4,63,68,75.59,47,250,65.16,66,68,60.05,63,68,66.81,66,65,69.75,70,70,64.37,62,63,109.88,94,250,75.8,58,250,111.92,92,250,47.65,41,3,65.01,60,250,66.34,68,70,62.83,63,67,96.86,46,250,93.39,89,5,65.34,67,68,82.38,50,250,68.6,43,2,66.04,67,68,70.91,54,250,67.99,44,250,64.82,36,2,58.33,59,63,70.34,67,67,95.68,55,250,65.85,65,68,66.39,68,69,74.81,55,250,100.29,70,250,66.99,67,69,61.16,28,250,136.51,138,250,75.25,42,250,68.41,64,62,40.71,33,3,52.48,48,4,94.22,70,250,0.948,0.03442 +VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,66.29,67,66,76.23,39,250,27.97,21,10,58.09,60,60,69.48,69,73,68.46,47,2,79.75,55,2,59.53,41,23,49.67,39,3,95.15,94,250,71.28,72,68,59.33,61,61,37.78,38,4,48.06,39,3,54.06,41,3,62.73,65,68,48.81,30,6,79.52,52,250,45.08,41,3,120.06,107,250,128.8,108,250,59.84,61,63,111.5,82,250,55.31,53,54,108.91,74,250,78.26,34,250,57.83,60,61,67.75,56,56,78.55,42,250,168.15,249,250,181.46,196,250,112.61,70,250,59.05,61,63,66.13,67,66,55.38,54,59,55.34,50,55,44.01,41,9,75.47,49,250,47.25,46,50,63.37,54,250,39.25,39,32,44.41,45,67,53.01,57,61,60.06,61,63,45.52,46,32,41.05,40,32,48.25,37,20,46.37,32,32,53.6,59,65,52.7,28,2,58.06,48,4,113.67,93,250,73.77,58,3,49.11,51,60,62.59,64,64,50.28,54,57,41.16,39,24,82.03,40,250,59.76,62,66,63.85,44,250,44.95,22,8,52.82,55,57,151.04,234,250,80.43,35,250,64.0,65,67,78.3,46,250,7.88,3,2,123.41,69,250,82.37,59,250,69.36,50,23,114.72,120,250,59.16,39,250,92.34,44,250,60.0,61,62,58.52,54,59,88.15,78,5,43.18,43,47,63.96,35,250,133.95,121,250,59.93,62,62,93.5,60,250,149.35,176,250,107.32,60,250,63.12,64,65,49.56,52,58,110.53,85,250,62.5,63,64,60.06,61,62,74.06,44,250,54.73,50,51,128.92,174,250,59.48,61,61,111.51,114,250,62.93,62,62,57.16,36,2,71.23,46,4,84.9,55,250,41.46,32,3,59.77,61,63,61.27,30,16,142.06,171,250,59.32,60,61,53.27,49,20,73.52,65,54,58.08,59,60,72.33,78,29,45.84,47,53,61.34,60,60,58.51,60,63,88.64,41,250,55.48,58,61,83.63,55,47,61.15,61,61,67.9,55,27,64.97,65,65,59.6,61,62,59.44,61,63,83.85,86,27,59.16,60,62,59.4,60,60,58.75,57,59,87.05,56,6,135.19,154,250,62.58,63,64,63.51,57,58,66.34,67,67,59.35,61,63,59.64,60,62,33.07,14,14,66.92,67,65,59.1,61,62,61.66,61,62,59.62,61,61,57.15,58,60,63.05,61,63,52.26,56,57,63.81,65,65,224.74,250,250,57.14,58,59,60.28,62,62,54.19,56,61,60.29,61,62,5.31,4,3,62.11,62,60,62.21,63,64,59.13,60,61,57.52,59,62,59.02,58,59,89.76,49,250,60.47,59,59,58.21,60,61,57.98,53,59,58.65,58,61,59.2,61,61,93.09,45,250,63.07,64,64,63.99,58,60,58.85,59,61,64.87,63,63,58.13,60,59,62.58,58,57,58.73,57,57,68.58,38,250,58.14,59,60,54.39,58,62,61.31,61,61,64.26,65,65,58.09,57,58,97.23,76,250,67.72,52,250,101.61,75,250,43.39,37,2,61.17,55,250,61.97,63,60,57.34,56,60,83.01,35,250,116.87,135,250,60.11,62,63,81.43,47,250,63.84,48,2,60.7,62,61,73.92,54,250,58.98,37,250,70.78,53,250,53.44,53,57,61.14,58,58,87.87,53,250,61.1,59,58,61.13,62,63,82.47,67,2,98.72,70,250,61.97,63,67,68.69,49,250,130.84,125,250,82.41,39,250,64.13,60,62,60.15,44,2,43.93,41,6,88.46,70,250,0.947,0.03441 +VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,46.41,47,47,66.42,29,250,21.5,15,3,42.14,43,45,49.5,49,48,50.85,34,2,103.98,58,250,39.9,31,8,35.31,31,2,79.6,79,14,49.03,50,54,42.54,43,44,26.17,25,20,41.08,32,4,30.13,22,3,43.9,45,49,39.44,21,15,68.3,42,250,32.86,30,19,91.85,73,250,106.34,72,250,42.71,44,44,93.23,51,250,41.04,42,45,103.59,62,250,64.92,24,250,42.07,43,43,41.43,40,41,68.04,30,250,87.1,99,45,185.44,235,250,95.32,54,250,42.13,43,44,45.3,46,45,44.4,41,45,44.87,36,37,39.6,36,10,74.21,38,250,37.06,34,35,52.07,41,44,25.57,26,31,32.1,30,18,37.03,39,43,43.37,44,45,31.69,33,40,29.3,28,22,34.54,29,5,39.43,24,15,36.72,40,41,29.51,21,2,41.43,35,44,105.06,85,250,55.27,41,5,36.84,38,39,44.36,45,45,37.24,40,46,28.17,27,19,74.16,27,250,39.82,43,47,101.43,86,250,36.78,21,2,40.91,43,45,141.85,191,250,61.77,18,6,44.99,46,46,68.52,31,250,7.99,4,2,107.13,68,250,54.58,39,250,55.25,29,20,98.25,77,250,42.92,27,36,82.72,55,250,43.18,44,44,47.22,45,45,67.08,55,2,30.88,30,27,52.68,25,4,107.7,62,250,42.52,44,45,63.53,30,9,151.21,161,250,98.73,47,250,44.89,45,46,35.44,36,41,88.09,61,250,44.25,45,45,43.0,43,44,47.51,29,23,33.45,37,2,105.86,126,3,42.87,43,44,78.48,74,250,45.46,44,44,46.0,24,2,46.78,28,4,64.59,60,48,20.29,14,6,42.63,43,44,44.24,23,15,91.96,96,2,43.25,44,44,78.08,43,250,54.12,49,40,41.61,42,43,22.71,23,23,32.01,32,37,45.21,43,44,42.32,43,44,83.43,33,250,39.85,41,43,53.2,46,2,44.62,44,44,47.78,42,17,45.88,46,46,43.54,44,44,42.03,43,43,85.61,96,6,42.69,43,44,43.47,44,44,43.56,41,42,71.54,35,6,112.9,72,250,44.46,44,44,39.56,40,45,46.53,46,47,43.2,44,44,43.29,44,44,34.9,25,3,47.05,47,48,42.03,43,44,44.53,43,44,43.13,44,44,42.03,42,42,47.73,44,44,38.84,41,44,44.75,46,47,229.83,250,250,41.64,43,44,42.38,43,46,37.02,38,43,43.55,44,44,3.3,3,2,44.58,45,45,44.14,45,45,43.1,44,45,42.16,43,42,44.87,43,43,80.52,43,250,44.07,43,45,42.64,44,46,41.85,37,41,43.66,43,42,41.83,43,45,81.71,40,250,44.63,45,45,48.52,42,43,43.39,44,46,48.22,44,43,42.56,43,44,43.86,42,43,46.83,43,42,69.97,34,250,43.2,44,46,40.49,42,45,45.95,43,44,45.51,46,46,44.14,42,43,74.34,52,250,52.81,36,31,74.73,62,250,40.37,31,3,46.13,38,44,44.44,46,50,41.34,40,40,84.39,42,250,61.76,66,73,42.81,44,45,66.01,32,250,47.25,30,2,43.96,44,48,51.44,35,4,48.07,28,250,53.64,39,3,42.36,40,47,46.31,43,44,77.5,40,250,44.31,43,45,43.64,44,45,61.32,38,3,65.4,46,11,45.48,45,45,67.83,23,250,103.02,82,250,54.57,34,3,46.5,44,44,32.37,25,6,35.41,32,8,62.61,51,6,0.947,0.03424 +VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,66.94,67,67,79.63,40,250,26.99,21,7,58.06,59,62,71.97,71,71,75.27,55,250,115.12,97,250,73.85,68,250,47.24,38,6,95.45,97,250,74.23,75,79,60.16,61,62,42.97,42,3,52.94,45,9,63.2,31,25,61.93,65,67,46.23,29,5,86.5,57,250,64.12,53,2,124.93,117,250,125.3,72,250,60.8,62,64,119.09,83,250,64.14,56,3,111.9,73,250,93.48,33,250,58.33,60,63,68.1,57,250,79.27,45,250,167.63,249,250,222.33,250,250,109.33,67,250,60.0,62,62,66.09,66,67,61.58,56,58,57.22,50,250,52.81,47,43,84.18,57,250,50.68,49,50,65.35,57,250,37.02,37,38,44.46,43,29,53.41,57,60,61.28,62,64,45.39,47,56,42.44,42,30,53.84,43,13,56.44,37,250,51.64,56,65,62.34,30,3,62.76,52,58,130.3,102,250,81.82,70,250,49.77,53,62,63.38,64,64,52.13,55,59,40.34,39,39,84.92,41,250,59.06,62,66,105.89,90,250,56.37,34,31,56.09,57,56,146.38,193,250,83.34,35,250,64.82,65,65,81.82,48,250,5.91,4,3,128.26,85,250,70.11,52,250,64.3,47,41,131.64,127,250,69.82,38,250,111.7,74,250,60.78,61,62,45.52,31,25,81.26,61,250,41.68,42,37,75.82,41,250,141.93,135,250,60.07,62,62,90.01,72,250,131.24,150,250,104.39,61,250,63.72,64,64,57.31,57,56,114.96,92,250,63.19,64,65,60.99,61,63,83.08,44,250,54.55,52,2,112.64,128,9,60.67,62,63,115.6,101,250,63.07,62,62,70.07,44,4,75.08,46,250,116.31,97,250,52.49,33,2,60.72,62,64,92.76,56,250,140.01,122,250,60.45,61,62,77.65,51,29,76.08,69,62,58.57,60,61,50.99,52,81,64.33,59,36,63.02,61,62,60.31,61,61,93.56,52,250,56.84,59,61,48.67,50,49,62.53,62,63,72.55,53,250,65.51,66,66,60.38,61,63,59.02,61,61,131.64,144,250,60.7,61,61,60.73,61,62,60.03,58,58,94.67,47,250,117.55,65,250,62.85,63,63,62.34,53,3,67.03,67,67,60.49,61,62,61.05,61,62,47.01,28,2,67.54,68,67,59.98,61,63,62.52,62,62,60.52,61,62,58.63,58,59,64.95,61,62,56.58,55,60,64.07,65,64,230.34,250,250,58.3,59,59,60.35,62,64,54.74,56,60,61.52,62,61,5.35,5,2,63.18,63,63,63.0,64,65,60.24,61,62,57.66,59,62,61.19,59,60,93.71,54,250,62.31,60,63,58.87,60,60,59.12,54,64,59.53,60,59,59.5,62,62,107.19,53,250,63.63,64,65,64.34,58,63,62.42,61,63,67.16,63,64,60.9,62,65,65.0,59,61,64.14,59,59,83.67,51,250,59.39,60,60,55.53,58,62,62.46,60,61,65.02,65,65,59.07,57,59,111.53,91,250,72.73,50,250,101.11,77,250,50.75,44,9,65.06,55,250,63.94,65,68,59.86,56,56,118.04,64,250,95.8,88,250,60.92,62,64,88.96,52,250,66.77,43,250,65.61,63,65,85.09,61,250,68.17,44,250,78.11,58,2,57.28,53,60,65.41,60,61,103.21,62,250,60.84,58,57,61.96,63,63,79.73,55,250,88.15,67,250,62.7,63,64,72.07,46,250,140.52,138,250,84.57,44,250,66.28,62,66,49.52,46,27,56.32,51,52,95.21,83,4,0.948,0.03448 +VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,71.5,72,71,60.43,42,250,27.14,22,3,59.42,62,66,74.83,76,84,74.68,50,250,50.94,49,3,66.4,51,12,53.34,47,2,97.93,106,250,78.77,78,78,62.61,64,65,40.13,41,2,52.34,42,2,43.67,31,2,66.59,69,71,65.31,31,250,84.42,58,250,45.71,47,30,122.54,125,250,129.02,90,250,63.45,65,67,117.51,87,250,58.91,58,65,127.47,124,250,78.41,30,250,60.6,62,61,58.05,57,54,79.83,42,250,160.73,216,250,214.67,249,250,107.41,74,250,62.3,64,66,68.81,68,66,61.56,59,61,56.44,50,250,43.23,41,6,82.78,58,250,48.59,47,54,64.59,56,250,38.96,38,17,47.0,46,30,56.32,61,65,63.77,65,66,49.07,50,51,43.61,42,28,51.56,41,6,58.33,42,33,54.89,60,63,66.77,34,7,59.58,54,66,132.36,127,250,73.53,62,250,51.2,52,63,67.03,68,69,50.99,55,55,43.44,41,32,85.78,44,250,66.92,70,70,58.53,54,2,48.79,27,8,54.48,58,60,141.48,168,250,86.66,31,250,68.3,69,70,73.93,41,250,5.7,5,2,119.45,70,250,70.67,55,250,68.48,50,22,118.04,109,250,62.61,36,2,105.5,76,250,62.92,64,64,58.15,54,58,87.83,62,2,47.75,46,41,68.78,35,250,126.09,90,250,63.5,65,67,101.37,67,250,169.75,193,250,113.7,71,250,67.06,68,68,55.31,57,60,119.24,78,250,66.65,68,67,63.09,64,66,76.12,43,250,42.59,47,4,124.81,153,3,62.29,64,66,92.72,79,250,65.07,65,66,46.73,28,2,81.09,48,3,82.59,70,50,35.89,18,2,63.35,65,65,66.94,42,11,134.4,134,250,62.08,63,64,67.1,40,4,75.7,67,54,61.07,62,65,92.11,91,22,52.1,52,52,64.44,63,64,61.45,63,64,98.32,53,250,58.51,61,63,83.78,68,69,65.21,65,66,67.82,61,4,69.32,70,69,62.29,63,66,62.51,64,66,107.65,114,27,62.22,63,65,61.71,62,63,60.86,59,60,77.89,39,250,122.77,131,250,66.41,67,66,51.3,39,31,71.12,71,73,63.32,65,64,61.84,63,64,36.36,19,6,71.89,72,69,62.55,64,66,64.71,64,66,62.87,64,64,58.99,59,60,67.95,64,64,58.57,59,67,67.81,69,69,229.48,250,250,58.74,60,62,63.74,65,65,56.18,58,60,64.13,65,66,3.32,3,4,65.67,65,65,66.17,67,68,61.36,63,64,60.4,61,61,61.35,60,61,101.0,60,250,62.05,61,64,60.65,63,64,58.22,54,65,60.71,60,62,62.21,64,66,93.54,63,250,66.84,68,68,66.47,61,250,63.23,64,64,68.11,66,67,61.31,63,64,63.03,61,62,61.42,60,61,77.53,48,250,60.2,61,59,56.79,60,67,64.27,63,61,68.69,69,69,60.92,60,61,106.46,84,250,71.55,52,250,100.6,89,250,46.75,43,3,62.76,56,250,68.03,71,74,59.64,59,63,98.79,52,250,85.07,78,91,63.81,66,67,84.58,50,250,71.11,46,250,64.92,65,67,73.03,58,250,67.01,42,250,53.91,32,2,54.94,54,58,64.7,60,58,95.92,59,250,59.02,58,59,64.76,66,67,68.93,52,250,104.32,85,250,65.26,65,64,62.1,36,250,131.8,135,250,78.48,46,250,60.55,59,69,31.93,25,4,51.39,47,4,83.57,65,2,0.947,0.03441 +VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,59.29,59,59,69.36,30,250,22.03,17,6,52.93,53,55,62.22,62,57,70.71,43,250,35.91,38,3,74.99,60,8,43.41,36,3,80.78,72,250,66.33,67,66,52.42,53,55,35.62,38,2,46.37,36,3,47.67,29,9,54.7,57,58,49.94,30,250,72.85,46,250,44.71,41,2,103.47,98,250,116.18,64,250,52.92,54,55,117.67,83,250,48.18,46,50,120.93,72,250,96.83,38,250,51.57,53,53,49.05,49,50,74.39,34,250,158.75,217,250,201.14,249,250,100.57,52,250,52.25,54,55,57.46,57,58,50.58,48,49,50.07,43,52,40.03,38,6,74.47,45,250,42.12,40,44,57.37,48,50,32.21,31,32,40.54,39,20,44.48,48,51,53.13,54,54,40.41,42,51,34.89,34,26,43.97,32,11,44.24,26,28,47.35,52,54,48.07,26,3,50.68,42,8,131.16,122,250,79.87,72,250,44.54,47,55,55.63,57,56,43.85,47,53,34.03,33,46,79.59,36,250,52.38,57,59,91.22,64,250,41.76,28,23,47.6,49,52,131.16,123,250,76.91,33,250,56.65,57,58,76.22,38,250,13.7,14,4,114.63,109,250,67.17,50,250,58.51,33,14,104.48,82,250,51.89,33,6,104.68,63,250,52.71,53,54,40.9,31,21,82.32,70,4,38.16,37,32,60.45,27,13,121.1,90,250,52.92,54,55,82.77,43,250,146.94,155,250,116.84,74,250,55.61,56,56,45.66,49,56,99.79,81,250,55.26,56,57,53.06,54,55,70.55,39,250,38.8,41,3,137.07,181,250,52.53,54,55,109.72,117,250,55.22,54,55,52.76,20,2,58.7,41,14,77.55,62,29,35.42,30,2,52.71,54,55,64.07,33,21,153.64,206,250,52.49,53,54,67.96,45,6,65.85,61,54,50.77,52,53,78.82,86,102,46.34,44,45,54.9,53,54,51.93,53,54,93.1,50,250,49.03,51,55,98.0,56,49,54.7,54,56,62.58,54,2,57.67,58,58,52.62,53,54,52.02,53,55,110.92,126,250,52.75,53,54,51.24,52,52,51.46,50,52,83.39,42,250,115.55,104,250,54.59,55,55,55.89,48,2,59.02,59,59,53.38,54,56,52.07,53,55,31.94,17,14,60.15,60,59,52.19,54,55,55.24,54,53,53.44,54,56,50.88,51,53,59.13,54,54,42.55,48,50,57.1,58,59,230.65,250,250,49.36,50,50,52.75,54,56,47.56,49,51,53.93,55,55,5.16,5,6,55.0,55,55,54.9,56,57,51.76,53,53,50.88,52,51,52.61,51,51,91.55,60,250,53.48,52,52,51.07,53,54,49.22,44,50,51.99,51,52,52.12,54,53,103.04,47,250,55.56,56,56,57.19,51,55,52.99,54,56,56.0,56,58,51.47,52,53,54.61,50,50,54.52,51,50,77.6,44,250,51.48,52,53,48.18,50,54,54.34,52,53,57.05,57,58,51.32,49,49,98.81,78,250,65.85,46,250,102.68,81,250,41.5,37,2,55.95,48,53,58.18,60,64,49.62,49,47,98.41,61,250,81.96,88,90,53.0,54,55,76.95,40,250,63.95,40,250,55.43,55,56,61.99,46,3,60.22,37,250,60.4,36,2,47.4,47,52,54.03,51,52,81.59,48,250,52.65,50,51,54.06,55,56,55.63,47,7,88.66,69,250,54.29,54,55,78.6,55,250,107.76,95,250,77.16,51,250,53.72,50,48,20.73,19,4,42.64,40,48,68.22,59,3,0.946,0.03434 +VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,51.58,52,51,63.28,25,250,21.94,15,3,44.29,44,46,54.87,55,56,55.33,36,4,58.62,52,5,46.75,31,14,40.38,33,2,63.31,54,8,57.57,58,59,45.18,46,46,30.53,32,3,39.55,30,5,31.5,25,4,47.09,48,48,38.42,21,250,69.59,41,250,40.32,35,28,103.91,90,250,103.98,64,250,46.13,47,48,98.72,52,250,41.45,40,41,79.84,41,2,68.6,23,250,43.37,45,46,54.93,42,40,68.48,30,250,145.07,186,250,100.49,86,84,86.4,42,250,45.02,46,47,50.56,51,52,44.66,41,43,45.07,37,40,33.15,25,2,62.56,34,250,37.25,35,38,51.82,41,40,27.46,27,29,32.4,31,14,39.0,42,45,45.92,47,48,34.01,36,37,32.43,31,25,30.9,25,22,34.62,22,19,40.16,43,44,36.92,23,2,43.31,35,49,94.0,77,24,59.33,45,250,37.04,38,41,48.09,49,49,38.53,40,39,28.76,27,16,74.69,28,250,46.61,48,53,77.64,55,7,34.88,26,2,40.44,42,42,138.09,133,250,57.45,22,3,49.36,50,50,69.23,34,250,13.15,14,2,89.76,60,250,56.5,41,250,38.09,26,9,94.27,84,250,45.74,27,2,87.31,37,250,45.62,46,47,38.96,22,17,64.95,52,2,34.33,34,33,51.66,24,3,116.86,119,250,45.58,47,48,69.44,40,2,118.65,121,21,100.61,53,250,48.37,49,49,38.3,39,45,88.68,63,250,47.96,48,49,45.55,46,47,58.12,30,28,34.61,36,43,117.1,141,6,45.26,46,46,79.35,74,250,47.59,47,47,44.9,26,4,45.21,28,5,84.8,63,250,33.05,29,2,45.49,46,47,48.58,35,3,97.85,85,24,45.0,45,46,57.18,41,9,56.31,51,45,43.88,44,46,26.96,27,18,29.47,31,34,47.08,45,45,44.57,45,46,83.84,31,250,42.34,44,45,36.04,37,35,47.05,46,48,44.65,39,2,49.81,50,49,45.27,46,46,45.23,46,47,65.98,65,22,45.09,45,45,44.4,45,44,45.15,43,43,51.31,20,8,127.74,134,250,47.49,48,49,42.65,37,2,51.63,51,52,45.46,46,47,45.37,45,45,25.98,15,3,51.7,52,52,45.08,46,48,48.81,46,46,45.38,46,48,43.74,43,45,49.76,45,45,39.77,42,47,49.75,50,52,230.2,250,250,42.47,43,43,46.09,47,47,40.61,41,43,46.63,47,47,5.13,4,4,47.25,47,47,47.73,48,49,44.48,45,48,43.28,44,45,45.87,44,44,73.95,35,250,45.93,44,44,43.53,45,45,41.45,38,47,44.02,44,43,45.25,47,47,83.47,36,250,48.26,49,49,49.68,43,47,46.48,45,45,50.65,48,48,45.18,46,46,46.87,42,44,45.25,43,47,63.68,32,250,43.89,44,43,40.32,42,42,48.66,46,46,49.42,50,49,45.84,44,42,76.6,61,250,52.43,36,36,78.34,54,250,30.33,27,4,46.87,39,45,49.23,49,46,43.13,41,41,84.52,40,250,55.56,51,50,45.89,47,47,71.14,36,250,56.12,35,4,46.46,46,45,52.77,38,3,51.4,28,250,55.23,43,4,40.99,38,38,46.54,43,46,82.38,39,250,44.56,42,43,46.83,48,48,47.02,39,2,71.31,50,3,46.64,46,43,57.2,30,250,101.56,79,250,61.6,34,3,46.65,43,45,31.1,27,3,35.15,32,3,67.06,57,7,0.947,0.03415 +VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,65.06,65,65,73.45,41,250,24.55,16,3,55.53,58,61,65.99,67,68,64.8,43,250,79.95,44,3,69.82,57,3,47.67,40,10,94.2,90,250,69.96,70,64,57.55,59,59,35.28,36,3,47.54,34,2,51.53,30,5,61.93,64,67,48.23,28,2,73.24,54,250,40.43,38,3,115.01,108,250,127.92,101,250,58.21,60,61,102.08,59,250,53.01,53,2,104.8,49,250,80.65,34,250,56.45,58,58,62.69,54,55,75.84,37,250,165.24,246,250,215.02,249,250,109.94,75,250,57.13,59,60,62.3,63,65,56.28,54,59,55.54,49,51,57.81,41,250,81.24,53,250,46.5,45,50,62.08,54,250,34.72,33,32,42.29,40,33,49.8,54,55,58.48,59,60,43.21,43,27,40.77,41,29,46.52,38,4,45.67,31,25,51.58,56,62,43.33,24,2,53.93,47,4,124.74,114,250,70.79,53,250,49.03,51,62,61.22,62,63,48.47,52,56,39.17,38,23,80.18,34,250,56.14,60,60,111.6,100,250,42.01,25,26,51.27,53,53,146.36,210,250,76.49,29,250,62.41,63,65,73.08,37,250,6.38,5,2,109.95,79,250,69.83,54,250,63.33,41,9,102.81,76,250,51.81,33,3,98.03,57,250,58.35,59,60,44.21,28,19,68.3,45,12,41.48,40,34,58.12,29,2,122.62,85,250,58.44,60,61,78.21,48,250,139.26,151,250,111.3,73,250,61.48,62,62,49.04,52,59,102.98,76,250,60.85,62,62,57.94,59,60,70.33,41,250,44.6,46,3,137.52,167,250,57.66,59,60,97.64,93,250,60.51,60,60,60.3,43,4,63.31,32,6,99.82,87,250,39.92,30,6,57.86,59,61,58.32,32,27,137.55,149,250,57.49,58,60,62.35,40,29,70.25,63,54,56.14,57,60,43.34,33,20,44.04,47,55,59.51,58,59,56.63,58,58,91.92,47,250,54.1,57,60,79.83,86,6,59.79,59,60,62.98,51,22,63.53,64,63,57.88,59,59,57.15,59,59,124.56,132,250,57.58,58,59,57.01,58,59,57.09,56,58,75.22,38,6,107.53,80,2,60.73,61,62,59.25,55,3,64.64,65,66,57.8,59,60,57.86,58,59,33.89,19,10,65.46,66,65,57.36,59,60,60.48,59,61,58.15,59,60,55.18,56,58,63.67,59,60,52.63,55,58,61.36,62,63,221.8,250,250,54.67,56,57,57.98,59,59,51.95,54,57,58.87,59,61,5.0,4,2,60.07,60,61,60.56,62,62,57.05,58,58,55.38,56,58,58.68,57,58,91.29,57,250,58.09,57,60,57.02,59,61,53.13,50,56,56.84,57,56,56.77,59,59,89.43,48,250,61.3,62,62,60.24,55,57,57.33,58,60,63.98,62,64,56.74,59,57,58.64,55,54,57.9,55,57,71.5,41,250,56.36,57,58,52.25,55,59,61.11,59,59,62.82,63,63,57.09,56,57,98.81,84,250,71.19,50,250,92.49,63,250,43.79,39,2,59.42,53,59,61.24,64,65,55.21,55,56,100.47,44,250,61.45,58,3,58.45,60,61,79.27,42,250,58.6,40,2,59.15,60,65,66.26,48,2,60.18,37,250,59.27,33,28,53.55,53,59,60.89,58,57,93.47,54,250,56.82,55,54,59.52,61,62,66.27,47,2,76.03,61,250,60.17,60,60,69.59,30,250,133.62,134,250,63.04,40,250,48.99,49,57,31.46,27,3,47.89,45,59,101.38,76,250,0.947,0.03438 +VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,59.12,60,60,65.99,33,250,27.44,23,6,52.68,54,57,60.05,59,59,69.2,43,250,88.26,59,5,67.49,52,34,49.04,43,19,91.79,83,250,62.9,64,68,54.51,56,57,32.79,34,4,41.52,32,3,47.63,33,10,56.64,58,58,56.75,24,5,77.65,52,250,38.9,38,31,101.21,83,250,126.09,101,250,54.61,56,57,111.11,73,250,54.94,51,54,87.18,42,8,89.93,34,250,52.06,53,53,63.36,54,56,75.22,39,250,129.82,143,60,97.84,98,95,103.75,64,250,54.22,56,57,56.72,57,57,53.07,50,55,51.35,44,45,50.39,43,3,78.23,48,250,48.07,47,50,61.58,51,250,34.44,33,31,41.37,40,30,48.36,53,55,55.03,56,57,39.76,40,49,39.7,39,32,45.52,36,5,51.28,30,28,48.29,53,54,46.95,25,3,55.79,43,52,132.51,129,250,69.27,49,250,45.75,47,50,56.98,58,59,47.55,51,54,37.74,36,29,78.77,36,250,56.23,59,63,70.37,51,11,44.83,27,18,50.6,53,56,140.26,191,250,70.59,18,5,57.6,59,59,75.51,38,250,7.08,5,3,113.56,52,250,73.35,55,250,59.43,24,7,114.89,106,250,52.49,31,7,90.18,58,250,55.13,56,57,53.37,40,250,90.94,85,7,38.27,38,49,64.21,31,250,126.7,88,250,54.65,56,57,86.96,55,250,163.96,177,250,104.83,58,250,57.44,58,58,46.66,46,42,107.35,83,250,56.96,58,58,54.99,56,56,73.31,40,250,50.72,53,3,131.38,159,250,54.62,55,57,103.31,98,250,57.22,56,58,61.39,38,4,66.87,41,6,118.53,107,250,37.86,29,2,54.6,56,57,63.45,31,16,141.06,169,250,54.55,55,55,64.72,49,19,66.83,60,53,52.93,54,56,34.73,37,41,45.6,48,50,56.76,55,56,54.15,55,57,90.16,43,250,51.51,54,56,57.42,52,37,56.41,56,56,68.91,53,2,58.55,59,59,54.63,56,56,53.9,55,57,109.66,117,32,54.41,55,55,55.32,55,55,54.63,53,54,87.52,48,250,127.7,104,250,57.04,57,58,52.91,51,5,58.85,59,59,55.44,56,57,55.51,56,55,36.56,22,8,59.18,60,61,54.33,56,57,57.35,57,59,54.89,56,56,52.67,53,55,61.32,56,57,47.73,50,50,56.76,58,59,224.15,250,250,52.86,54,55,54.56,56,58,49.78,51,54,54.93,56,57,5.64,5,3,56.9,57,57,56.72,58,58,54.32,55,56,53.43,54,55,55.44,54,54,87.34,52,250,56.36,55,57,54.08,56,55,51.3,48,54,54.27,54,55,54.6,56,60,102.36,49,250,57.1,58,58,59.1,54,57,56.01,55,55,61.35,59,59,54.6,55,54,53.76,53,58,54.74,53,55,73.42,45,250,54.17,55,55,50.44,53,55,57.7,55,56,58.27,59,59,54.0,52,53,94.42,73,250,70.33,50,250,102.26,72,250,45.97,39,3,58.74,50,250,53.82,55,57,52.91,51,51,108.38,74,250,72.49,64,40,55.02,56,57,74.3,41,250,69.35,40,250,56.08,54,57,66.1,45,250,59.68,36,250,62.66,33,30,50.39,49,53,58.31,54,54,93.48,57,250,54.77,52,50,55.67,57,58,68.32,55,4,87.94,65,250,56.85,56,56,77.96,54,250,126.62,118,250,72.39,45,250,63.26,55,58,29.23,26,2,45.14,42,54,79.02,64,5,0.949,0.03429 +VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.5,64,65,76.37,39,250,34.98,30,22,63.59,65,69,68.18,65,66,79.36,54,250,87.1,41,250,98.06,85,250,55.03,49,7,96.08,88,250,64.09,66,67,62.85,64,65,42.06,41,2,49.68,35,2,40.76,27,3,65.92,69,73,55.4,32,14,91.78,70,250,45.15,41,3,131.78,128,250,135.58,89,250,61.74,63,63,118.27,82,250,65.4,66,75,114.14,49,250,91.05,34,250,62.67,64,62,79.46,68,250,84.08,48,250,171.29,249,250,223.15,250,250,121.53,82,250,61.87,63,64,60.21,61,61,66.92,67,70,62.96,58,250,51.9,49,10,94.99,61,250,59.27,61,69,70.19,64,250,36.54,35,33,43.04,43,55,58.69,65,69,62.82,63,64,43.75,44,33,45.05,45,64,56.82,47,5,52.78,35,250,51.84,56,56,51.28,30,2,62.52,52,250,138.31,149,250,77.93,59,249,50.71,55,63,63.34,64,65,61.21,65,74,42.95,43,21,84.1,42,250,58.04,61,67,93.76,73,250,53.62,29,2,62.47,66,65,142.72,187,250,79.5,29,2,62.51,63,64,82.24,49,250,9.56,7,5,124.02,96,250,84.86,70,250,82.06,57,250,122.79,124,250,65.28,46,250,87.36,61,250,63.55,64,65,45.61,34,35,121.74,103,250,42.7,40,31,68.77,40,250,129.99,98,250,61.72,63,64,81.83,53,250,196.49,249,250,106.82,62,250,63.92,64,64,57.15,58,60,120.85,87,250,63.43,64,65,62.74,63,64,84.84,56,250,55.37,57,67,138.86,181,250,63.94,65,66,106.36,100,250,65.99,65,66,87.41,55,250,60.0,37,5,112.34,107,250,41.31,27,6,62.43,64,63,67.65,39,12,142.35,177,250,65.18,66,67,99.62,62,250,79.4,74,64,61.43,63,64,77.06,84,107,54.8,52,58,66.65,65,65,62.12,63,62,93.37,51,250,59.47,62,65,66.22,67,69,66.52,66,66,88.58,72,3,64.99,65,65,64.23,65,66,61.43,62,62,121.18,123,250,63.85,64,64,67.62,68,69,63.88,63,66,84.46,33,250,110.76,73,250,63.59,63,64,69.55,63,250,64.04,64,65,64.15,65,66,66.46,67,68,56.17,38,2,63.41,64,63,61.5,63,63,66.25,64,65,64.53,66,66,62.34,62,65,68.89,65,65,64.61,68,71,64.21,65,63,228.38,250,250,65.38,66,69,62.54,64,63,58.26,60,64,62.88,64,64,5.76,4,2,66.57,67,68,63.23,64,64,65.91,67,66,65.07,66,66,67.27,66,68,99.28,66,250,66.47,66,67,64.55,67,70,60.49,55,68,68.41,68,67,62.27,64,65,96.89,58,250,64.14,64,64,68.04,61,250,65.02,64,63,68.19,66,67,66.19,66,67,69.23,69,74,67.68,67,68,91.24,54,250,67.02,68,71,61.89,66,69,66.84,65,69,64.61,65,65,64.75,64,62,110.27,94,250,87.17,63,250,113.7,95,250,55.57,43,2,62.71,56,250,56.76,59,58,62.59,62,66,89.36,48,250,71.33,48,37,61.98,63,64,85.98,52,250,69.81,52,250,64.93,64,66,86.03,64,250,69.8,46,250,71.63,58,3,61.35,61,58,71.9,68,65,101.1,69,250,70.72,69,69,62.67,63,64,78.94,60,250,104.45,80,250,67.37,68,69,69.04,30,250,130.69,117,250,76.12,43,250,79.98,67,61,47.79,41,3,60.37,56,68,95.33,83,250,0.948,0.03447 +VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,67.23,67,67,70.04,35,250,28.87,25,30,56.5,59,62,72.27,72,73,73.36,47,250,50.72,40,5,60.12,42,30,47.81,39,3,113.13,102,250,77.16,77,70,57.98,59,60,38.16,42,2,53.07,43,2,50.7,31,9,62.56,65,65,58.01,28,8,81.12,50,250,45.99,41,2,127.56,135,250,114.77,73,250,58.96,60,61,121.53,85,250,54.71,57,63,79.61,78,2,86.99,30,250,56.38,58,58,55.6,53,54,75.32,33,250,167.07,249,250,203.06,250,250,115.32,88,250,57.94,60,61,66.59,65,64,56.43,55,60,54.37,48,55,70.88,53,9,86.86,57,250,43.98,42,49,63.15,54,56,36.82,36,35,43.46,44,60,51.34,56,59,59.18,60,61,45.48,46,51,40.55,40,35,49.72,38,7,48.82,29,13,51.82,57,61,53.94,29,6,54.89,43,7,118.95,113,250,78.39,65,250,49.44,52,62,62.22,63,63,48.32,51,49,37.66,36,22,81.99,40,250,62.18,66,69,77.13,69,8,40.69,22,3,51.53,53,60,133.56,95,250,85.69,42,250,63.99,65,65,80.63,42,250,4.06,4,4,119.54,63,250,69.55,52,250,62.47,37,26,121.29,103,250,58.57,33,250,110.14,67,250,58.3,59,60,49.28,34,26,54.01,40,7,42.96,43,36,66.25,33,250,127.12,103,250,58.96,61,62,87.62,51,250,165.4,180,250,107.79,64,250,62.34,63,62,48.01,51,55,105.84,89,250,61.86,63,63,58.65,59,60,73.54,44,250,43.14,47,3,138.58,173,250,57.97,59,60,113.65,103,250,60.69,60,61,64.69,51,5,72.48,43,4,84.03,66,250,36.07,28,8,58.71,60,62,68.3,45,2,159.93,222,250,57.85,58,59,65.92,42,6,70.92,64,63,56.28,57,58,30.62,32,36,49.92,50,64,60.41,58,61,57.1,58,60,87.04,42,250,54.17,57,60,87.24,65,7,60.17,60,61,79.61,65,2,64.63,65,65,57.61,59,59,58.12,60,62,137.82,163,250,57.72,58,60,56.24,57,57,56.72,55,56,67.01,29,11,127.09,84,250,61.49,62,61,58.24,55,62,67.03,67,67,58.33,59,60,57.3,58,57,41.26,24,24,67.8,68,68,57.85,59,61,60.85,60,61,57.57,59,60,55.71,56,58,62.74,59,59,46.44,52,61,62.92,64,66,231.34,250,250,53.83,55,56,58.8,60,60,52.33,54,55,59.95,61,61,8.71,5,3,61.24,61,60,61.49,62,62,56.46,57,56,54.22,55,58,57.1,56,58,92.16,56,250,57.71,57,59,55.94,58,60,54.44,50,57,54.85,55,58,58.02,60,61,99.98,51,250,62.21,63,63,62.25,56,250,59.2,59,61,61.51,61,59,57.22,58,59,61.25,54,51,55.42,53,55,79.44,52,250,56.05,57,58,52.17,54,53,60.05,58,60,63.97,64,64,56.08,55,57,91.79,70,250,72.27,46,250,118.22,107,250,46.16,41,2,59.19,53,250,63.31,65,69,55.85,55,56,109.94,58,250,89.38,78,71,59.14,61,62,79.9,43,250,61.5,42,250,61.99,62,63,73.34,52,250,69.72,41,250,64.26,49,5,52.17,51,58,58.76,55,57,94.67,53,250,55.02,53,52,60.37,61,62,67.86,51,250,95.82,68,250,59.58,59,58,66.48,44,250,121.8,109,250,81.7,43,250,61.31,56,58,31.68,24,15,48.22,44,5,82.25,62,35,0.947,0.03439 +VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,76.49,77,78,87.35,54,250,31.26,23,5,68.96,71,75,80.5,77,75,96.64,67,250,79.46,75,9,88.87,68,250,61.93,51,5,118.61,131,250,83.69,84,82,70.74,72,74,49.4,51,2,56.6,49,2,73.94,47,250,71.23,73,76,59.91,36,250,93.1,71,250,64.05,51,250,133.48,110,250,133.72,86,250,70.74,73,75,130.17,97,250,69.35,70,250,130.59,137,250,107.25,49,250,70.23,73,73,82.2,72,250,90.8,58,250,169.71,249,250,220.69,250,250,120.05,91,250,70.11,72,73,74.41,76,75,71.79,71,71,65.46,61,250,56.49,54,2,86.71,61,250,61.23,60,62,74.61,68,72,43.85,42,42,51.73,50,34,62.7,69,72,71.52,73,75,52.98,55,64,49.91,49,35,60.98,54,55,58.79,35,250,61.78,68,72,62.38,27,250,70.68,59,250,147.88,145,250,75.12,47,250,59.96,65,74,73.65,75,75,63.68,68,70,46.15,44,34,94.29,58,250,69.44,73,73,136.98,114,250,62.24,48,250,67.4,70,70,149.17,224,250,83.61,41,250,74.31,76,78,86.14,55,250,9.07,7,3,131.43,92,250,92.03,76,250,73.8,50,250,143.63,165,250,69.55,44,250,108.31,73,250,71.44,73,74,51.71,36,34,90.96,88,5,52.02,49,47,68.73,39,250,142.94,115,250,70.87,73,75,95.73,65,250,130.03,129,250,116.09,74,250,74.25,75,75,61.95,61,72,139.89,141,250,73.41,75,76,71.19,73,74,84.95,52,250,60.75,59,2,154.13,248,250,71.13,73,74,113.48,96,250,73.85,73,73,93.41,86,250,77.9,52,2,107.48,81,250,45.85,29,2,70.77,73,75,81.91,44,37,139.86,149,250,71.49,73,74,85.2,62,12,89.7,81,76,68.79,71,71,42.53,38,22,54.98,58,60,73.66,72,74,70.45,72,75,99.8,61,250,66.55,70,72,105.7,84,69,73.47,73,74,95.19,81,4,75.79,76,76,71.67,73,74,69.99,72,72,134.44,132,250,71.17,72,74,72.85,73,74,70.33,70,71,82.91,51,8,129.4,98,250,73.47,74,76,69.33,62,4,76.44,77,78,71.22,73,74,72.7,73,75,48.99,29,3,77.12,78,78,69.98,72,74,73.4,73,73,71.51,73,74,68.48,69,73,77.13,73,75,66.58,70,69,73.85,76,77,228.56,250,250,70.1,71,73,70.78,73,76,64.33,68,71,71.56,73,72,4.39,4,4,73.76,74,74,73.31,75,75,71.05,73,73,69.22,71,73,71.85,71,71,105.56,75,250,72.25,71,71,69.69,72,73,66.42,63,70,70.56,71,71,71.13,74,74,112.99,65,250,74.06,75,76,74.65,70,250,72.0,72,76,77.09,75,74,70.53,72,73,77.21,73,75,73.73,72,74,85.17,58,250,70.7,72,74,66.9,70,72,72.82,71,69,75.46,76,77,70.46,70,72,127.02,122,250,85.13,64,250,126.11,120,250,62.46,56,3,71.47,66,250,73.99,76,81,71.9,70,69,113.23,67,250,116.54,103,250,71.23,73,74,91.06,59,250,82.0,49,250,74.4,73,77,94.61,69,250,77.63,50,250,82.7,66,250,65.56,66,69,75.64,71,68,110.61,75,250,72.28,71,72,72.02,74,75,89.26,78,250,106.38,80,250,74.66,75,77,72.43,46,250,149.42,159,250,102.34,64,250,75.74,70,74,39.83,32,2,62.07,58,56,104.45,79,250,0.949,0.0345 +VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,56.71,57,57,74.45,37,250,31.45,23,3,47.68,49,49,59.22,59,60,58.69,43,11,81.97,69,3,64.06,51,41,48.38,41,29,112.91,76,250,61.96,62,64,50.64,51,52,31.76,32,4,45.0,36,4,36.75,29,8,53.93,56,57,42.43,25,2,79.27,50,250,42.63,35,2,95.1,84,250,119.34,90,250,51.11,52,53,108.6,65,250,48.17,46,49,99.32,84,5,79.57,32,250,50.41,52,53,48.47,48,49,71.51,32,250,162.28,249,250,190.92,210,250,96.85,55,250,50.16,52,53,55.16,55,49,50.37,48,54,48.52,41,39,35.15,27,9,79.56,50,250,41.36,39,44,55.14,45,49,31.55,31,23,37.63,38,56,44.84,49,49,51.24,52,53,38.29,39,46,36.57,36,21,42.68,35,9,48.52,30,27,45.61,49,56,45.77,24,3,47.81,41,6,112.67,97,250,75.07,64,250,42.5,45,57,53.32,54,55,42.6,45,45,35.04,33,27,82.28,38,250,51.83,55,62,69.09,66,3,45.47,31,3,44.87,47,47,148.2,211,250,62.44,18,2,54.48,55,55,73.44,37,250,14.57,14,5,113.71,75,250,63.96,47,250,49.99,35,18,107.76,83,250,53.9,33,10,99.52,62,250,51.05,52,52,45.81,31,18,89.63,56,250,36.52,35,33,59.53,30,250,113.48,83,250,50.89,52,53,82.17,50,250,149.62,155,250,112.42,57,250,53.67,54,54,45.71,47,48,108.84,82,250,53.13,54,54,51.0,52,53,63.11,34,250,38.86,42,3,101.49,126,2,50.79,52,53,80.82,74,250,53.34,52,52,55.93,40,4,69.53,36,8,73.6,57,20,31.63,16,4,50.93,52,52,58.98,37,24,130.39,99,250,50.61,51,52,79.72,41,250,62.82,56,48,49.22,50,51,47.98,49,2,34.83,36,49,52.67,51,53,49.86,51,52,88.0,44,250,47.22,49,51,80.83,54,50,52.63,52,52,64.66,55,29,55.22,55,55,50.53,51,52,50.17,51,52,99.24,107,10,50.49,51,52,50.81,51,51,50.83,49,49,79.91,38,250,135.53,168,250,53.22,53,54,53.52,51,56,57.07,57,57,51.18,52,53,50.87,51,50,42.63,23,2,56.94,57,58,49.87,51,53,52.36,52,53,51.07,52,52,49.43,49,50,56.0,51,53,46.52,50,55,53.82,55,55,230.83,250,250,48.49,49,49,50.69,52,52,46.28,47,50,51.57,52,53,6.11,6,7,52.73,53,54,52.85,54,53,50.37,51,51,49.09,50,52,50.6,49,51,78.95,39,250,50.86,50,52,49.17,51,52,48.03,44,50,50.43,50,52,50.25,52,55,102.12,44,250,53.61,54,55,54.7,48,50,50.63,51,49,57.4,54,52,50.5,51,51,51.84,49,49,52.63,50,54,69.11,35,250,49.26,50,49,46.76,49,53,52.58,51,51,54.77,55,55,52.03,50,50,88.25,67,250,61.73,45,250,98.63,74,250,39.71,33,2,53.67,46,250,55.0,56,59,49.6,48,52,114.34,53,250,52.42,41,39,51.18,52,52,76.24,36,250,59.21,36,250,53.39,52,49,53.89,40,19,54.82,33,250,59.65,47,2,47.96,45,46,52.29,49,49,89.37,45,250,50.38,49,49,52.16,53,54,65.83,44,3,73.5,55,8,52.73,53,55,71.67,37,250,130.42,114,250,63.4,35,250,56.83,52,52,38.19,35,5,42.55,39,4,74.18,59,5,0.947,0.03427 +VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,50.2,50,49,62.97,30,250,21.16,15,4,42.95,44,45,51.77,53,55,55.21,31,4,46.38,49,5,45.13,30,15,37.64,31,8,72.73,63,11,53.32,54,58,44.52,45,46,29.18,31,3,37.86,23,2,36.1,27,19,46.05,48,49,36.12,17,11,70.63,42,250,33.75,34,4,99.51,86,250,113.83,60,250,45.01,46,47,106.89,67,250,41.08,40,45,91.51,67,5,75.05,26,250,43.32,44,44,44.01,41,41,65.25,29,250,80.38,88,44,220.24,250,250,94.27,54,250,44.18,45,46,49.89,50,47,46.2,43,47,43.89,37,40,30.94,28,4,69.4,43,250,37.93,35,40,52.43,41,40,27.36,26,24,31.61,32,13,38.93,42,47,45.28,46,46,34.16,34,30,31.14,31,29,37.12,28,23,35.4,24,18,39.83,42,43,28.23,19,3,42.8,35,7,83.48,74,250,80.08,66,4,37.73,41,48,47.37,48,48,37.47,39,41,29.41,27,19,78.95,33,250,46.16,48,48,65.85,36,6,33.05,18,19,40.15,42,44,136.78,135,250,65.91,23,10,47.97,48,49,68.87,31,250,23.87,16,3,86.04,66,250,57.13,37,250,55.83,41,11,95.18,94,250,46.46,25,9,88.65,36,250,45.08,46,46,48.7,35,11,54.99,44,14,32.42,32,31,52.14,24,3,118.14,91,250,44.73,46,46,75.36,40,2,154.79,145,250,101.2,46,250,47.38,48,48,38.34,39,41,89.34,63,250,46.97,47,48,44.9,45,47,54.09,29,26,35.47,34,43,90.11,112,8,44.99,46,47,74.89,65,250,47.13,46,47,43.92,26,6,62.84,34,4,77.65,63,11,23.34,20,4,44.87,46,47,46.17,28,17,131.03,87,250,44.78,45,46,32.96,30,11,54.5,49,45,42.99,44,45,50.99,52,80,34.93,35,37,46.14,45,45,44.2,44,45,83.83,33,250,41.72,43,45,58.31,45,5,46.81,46,46,39.91,36,34,48.91,49,49,44.78,45,46,44.62,45,44,87.45,97,32,44.9,45,46,44.09,44,45,44.43,43,43,52.27,23,6,107.48,85,250,46.47,47,48,42.27,43,48,50.06,50,50,45.04,46,47,44.96,45,47,25.65,14,7,50.91,51,50,43.98,45,46,46.6,46,46,44.76,45,45,43.38,43,46,49.99,46,46,36.86,39,39,47.92,49,48,229.4,250,250,42.3,43,44,45.08,46,48,39.98,41,43,45.89,46,47,3.52,3,2,46.79,47,46,46.76,47,48,44.38,45,46,42.99,44,43,45.08,43,43,76.34,34,250,44.81,43,44,43.97,45,46,42.4,39,43,44.6,43,43,44.33,46,49,77.41,35,250,47.23,48,48,46.82,43,43,44.68,45,49,50.48,47,48,43.28,45,44,46.91,44,45,46.41,43,45,58.44,25,250,43.71,44,45,41.29,43,45,47.08,45,45,48.47,49,48,44.23,43,46,72.47,57,250,55.6,36,250,79.93,54,250,34.21,29,6,47.93,40,44,47.44,50,51,42.71,42,44,82.04,31,250,50.8,47,42,45.08,46,47,69.61,34,250,53.28,34,2,46.11,47,44,57.44,45,10,55.21,29,250,52.28,41,2,41.22,39,42,48.28,45,46,75.14,37,250,44.54,43,42,46.13,47,47,46.4,33,5,77.23,59,5,46.66,46,46,56.82,21,250,102.77,93,250,58.44,32,24,45.85,43,43,25.62,25,2,36.78,34,5,73.79,55,3,0.947,0.03424 +VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,42.76,42,42,67.81,27,250,21.09,17,3,36.49,36,35,43.72,43,43,55.07,34,3,51.29,50,2,58.14,48,17,35.03,31,3,70.87,63,8,45.51,45,46,38.49,39,39,25.62,25,2,39.5,29,2,36.48,29,3,38.72,39,40,49.68,21,2,60.12,35,35,37.08,29,4,89.35,71,250,108.53,60,250,38.69,39,40,104.97,68,250,37.09,35,41,90.78,77,6,76.89,26,250,37.04,38,40,39.05,35,39,67.67,28,250,134.86,179,42,180.49,208,250,89.48,52,250,38.14,39,39,42.62,42,40,40.04,35,38,39.15,31,31,36.72,35,7,59.3,34,30,34.51,31,32,47.5,35,39,24.83,23,20,28.78,29,21,33.98,37,41,38.94,39,39,29.32,30,36,26.98,27,23,32.61,25,6,39.27,27,14,32.69,35,39,37.21,21,4,37.0,31,33,83.18,75,2,57.79,37,2,31.9,32,42,40.14,40,41,32.32,34,31,24.45,25,14,72.51,27,250,37.28,39,40,45.73,31,5,32.97,21,20,33.69,35,33,132.26,118,250,68.81,24,2,41.29,41,42,72.16,38,250,3.98,3,2,79.42,54,250,52.86,34,250,52.07,31,14,98.95,91,250,45.46,25,250,89.14,54,250,38.8,39,40,46.47,37,34,63.06,46,9,27.42,26,23,49.69,21,5,112.96,82,250,38.42,39,40,70.15,33,250,179.93,217,250,104.06,42,250,40.72,41,40,34.55,35,34,81.2,56,21,40.18,40,40,38.78,39,39,51.59,31,14,27.35,28,2,77.32,96,11,38.47,39,39,81.12,83,250,41.08,39,39,49.38,27,3,60.2,36,3,74.85,53,14,22.72,21,5,38.47,39,40,44.55,29,16,120.43,129,250,38.34,38,39,56.4,37,7,48.2,44,34,36.94,37,38,26.07,28,33,24.53,18,5,40.66,38,38,38.15,38,38,79.13,28,250,35.87,37,39,32.5,34,34,40.08,39,39,52.36,49,16,41.62,41,41,38.24,38,39,38.0,38,38,84.66,90,15,38.24,38,38,38.28,38,38,39.19,36,37,77.13,33,250,124.54,91,250,40.04,40,40,40.79,36,38,43.16,43,42,38.91,39,40,38.66,38,39,34.37,20,2,43.16,43,42,38.19,39,39,40.16,39,39,38.24,38,38,37.2,36,36,43.9,39,39,32.0,35,43,40.19,41,41,226.4,250,250,36.98,37,38,38.6,39,40,35.76,36,38,39.36,39,40,5.96,3,4,39.32,39,39,40.06,40,40,37.96,38,39,37.23,37,38,39.65,38,37,76.96,37,250,39.67,38,38,38.07,39,39,39.15,33,36,38.77,37,37,38.53,40,42,88.49,44,250,40.37,40,40,44.16,37,39,38.83,37,38,44.65,40,39,37.68,38,39,40.48,37,37,39.95,36,36,70.17,40,250,37.72,38,37,35.05,36,36,40.87,38,38,41.2,41,41,38.03,36,36,71.79,56,250,57.99,37,250,96.44,75,250,34.04,28,2,42.71,35,35,40.92,43,46,38.07,36,38,82.36,34,250,36.64,21,18,38.75,39,40,69.9,31,250,41.51,27,3,41.6,40,43,56.15,36,250,45.89,25,250,47.34,37,4,35.43,33,34,41.12,37,39,74.33,36,250,39.54,37,38,39.4,40,39,53.87,39,4,74.94,54,250,40.41,39,39,67.05,44,250,95.58,75,3,69.74,35,14,40.62,39,40,25.24,21,20,31.71,29,4,77.59,54,4,0.946,0.03426 +VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,53.76,54,55,62.92,25,250,23.23,21,21,47.17,48,51,55.75,56,57,57.71,33,10,75.42,40,250,60.24,54,3,40.09,35,2,70.9,65,250,61.18,61,58,47.82,49,50,31.85,33,4,38.95,29,2,40.83,20,4,48.71,50,48,46.05,24,250,62.28,45,250,34.84,30,2,108.38,93,250,120.22,86,250,48.19,49,50,101.01,53,250,45.83,45,50,104.42,61,250,86.29,34,250,46.03,47,50,48.65,46,48,64.36,31,250,149.97,185,250,191.8,221,250,101.84,63,250,47.58,49,49,52.81,53,54,47.71,45,48,45.53,38,39,52.95,32,6,58.75,41,38,39.85,38,42,53.88,42,42,30.93,30,28,34.21,32,20,43.22,47,47,48.69,49,50,37.26,38,25,33.09,33,28,37.67,30,13,34.39,25,25,42.41,47,50,40.47,24,2,46.64,38,40,79.9,64,250,103.17,108,3,38.7,41,44,50.68,52,52,41.68,44,47,30.36,28,22,80.01,31,250,49.35,52,52,47.32,38,22,32.33,19,16,42.88,45,45,139.53,177,250,71.13,28,2,51.7,52,52,71.3,33,250,8.75,3,2,79.1,50,250,60.53,42,250,41.08,30,20,107.44,106,250,47.86,34,2,90.16,47,250,48.2,49,49,47.5,45,47,53.62,40,7,33.91,32,26,55.52,26,8,111.02,66,250,48.24,49,50,65.17,40,4,126.7,121,250,101.66,52,250,51.02,51,51,40.55,42,47,85.52,60,250,50.34,51,51,48.17,49,50,62.41,37,22,33.58,33,4,96.96,124,12,48.01,49,49,75.48,62,250,50.43,50,50,49.19,37,3,60.68,34,2,60.92,57,44,28.21,22,2,47.95,49,50,45.98,28,15,120.73,72,250,47.88,48,49,30.96,30,10,58.81,51,37,46.35,47,49,24.04,25,25,36.3,36,44,49.45,48,50,47.37,48,48,88.88,43,250,45.05,47,48,35.96,39,43,49.85,49,49,55.54,39,2,52.46,53,53,47.84,49,49,47.28,49,49,56.71,60,6,47.8,48,48,47.45,48,47,47.45,46,48,52.66,30,7,72.28,62,4,50.49,51,51,45.59,44,5,53.82,54,52,48.44,49,50,48.28,49,50,25.73,14,9,54.62,55,56,47.63,49,50,50.41,49,49,47.57,48,49,46.34,46,49,52.48,49,49,41.82,45,51,51.39,52,51,229.21,250,250,45.43,46,46,48.08,49,50,42.68,44,47,48.96,49,49,4.46,4,4,49.73,50,49,50.25,51,51,47.47,48,50,46.13,47,48,48.79,47,48,77.78,33,250,48.76,47,49,46.8,48,49,44.16,41,42,47.18,47,48,47.47,49,50,84.46,41,250,50.84,51,52,51.56,46,46,47.52,47,47,53.68,51,51,47.41,49,50,49.66,46,47,51.23,48,47,56.7,27,250,47.13,47,48,43.78,46,48,50.09,48,49,51.95,52,52,46.62,46,49,86.3,65,250,59.07,38,250,96.15,71,250,40.02,30,3,50.69,43,46,51.86,53,53,45.91,45,47,83.87,32,250,52.13,47,47,48.34,49,50,69.29,34,250,52.03,36,2,49.24,50,53,57.22,40,5,54.02,29,250,57.22,42,2,42.55,41,43,50.41,48,52,81.47,44,250,48.06,46,48,49.43,50,50,52.48,35,10,79.02,58,250,50.37,50,50,57.35,23,250,109.24,85,250,60.83,33,26,43.97,42,45,28.84,25,2,38.22,36,44,56.02,47,23,0.946,0.03433 +VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,60.51,61,61,68.86,30,250,33.45,27,17,53.29,54,54,61.17,61,57,68.3,41,2,58.8,46,2,50.32,40,40,44.39,38,2,128.84,102,250,66.67,67,65,53.55,54,55,36.76,39,2,46.55,38,2,45.53,33,7,57.33,59,60,43.1,25,3,68.89,48,250,39.95,36,3,106.42,99,250,120.99,65,250,53.96,55,56,112.36,66,250,52.3,51,2,129.45,115,250,87.69,30,250,52.57,54,53,58.71,50,250,72.13,33,250,159.36,248,250,169.05,184,250,110.5,63,250,53.0,55,55,58.03,58,57,53.25,51,55,50.48,44,49,38.47,35,3,80.76,47,250,43.8,42,48,57.6,48,250,34.66,33,28,39.14,37,25,45.7,51,57,53.98,55,57,39.12,39,41,38.63,40,52,47.11,32,7,40.68,25,26,46.84,51,50,49.09,24,2,50.45,42,3,115.84,82,250,76.37,66,250,44.42,45,53,56.92,58,58,44.47,47,47,34.95,33,21,77.75,33,250,56.49,59,60,81.78,60,250,43.08,25,26,46.84,49,52,128.21,128,250,81.13,42,250,58.1,59,59,73.8,36,250,16.11,8,3,123.79,117,250,63.99,49,250,57.6,29,17,108.22,76,250,50.33,30,9,101.91,67,250,53.59,54,55,50.14,41,25,84.99,78,3,38.54,38,36,61.77,31,3,120.75,79,250,53.83,55,57,84.23,46,250,116.13,116,250,106.48,52,250,57.02,58,58,41.85,43,48,100.05,75,250,56.45,57,57,53.77,55,56,66.59,34,250,42.99,41,53,124.57,146,10,53.54,55,55,89.63,72,250,55.91,55,56,59.52,30,2,60.07,47,4,117.81,116,72,28.1,17,2,53.8,55,55,52.47,31,17,127.61,95,250,53.36,54,53,34.85,31,21,65.46,60,48,51.83,53,55,27.37,28,25,44.14,45,47,55.32,54,55,52.21,53,54,88.1,43,250,50.09,52,54,63.14,52,50,55.64,55,55,64.44,51,20,58.84,59,59,53.28,54,55,52.86,54,55,105.71,119,28,53.2,54,55,53.08,53,54,52.9,51,51,76.41,38,250,122.28,130,250,56.27,57,57,54.42,50,7,60.38,61,59,54.03,55,56,52.97,53,52,29.1,14,2,61.47,62,61,52.81,54,56,55.65,55,55,53.67,55,55,51.12,51,54,57.43,54,56,46.57,47,46,57.49,59,57,227.09,250,250,50.06,51,52,54.29,56,57,47.19,49,53,54.71,55,56,6.35,6,4,55.84,56,56,56.17,57,57,52.68,54,53,51.64,52,54,52.95,51,52,80.55,36,250,53.35,52,55,52.12,54,56,47.89,43,26,52.02,52,54,53.18,55,56,101.21,49,250,56.76,57,58,57.65,52,53,54.05,55,56,59.13,56,58,51.06,53,55,56.3,52,54,53.36,52,54,66.04,34,250,52.52,53,54,47.68,51,54,56.47,54,53,58.29,59,59,53.6,52,54,80.66,55,250,63.42,42,250,100.24,69,250,39.79,36,3,54.59,49,54,57.39,58,64,51.1,50,50,95.16,44,250,74.67,77,4,54.25,56,57,76.12,42,250,58.88,39,2,56.87,57,56,60.63,43,2,56.02,35,250,66.39,52,3,48.03,45,44,54.3,49,48,80.38,52,250,53.54,51,51,55.19,56,57,60.78,51,3,78.85,63,250,55.47,56,55,79.12,57,250,126.15,110,250,77.43,40,250,51.22,49,51,27.09,24,2,40.19,38,51,61.75,57,4,0.947,0.0343 +VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,65.19,65,66,75.63,39,250,31.49,26,24,54.22,56,57,65.75,66,66,71.05,42,250,53.54,29,2,62.17,55,3,44.15,33,21,101.69,89,250,72.44,72,71,56.91,58,59,37.16,40,2,48.94,36,2,47.99,30,4,59.84,62,62,49.38,27,250,82.31,51,250,41.98,40,2,120.69,114,250,124.14,95,250,57.73,59,61,122.0,93,250,52.36,51,52,127.33,113,250,90.4,30,250,54.9,57,59,52.42,51,51,73.57,39,250,123.35,140,58,227.29,250,250,108.66,74,250,56.54,58,59,63.27,63,64,56.3,51,54,54.07,47,47,39.84,36,12,76.04,51,250,44.44,43,46,61.66,53,56,35.25,35,33,40.99,41,58,49.01,54,60,57.84,59,60,42.91,44,30,39.26,40,46,43.39,34,7,49.9,32,2,50.72,55,58,45.87,25,2,52.81,46,59,127.94,108,250,77.72,61,3,50.46,53,58,60.98,62,62,45.93,50,55,38.74,37,30,82.71,39,250,58.25,63,63,62.89,46,5,43.24,24,2,50.95,53,57,145.7,200,250,78.84,33,250,62.3,63,63,73.98,37,250,26.38,18,3,103.59,55,250,74.15,55,250,76.99,58,15,110.56,96,250,57.21,30,11,98.57,61,250,57.47,58,59,43.53,24,2,78.13,59,2,41.42,41,36,61.69,35,250,126.27,101,250,57.67,59,60,90.34,46,250,177.31,204,250,107.2,57,250,60.91,61,62,46.97,49,55,106.04,86,250,60.39,61,61,57.37,58,61,70.31,42,250,40.14,43,3,107.18,134,6,57.09,58,58,97.02,87,250,59.98,59,59,54.37,37,2,73.31,41,250,103.77,93,250,41.01,28,4,57.21,59,60,62.95,30,10,143.97,173,250,57.04,58,58,70.73,44,15,67.68,61,52,54.94,56,58,34.48,36,43,45.02,44,27,58.52,57,58,56.24,57,59,89.92,42,250,53.07,55,58,101.23,66,50,59.41,59,58,67.2,56,20,62.89,63,63,56.89,58,58,56.42,58,60,112.32,127,250,56.72,57,59,55.82,56,55,55.96,55,57,72.95,23,7,121.24,101,250,59.91,60,60,56.52,53,60,64.83,65,66,57.14,59,61,56.82,57,58,42.8,27,3,66.02,66,66,56.35,58,59,59.69,59,59,57.03,58,59,54.96,55,58,62.92,59,61,47.53,50,51,62.22,63,63,231.21,250,250,53.59,55,56,58.01,59,59,50.65,53,56,58.62,59,60,6.18,4,2,59.82,60,60,60.12,61,62,56.34,57,57,54.86,56,58,56.58,55,54,90.23,54,250,56.63,55,58,54.9,57,57,53.49,50,57,55.86,55,57,56.96,59,62,106.34,53,250,60.8,61,62,59.49,54,55,56.58,57,60,64.19,61,61,56.48,58,62,58.6,54,54,56.05,54,55,77.99,45,250,55.11,56,55,52.2,55,56,59.04,57,58,62.41,63,63,55.04,54,54,98.49,80,250,69.44,47,250,100.84,73,250,42.51,39,2,59.41,51,55,61.73,63,69,53.52,53,52,107.37,61,250,75.89,72,2,57.76,59,60,80.1,42,250,63.99,42,250,58.92,60,61,69.66,55,250,60.19,37,250,69.5,54,2,50.13,49,51,58.16,54,54,88.18,50,250,55.53,53,52,59.0,60,61,65.12,50,7,100.44,76,250,58.43,59,61,59.75,28,250,120.26,115,250,78.7,45,250,56.16,53,57,31.22,29,2,43.27,40,30,78.34,60,27,0.95,0.03434 +VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,60.45,60,60,77.62,41,250,21.59,15,6,51.32,52,54,63.23,62,59,67.31,38,250,48.27,38,2,51.51,29,22,41.05,32,6,87.98,82,250,67.89,66,60,52.57,53,54,35.94,39,5,45.58,39,2,48.2,28,2,54.43,56,59,44.36,26,7,69.5,46,250,37.71,31,2,120.92,114,250,117.76,88,250,53.23,54,56,113.9,71,250,48.01,45,51,89.05,71,21,90.91,26,250,50.17,51,54,49.51,47,50,72.51,32,250,155.91,203,250,223.37,250,250,103.67,61,250,52.21,54,55,60.46,60,57,52.42,49,54,48.62,41,250,48.31,36,3,73.62,45,250,43.69,41,44,57.54,47,51,34.4,33,32,37.25,36,26,45.25,49,50,53.52,54,55,39.75,39,40,36.85,37,26,40.79,32,12,47.43,31,3,47.96,51,57,43.39,28,3,50.58,42,54,115.52,88,250,71.67,58,249,43.71,46,52,56.02,57,57,43.69,47,49,34.59,33,21,79.43,34,250,57.18,58,58,63.71,41,2,38.11,24,27,47.36,49,48,142.97,197,250,75.35,32,250,57.73,58,60,71.31,33,250,2.21,2,2,125.74,78,250,66.42,51,250,61.69,41,15,109.79,106,250,53.3,31,22,91.76,50,250,52.92,54,53,51.45,47,50,68.73,59,10,40.72,41,40,60.89,33,250,125.52,103,250,53.32,55,56,77.45,44,250,151.04,164,250,97.16,56,250,56.25,57,57,45.82,48,49,111.55,89,250,55.8,56,57,53.02,54,55,69.24,37,250,35.7,39,5,153.31,249,250,52.63,54,55,96.2,70,250,54.83,54,54,58.22,40,6,66.5,39,7,93.13,63,250,36.77,28,3,52.97,54,56,49.45,30,3,133.42,135,250,52.2,53,54,65.99,41,40,65.37,59,53,50.75,52,54,27.03,27,24,38.42,41,46,54.6,53,54,51.79,52,53,91.73,43,250,48.99,51,55,64.11,59,48,54.69,54,54,70.96,56,5,58.31,58,58,53.24,54,53,52.5,54,55,100.18,100,12,52.43,53,53,52.1,52,54,52.71,50,50,55.39,40,4,102.77,92,2,55.4,56,56,51.09,45,3,60.12,60,61,53.08,54,55,52.7,53,54,35.0,20,5,61.48,61,58,52.45,54,55,54.59,54,55,52.77,53,54,50.07,50,53,58.31,54,54,45.08,48,49,57.08,58,59,224.33,250,250,49.48,50,50,53.61,55,54,47.72,49,53,53.68,54,55,2.52,2,2,54.93,55,57,55.54,56,56,51.71,53,53,49.96,51,52,52.18,51,52,83.24,43,250,53.23,52,50,51.57,53,53,51.42,46,56,51.49,51,51,52.98,55,56,100.54,48,250,56.23,57,57,56.04,51,54,53.43,53,57,59.16,56,56,51.87,53,55,53.62,50,50,51.9,50,52,74.49,43,250,50.83,52,52,47.37,50,54,53.95,52,55,57.7,58,59,51.63,50,52,86.59,67,250,63.34,48,250,100.45,86,250,41.67,36,4,55.16,48,55,58.21,60,60,49.96,49,53,88.87,55,250,112.55,131,250,53.47,55,56,76.59,39,250,64.98,41,250,55.15,55,58,67.67,50,30,60.5,37,250,61.79,41,2,48.41,46,49,53.84,50,48,82.86,49,250,51.13,49,49,54.68,56,56,65.92,51,250,84.57,62,250,54.52,54,55,58.8,25,250,132.0,135,250,71.07,45,250,54.3,50,53,44.34,30,3,41.15,39,50,86.18,51,250,0.947,0.03435 +VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,56.54,57,57,71.09,38,250,20.1,14,5,51.95,52,50,59.66,59,53,61.48,38,2,60.79,49,2,55.96,42,2,47.65,42,27,75.51,74,250,61.23,61,61,50.98,52,53,32.32,34,2,46.15,38,8,47.35,35,2,54.64,57,57,49.44,26,250,69.98,49,250,36.35,35,2,120.37,112,250,108.28,70,250,51.28,52,53,111.51,72,250,48.7,48,54,51.94,45,6,76.65,28,250,49.75,52,57,49.63,50,56,75.03,36,250,163.07,228,250,134.8,134,250,104.6,77,250,50.55,52,52,56.01,55,49,53.48,49,50,51.35,44,44,40.29,38,14,70.49,49,250,41.89,40,51,55.16,44,48,32.9,32,28,37.97,37,57,45.11,49,49,51.9,53,54,37.5,36,31,36.41,37,30,47.8,32,9,47.37,30,29,43.45,46,54,39.57,23,4,45.94,40,48,108.93,102,250,80.27,73,250,41.99,44,48,53.75,55,55,42.7,47,49,33.98,32,25,79.13,36,250,50.16,53,55,69.87,49,250,45.61,34,5,47.63,50,50,147.41,217,250,78.2,32,250,54.38,55,55,70.6,32,250,7.49,4,4,125.4,107,250,68.74,50,250,64.8,39,16,108.17,90,250,52.49,32,250,90.18,42,250,51.42,52,52,53.5,49,48,76.91,73,2,37.96,37,40,62.09,33,4,121.64,79,250,51.37,53,53,70.24,36,250,148.36,181,250,102.45,51,250,53.87,54,55,42.0,41,45,101.91,79,250,53.38,54,55,51.57,52,53,64.76,37,2,37.09,41,5,82.43,101,12,51.27,52,53,81.41,66,250,53.67,53,54,59.3,35,6,76.15,32,250,123.13,124,141,33.43,24,2,51.08,52,54,58.52,30,5,100.99,89,250,51.25,52,52,64.56,36,9,63.32,59,50,49.57,51,53,25.57,26,29,48.11,45,44,53.38,52,53,50.69,51,52,92.2,45,250,47.6,50,52,88.55,64,3,53.29,53,53,68.6,47,3,55.44,56,55,51.51,52,53,50.29,52,52,89.88,97,21,51.21,52,53,51.82,52,52,51.06,49,51,81.88,38,4,135.45,169,250,53.02,53,54,48.81,47,2,56.12,56,58,51.63,53,54,51.12,52,52,39.65,28,3,57.24,57,56,50.6,52,53,53.85,53,52,50.98,52,53,49.67,49,52,55.74,52,52,43.55,48,50,53.95,55,54,223.33,250,250,49.05,50,51,51.27,53,54,46.23,47,50,52.33,53,55,4.71,4,2,53.54,54,53,53.18,54,55,50.89,52,53,49.79,50,51,51.89,51,51,85.28,49,250,52.12,51,51,50.5,52,52,47.84,43,48,52.3,51,52,50.77,53,55,96.43,48,250,53.71,54,55,54.94,49,47,50.65,51,53,56.19,53,54,50.94,52,54,56.2,50,52,53.71,50,48,75.2,42,250,50.26,51,53,47.1,49,50,53.44,52,54,54.99,55,55,51.46,50,50,82.8,55,250,68.78,46,250,111.66,100,250,43.87,35,4,53.56,46,47,51.14,51,50,49.27,48,50,81.27,34,250,60.96,53,47,51.34,53,53,72.97,37,250,65.18,39,2,52.97,54,54,66.34,44,250,56.68,35,250,59.55,40,3,47.47,45,51,54.89,51,50,85.24,44,250,51.36,50,51,52.45,53,54,62.62,46,4,83.78,59,250,52.92,52,50,64.57,35,250,124.0,119,250,69.25,43,250,56.38,50,50,43.3,31,2,42.72,39,5,77.39,60,11,0.947,0.03434 +VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,75.06,75,75,73.57,38,250,33.61,25,13,64.11,67,72,80.6,81,74,76.33,47,250,83.46,82,4,59.61,40,3,52.82,44,5,97.0,97,250,84.15,87,93,64.86,66,67,40.07,41,3,52.58,44,6,46.46,36,4,68.09,70,69,47.86,29,21,91.27,59,250,48.8,49,5,136.75,123,250,129.47,101,250,65.68,68,69,142.76,126,250,59.77,58,65,130.52,120,250,92.13,46,250,60.92,63,65,61.18,59,63,78.18,42,250,166.17,246,250,212.77,249,250,101.34,54,250,64.68,67,68,72.49,72,73,61.48,61,66,57.52,52,52,65.71,48,9,84.94,53,250,49.58,49,54,67.38,60,250,38.61,37,38,49.37,47,68,55.71,61,65,66.11,67,69,51.38,52,72,46.68,46,40,44.37,35,5,57.05,37,250,56.76,62,72,45.11,27,3,58.39,48,7,130.11,102,250,113.93,107,250,53.9,57,63,69.89,71,71,51.63,55,63,43.82,41,26,90.31,56,250,65.67,72,73,93.28,65,250,48.93,32,5,58.13,60,59,145.68,207,250,88.06,47,250,71.53,73,74,79.72,45,250,16.25,8,2,129.68,76,250,75.32,58,250,71.61,47,250,123.13,117,250,63.85,44,250,103.96,55,250,65.21,67,67,59.55,55,67,90.6,89,3,49.39,48,42,66.77,35,250,132.48,125,250,65.86,68,70,98.19,56,250,141.65,166,250,109.98,65,250,70.11,71,71,49.24,52,54,134.87,118,250,69.19,70,71,65.43,67,69,91.66,42,250,46.07,50,2,129.38,170,250,64.67,66,69,98.35,91,250,67.41,67,67,70.58,56,3,76.04,51,4,113.63,95,250,37.36,26,3,65.63,67,69,74.39,38,22,141.47,155,250,64.56,66,66,66.76,47,19,82.05,74,66,62.68,64,65,47.86,50,61,51.4,53,50,66.18,65,67,63.89,65,66,97.21,48,250,60.66,63,65,69.38,61,5,67.0,67,69,73.45,71,2,72.5,73,73,64.91,66,69,64.82,66,68,121.28,123,250,64.18,66,70,63.43,64,65,62.75,61,62,80.64,33,250,126.73,114,250,68.77,69,71,66.23,58,2,74.65,75,75,65.54,67,69,64.48,65,66,41.33,26,4,76.17,76,79,64.38,67,69,67.38,67,67,64.34,66,67,61.42,62,63,69.02,66,66,54.55,55,3,71.09,72,72,226.04,250,250,60.91,62,61,66.17,68,70,57.62,60,66,67.1,68,70,5.99,5,3,67.89,68,71,68.95,70,71,64.11,65,66,61.58,63,62,63.39,62,63,91.99,54,250,64.91,64,65,63.19,65,65,60.83,56,67,62.56,62,64,64.9,68,69,105.68,56,250,69.78,70,70,67.25,62,250,65.48,65,70,72.81,70,68,63.5,65,66,67.16,62,65,63.67,62,61,75.69,45,250,62.65,63,62,59.55,62,64,67.14,65,66,71.88,72,73,61.44,61,63,100.29,82,250,80.51,58,250,105.17,87,250,46.96,38,2,64.87,60,63,72.17,73,72,63.56,63,69,116.21,73,250,103.42,118,8,66.33,68,70,83.43,47,250,56.52,44,250,67.26,70,67,78.65,55,250,61.58,39,250,66.17,40,250,55.59,54,56,65.12,62,64,94.42,60,250,62.99,60,61,67.45,69,70,77.32,68,3,101.18,79,250,65.7,66,67,84.01,60,250,138.24,129,250,79.2,49,250,65.47,63,62,49.86,41,2,47.9,46,3,103.09,98,250,0.949,0.03429 +VBS46322-6321STDY9453322,75.5,77,78,77.0,78,79,81.13,82,82,79.93,39,250,39.99,31,12,70.1,72,76,84.1,84,85,87.38,56,250,77.91,67,6,59.39,42,40,64.51,61,3,148.27,184,250,91.63,92,85,72.47,74,76,45.03,46,2,56.15,44,4,60.07,47,6,72.63,75,74,58.96,36,2,92.15,68,250,52.1,48,3,148.25,161,250,137.06,113,250,72.67,75,77,143.12,110,250,67.97,70,78,111.28,89,250,102.22,56,250,70.68,74,76,72.47,68,70,76.97,46,250,171.61,248,250,222.27,249,250,126.23,94,250,72.24,75,77,79.63,82,85,70.85,70,73,63.09,60,250,72.79,66,11,84.99,63,250,59.56,59,62,72.62,67,250,46.18,44,45,56.08,55,35,62.27,70,76,73.61,75,77,56.57,58,72,51.56,53,78,63.09,51,6,48.02,37,5,64.1,70,79,63.37,32,8,65.89,56,8,129.57,125,250,104.25,96,2,61.15,66,75,76.6,78,79,61.85,66,67,47.72,44,34,86.62,51,250,72.71,76,75,95.75,75,250,56.83,37,250,64.42,68,70,149.4,236,250,79.91,31,2,77.98,79,80,82.18,48,250,4.42,2,2,125.31,84,250,82.76,69,250,72.82,57,21,143.2,165,250,61.15,42,250,115.27,83,250,73.11,75,76,64.28,63,14,114.23,96,250,53.54,54,65,73.01,41,250,145.07,130,250,73.19,76,78,101.99,63,250,196.18,250,250,117.57,74,250,77.07,78,77,60.47,64,74,116.29,101,250,76.25,78,78,73.25,75,75,101.63,62,250,55.1,63,4,148.11,227,250,72.42,74,77,118.63,107,250,74.92,75,77,84.21,48,250,64.64,38,250,123.26,122,92,43.87,32,4,72.92,75,77,80.29,46,7,146.7,180,250,72.78,74,76,70.55,57,12,88.12,79,62,69.91,72,73,63.2,64,2,51.23,54,71,73.97,74,76,71.28,73,75,101.29,53,250,67.89,72,74,45.26,43,27,75.07,75,76,98.5,77,37,79.39,80,80,72.6,74,76,72.24,75,78,151.38,195,250,72.2,74,73,72.88,73,72,70.25,70,72,86.31,29,250,135.65,155,250,75.48,76,77,70.13,65,13,80.65,81,81,73.25,75,76,72.43,73,74,46.67,28,4,82.55,83,82,72.09,75,76,75.48,75,77,72.7,74,75,68.69,70,76,77.88,75,78,58.94,65,67,77.31,79,79,227.39,250,250,69.24,71,73,73.37,76,78,65.0,68,71,73.24,75,77,4.32,4,2,76.38,77,77,76.0,78,78,71.96,74,74,71.0,72,73,71.98,71,72,98.77,63,250,72.58,72,75,70.82,74,76,64.94,61,71,72.8,72,74,72.04,75,78,109.22,60,250,76.98,78,78,75.09,71,250,72.63,73,74,80.84,79,80,70.81,73,77,74.31,71,73,70.54,71,73,84.48,59,250,71.57,73,75,65.59,70,75,72.75,73,76,78.82,79,79,70.64,70,71,107.83,90,250,83.12,64,250,128.01,125,250,61.62,53,4,75.19,70,250,77.04,79,76,69.02,69,72,105.59,56,250,111.31,130,12,73.41,76,77,86.77,54,250,75.24,55,250,74.2,76,82,84.31,66,250,64.56,45,250,68.4,38,250,64.28,65,71,78.1,73,69,96.62,62,250,69.96,69,72,74.41,76,77,78.88,59,2,116.86,103,250,74.44,75,79,79.68,57,250,146.34,142,250,79.97,56,250,76.8,70,70,49.08,37,3,58.43,54,5,117.72,98,250,0.948,0.03438 +VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,54.02,54,55,66.06,29,250,20.95,14,10,47.92,49,48,57.96,57,57,59.72,42,3,48.97,34,5,47.53,37,7,39.13,34,7,66.14,61,250,60.8,61,57,47.96,49,50,30.94,33,4,42.31,27,2,45.37,28,5,48.43,49,49,39.18,20,2,71.94,47,250,36.19,34,3,108.85,95,250,116.51,76,250,48.44,49,51,102.38,54,250,45.05,46,50,110.29,65,250,76.34,29,250,46.48,48,49,57.83,47,50,76.6,36,250,144.97,182,250,205.56,250,250,95.58,52,250,47.65,49,50,52.51,52,49,49.1,45,48,48.79,42,47,34.45,32,7,75.01,42,250,41.19,39,46,54.36,44,45,28.13,27,25,36.27,36,21,43.48,46,51,48.93,49,51,36.63,37,40,33.98,32,30,36.27,29,25,36.52,24,29,45.02,49,52,33.06,16,6,47.06,38,3,91.79,76,250,69.8,57,2,41.36,43,46,50.85,52,53,40.07,42,45,33.34,32,24,75.48,33,250,48.88,51,52,69.34,62,2,34.28,20,2,43.39,46,49,139.72,143,250,68.73,20,250,51.8,52,52,70.28,34,250,15.07,15,14,123.62,107,250,60.12,43,250,62.48,42,14,107.2,99,250,45.34,23,8,98.17,59,250,48.47,49,50,60.53,57,71,69.92,56,2,34.33,33,31,49.97,23,8,116.31,78,250,48.32,50,50,73.01,42,5,170.06,185,250,100.9,52,250,51.04,51,52,43.19,43,43,87.87,60,250,50.51,51,51,48.34,49,49,52.05,33,3,41.91,43,50,134.04,174,250,48.22,49,50,91.35,90,250,50.95,50,50,41.52,12,3,60.33,32,2,124.48,118,250,27.83,22,2,48.32,49,50,49.58,32,18,127.41,94,250,48.18,49,50,50.47,38,37,62.2,59,55,46.49,48,49,79.4,87,107,27.93,20,13,49.77,48,50,47.35,48,50,89.13,43,250,44.79,47,49,30.75,29,28,50.0,49,50,55.29,49,32,52.64,53,53,48.24,49,49,47.65,49,51,79.96,94,3,48.22,49,50,47.87,48,49,47.73,46,48,48.29,27,6,134.59,159,250,49.95,50,51,47.0,43,3,53.73,54,53,48.5,49,52,48.34,49,50,31.22,19,9,54.68,55,55,47.38,49,50,50.99,49,50,48.44,49,49,46.74,47,49,53.73,49,51,40.21,42,40,51.82,52,52,228.05,250,250,46.43,47,48,49.02,50,53,42.45,44,47,49.46,50,51,7.64,6,3,50.7,51,51,50.14,51,51,47.92,49,49,46.79,48,50,48.15,47,46,78.02,33,250,49.5,48,50,47.71,49,50,48.19,43,51,47.81,48,47,47.3,49,51,93.22,38,250,50.77,51,51,52.14,46,47,48.36,49,52,53.85,51,51,47.88,49,47,47.6,46,48,49.06,47,47,61.18,29,250,47.89,49,49,44.31,46,51,50.25,48,48,52.04,52,52,48.71,47,46,81.48,62,250,54.47,39,250,87.29,55,250,37.57,30,3,49.9,43,45,52.03,54,57,46.95,46,47,94.87,45,250,80.87,91,97,48.7,50,50,67.64,29,250,57.15,40,2,49.04,51,57,57.07,42,250,56.51,34,250,56.51,43,4,44.67,43,49,51.36,48,49,83.12,41,250,47.8,46,44,49.5,50,51,54.19,36,5,85.06,71,3,50.5,50,52,70.41,28,250,117.92,86,250,69.21,31,250,49.36,45,46,33.66,26,7,39.87,39,48,81.25,64,7,0.947,0.03426 +VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,50.36,50,49,62.09,30,250,26.69,22,3,43.77,45,46,53.11,51,49,53.14,32,3,79.49,40,250,49.61,40,15,35.91,29,2,67.21,66,85,55.84,57,57,44.89,46,46,27.1,27,3,39.95,29,4,38.64,29,9,45.03,46,49,38.53,20,11,63.11,43,250,30.31,30,4,102.37,88,250,113.6,85,250,45.24,46,47,103.94,64,250,42.18,42,45,88.47,73,3,83.42,27,250,43.1,44,45,52.34,43,44,70.95,30,250,161.81,249,250,177.9,196,250,98.22,58,250,44.8,46,47,48.32,49,55,46.22,42,45,43.78,36,37,58.12,36,3,73.95,41,250,39.08,37,46,52.22,42,250,28.2,27,25,33.74,32,21,36.75,40,40,45.94,46,47,34.31,34,38,32.19,32,21,33.66,28,3,40.67,22,17,39.32,43,50,37.13,20,2,44.88,35,3,104.89,90,250,66.23,57,2,38.31,40,44,47.46,48,49,37.2,39,43,30.46,29,25,75.88,31,250,46.29,49,49,71.06,56,2,34.31,19,4,40.95,42,44,137.88,164,250,64.41,26,2,48.59,49,50,63.9,28,250,3.2,3,2,111.34,61,250,56.88,40,250,39.94,29,13,106.12,64,250,43.94,26,2,85.66,36,250,45.45,46,47,33.21,20,17,81.58,69,2,32.0,32,32,52.81,19,4,109.76,71,250,45.24,46,47,73.34,39,2,120.4,111,250,100.19,62,250,47.69,48,48,37.85,39,45,84.76,57,250,47.28,48,48,45.43,46,48,55.93,32,2,37.89,37,5,115.73,134,2,44.98,46,46,82.71,82,250,47.51,47,47,54.96,33,2,46.69,29,5,98.19,95,79,32.39,18,3,45.18,46,46,47.03,21,8,89.47,69,3,44.74,45,46,62.37,37,11,56.12,53,46,43.51,44,46,33.47,35,34,41.42,41,3,47.05,45,46,44.54,45,46,82.28,35,250,42.2,44,45,58.13,48,42,46.64,46,47,62.72,54,30,49.09,49,49,44.98,45,47,44.4,46,47,98.1,101,4,45.0,45,46,45.14,45,45,45.66,43,44,66.88,35,2,119.6,90,250,47.29,47,48,46.06,45,52,50.16,50,50,45.19,46,46,45.36,46,47,31.21,19,3,50.53,51,50,44.91,46,47,47.28,46,46,44.9,46,47,43.83,43,45,50.26,46,45,38.68,41,46,47.97,49,49,224.88,250,250,43.31,44,43,45.34,46,48,41.05,42,45,45.86,46,47,4.0,4,2,46.95,47,47,47.01,48,48,44.46,45,46,43.15,44,44,45.46,44,43,82.19,45,250,46.14,44,45,44.5,46,46,43.06,38,44,45.04,44,44,44.42,46,49,93.97,41,250,47.64,48,48,50.92,44,46,45.03,45,46,48.19,47,49,45.29,45,45,45.56,43,42,45.41,43,44,70.15,36,250,43.58,44,43,40.43,42,45,48.25,45,45,48.74,49,49,45.37,43,46,80.81,58,250,60.0,41,250,81.55,59,250,37.61,30,3,46.39,40,40,47.23,48,47,42.6,41,46,93.38,46,250,97.22,111,116,45.71,47,47,69.8,39,250,48.61,35,2,46.44,46,51,54.93,41,2,51.43,30,250,50.25,25,2,41.38,40,44,45.72,44,45,85.2,41,250,45.1,43,42,46.28,47,48,59.94,45,7,84.4,68,250,47.04,47,49,55.38,29,250,95.25,70,250,55.1,36,10,44.9,41,38,33.24,23,3,36.95,33,2,81.23,59,250,0.946,0.0343 +VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,70.03,70,70,74.56,34,250,26.94,25,26,56.4,59,67,73.55,72,64,73.73,45,2,99.94,88,3,63.26,52,4,49.16,40,5,90.18,93,250,78.05,80,78,60.27,62,63,38.02,38,3,50.0,39,2,37.67,30,4,61.54,64,66,47.63,29,11,77.54,56,250,47.29,42,2,124.67,113,250,123.24,82,250,61.41,63,64,93.56,62,250,55.55,56,59,105.74,67,250,94.33,33,250,57.54,60,62,70.66,58,58,74.18,38,250,164.19,249,250,201.9,250,250,100.5,54,250,60.12,62,63,67.71,68,68,60.38,56,58,53.94,47,52,58.99,43,3,79.74,54,250,47.95,47,57,63.87,55,250,35.74,34,36,46.29,44,34,50.97,56,64,61.48,63,64,46.63,46,37,39.18,38,28,44.98,34,28,39.13,28,4,53.22,58,64,64.36,36,6,54.93,45,4,97.28,84,250,59.37,45,2,48.08,51,62,65.11,66,66,48.75,52,56,39.72,38,26,79.2,32,250,64.86,68,77,72.8,46,29,37.6,25,2,54.37,58,62,143.76,175,250,80.33,37,2,66.54,67,67,76.99,44,250,5.79,5,2,117.2,69,250,69.44,53,250,58.61,38,20,120.22,122,250,50.65,32,32,92.28,45,250,60.93,62,63,59.0,55,55,61.07,49,14,42.6,42,42,64.82,35,3,131.52,125,250,61.14,63,64,88.77,51,250,146.67,161,250,108.8,68,250,64.95,66,66,46.53,48,51,108.8,86,250,64.38,65,66,60.87,62,64,88.43,46,250,52.7,51,69,121.79,146,10,60.53,62,63,97.42,87,250,63.25,63,62,54.45,20,3,62.99,38,2,118.71,112,250,39.82,28,5,60.91,62,63,47.27,28,22,149.49,168,250,60.36,61,61,58.94,47,4,74.52,69,59,58.53,60,62,46.93,48,27,40.79,42,23,61.79,61,63,59.3,61,62,92.05,45,250,56.15,59,60,66.02,65,64,62.9,62,63,63.91,52,12,67.53,68,68,60.39,61,61,60.51,62,65,101.62,106,6,60.57,62,63,59.53,59,59,58.69,57,59,78.94,28,5,129.78,122,250,63.86,64,63,56.79,53,5,69.83,70,70,60.86,62,64,59.93,61,60,39.95,24,2,71.02,71,68,60.2,62,63,62.64,63,65,61.1,62,65,57.5,58,62,65.03,62,64,49.92,54,53,66.2,67,66,229.1,250,250,56.65,58,59,60.98,63,65,53.67,56,56,62.43,63,61,5.63,4,4,63.93,64,64,63.97,65,65,59.53,61,61,57.55,59,60,59.25,58,60,90.74,47,250,59.58,59,62,58.96,61,63,55.99,51,62,58.8,58,59,60.05,62,64,103.24,50,250,64.83,66,66,62.45,58,61,59.89,61,61,65.99,64,66,58.8,61,63,63.6,59,59,56.02,56,57,74.32,40,250,59.12,60,60,55.87,58,62,63.12,62,63,66.84,67,67,59.91,59,62,97.81,82,250,65.05,50,250,107.58,99,250,45.48,38,2,60.18,55,60,65.28,67,69,58.03,58,59,99.76,52,250,62.5,48,28,61.57,63,64,76.63,47,250,76.2,47,250,62.4,64,66,77.43,57,250,60.36,38,250,70.67,55,2,52.84,52,56,61.46,58,59,91.5,54,250,59.53,57,57,62.83,64,65,70.45,51,2,95.74,75,250,62.62,62,64,71.55,30,250,131.51,124,250,72.19,40,250,63.95,56,60,43.94,39,6,42.77,41,6,112.52,87,250,0.947,0.03439 +VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,62.65,62,62,70.16,39,250,27.55,24,4,50.73,52,53,66.37,65,67,70.08,41,250,63.95,55,8,59.95,38,3,51.34,41,28,101.25,104,250,70.18,70,71,54.25,55,56,35.09,36,2,46.98,41,2,35.47,22,5,56.11,58,59,46.68,27,250,71.51,49,250,42.48,40,26,95.98,80,250,123.51,79,250,55.17,56,58,114.54,70,250,48.24,49,53,119.57,55,250,84.44,29,250,52.26,54,54,49.14,49,54,70.6,35,250,117.75,139,61,201.74,245,250,108.62,80,250,54.0,55,56,60.76,60,57,52.58,50,49,51.22,45,46,36.16,28,7,78.6,47,250,41.37,40,44,58.94,50,57,33.09,33,28,40.75,38,26,48.25,53,56,54.96,56,57,40.86,40,34,36.89,36,33,36.83,33,3,59.97,51,2,47.9,53,54,41.77,29,4,49.8,41,61,105.82,92,250,70.79,57,3,44.52,47,51,58.1,59,59,42.71,46,49,36.67,34,29,79.19,31,250,54.69,60,66,93.2,77,250,42.38,27,10,47.36,50,52,145.99,193,250,72.03,34,11,59.93,60,61,72.35,40,250,21.98,18,2,121.62,65,250,63.5,45,250,50.77,37,11,108.88,95,250,51.91,28,13,85.36,49,250,54.7,55,57,37.31,24,24,71.34,63,5,40.53,39,38,56.01,29,6,127.39,100,250,55.17,57,58,90.79,54,250,153.01,188,250,109.83,58,250,58.28,59,59,42.42,43,43,99.3,72,250,57.73,58,58,54.51,55,57,63.24,36,250,39.9,44,7,107.49,133,4,54.02,55,56,98.44,85,250,56.94,56,56,62.31,44,2,50.98,31,3,72.82,62,2,30.01,21,6,54.75,56,56,60.31,44,12,150.26,156,250,53.61,54,55,91.8,53,250,66.74,61,55,52.42,53,54,59.82,67,2,37.2,37,37,56.24,55,56,53.72,54,55,92.43,44,250,50.81,53,55,97.01,57,50,56.14,56,55,62.48,49,3,60.27,60,60,53.82,55,55,54.32,55,55,78.28,73,9,53.46,54,55,52.81,53,53,52.97,51,51,79.74,41,3,123.34,125,250,57.57,58,57,54.45,49,2,62.57,62,61,54.21,55,56,53.42,54,54,50.39,34,7,63.05,63,62,53.65,55,57,56.84,56,57,53.7,55,56,51.91,52,53,59.87,55,54,44.06,49,53,58.75,60,60,231.15,250,250,50.46,51,52,55.2,56,58,48.48,50,54,55.96,56,58,4.05,4,4,57.17,57,58,57.48,58,59,52.58,53,53,51.88,53,53,53.08,52,53,88.41,54,250,54.5,53,55,52.05,54,54,49.07,44,50,52.26,52,50,53.92,55,57,88.22,54,250,58.08,58,59,58.76,53,57,55.04,55,58,57.99,57,57,55.24,55,54,53.17,51,52,54.97,51,55,79.88,43,250,52.24,53,50,49.56,52,52,56.11,53,53,59.74,60,60,52.62,52,52,81.06,59,250,68.26,49,250,91.9,64,250,42.26,31,2,55.72,48,250,59.88,62,68,51.39,50,49,82.07,37,250,60.28,49,43,55.13,56,58,75.38,39,250,53.47,37,250,55.86,56,60,65.28,45,250,58.71,34,250,53.4,31,2,46.83,46,50,55.66,53,56,78.21,44,250,51.56,50,51,56.32,57,58,61.1,51,5,84.67,62,250,54.31,54,53,60.44,34,250,122.47,108,250,71.8,46,250,59.76,52,48,28.3,24,4,42.76,42,47,94.8,88,5,0.948,0.03432 +VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,67.23,68,66,77.4,42,250,32.86,30,32,59.59,60,61,68.58,67,59,65.36,48,250,93.51,72,250,79.12,75,4,49.01,39,3,79.66,67,250,75.98,77,75,59.7,61,61,39.29,39,2,52.36,42,3,55.15,31,3,61.73,64,67,45.74,25,250,83.34,57,250,52.66,40,4,129.43,135,250,128.78,87,250,60.21,62,64,91.57,56,250,55.79,55,56,122.96,106,250,95.52,44,250,57.12,59,61,56.88,55,55,77.82,40,250,168.86,249,250,182.81,219,250,107.62,69,250,59.37,61,63,63.77,64,63,57.45,55,56,55.19,49,250,65.06,48,3,79.55,54,250,46.75,45,48,65.02,57,60,36.43,35,26,45.3,43,37,52.16,56,62,60.53,62,63,46.78,47,61,41.11,40,27,54.27,40,3,54.65,45,8,50.27,55,59,51.43,32,2,57.79,47,6,126.69,104,250,67.85,56,249,50.1,53,59,63.36,65,65,51.98,56,63,40.1,38,24,83.96,41,250,63.52,67,68,59.79,44,3,48.59,33,5,52.92,55,56,139.94,156,250,78.35,18,2,64.62,65,65,79.96,43,250,5.01,4,3,127.47,107,250,79.35,59,250,64.41,32,250,120.6,103,250,59.16,34,250,92.19,61,250,59.99,61,62,64.88,57,58,86.17,54,11,45.24,44,27,62.15,29,3,127.83,93,250,60.35,62,63,97.02,54,250,137.9,146,250,108.72,53,250,63.53,64,65,49.6,51,58,104.96,82,250,62.97,64,64,60.07,61,64,70.45,49,8,41.27,48,2,139.49,186,250,59.77,61,62,122.49,130,250,62.54,62,64,69.33,45,4,65.85,45,5,139.4,133,250,36.03,22,2,60.11,62,63,68.05,41,17,125.99,122,250,59.61,60,61,72.09,40,2,73.47,68,54,58.02,60,61,55.58,61,80,47.47,50,22,61.62,60,61,58.44,60,61,91.67,48,250,55.69,58,60,78.48,67,67,62.04,62,62,78.48,61,3,65.63,66,66,59.62,61,60,59.18,61,63,112.35,121,2,59.65,60,62,58.79,59,59,59.07,57,60,102.41,73,250,123.65,112,250,63.0,63,64,61.14,60,3,66.99,68,67,60.33,62,63,59.73,60,63,48.05,28,2,67.84,69,69,59.43,61,63,62.85,62,62,59.82,61,63,57.45,58,61,65.81,61,62,49.17,55,58,63.99,65,65,223.86,250,250,57.03,58,60,60.58,62,62,53.99,56,60,61.35,62,65,4.89,5,5,62.58,62,62,62.83,64,64,59.17,60,61,57.92,59,60,59.02,58,58,89.61,48,250,60.0,59,59,58.89,61,61,57.37,53,58,57.73,58,58,60.09,62,64,94.06,51,250,63.7,64,65,62.25,57,250,59.61,60,61,68.38,65,65,60.33,61,60,59.14,57,58,58.12,58,59,82.53,47,250,58.28,59,60,55.52,58,60,62.79,61,61,65.09,66,65,57.36,59,60,102.13,86,250,69.38,53,250,117.91,104,250,48.78,41,3,63.31,56,250,63.1,65,71,57.65,56,60,102.7,51,250,103.08,107,116,60.58,62,63,84.02,45,250,57.42,36,250,61.52,62,70,78.96,65,6,68.06,43,250,72.03,55,5,55.27,54,58,61.54,57,54,93.64,56,250,57.81,56,58,61.62,63,65,81.35,60,250,96.15,72,250,61.15,61,61,68.77,45,250,133.33,136,250,76.24,48,250,60.39,55,57,36.24,34,3,45.92,40,57,117.93,88,250,0.948,0.0344 +VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,60.81,61,60,72.23,36,250,28.84,22,3,53.21,53,56,65.6,64,58,64.13,44,250,101.1,84,250,57.09,41,39,40.39,31,21,76.19,71,13,67.9,67,65,53.04,54,54,34.9,35,2,46.74,38,2,47.67,35,4,56.52,58,59,57.98,32,250,73.43,46,250,39.72,33,3,112.32,99,250,120.86,70,250,53.6,55,57,122.35,83,250,47.34,46,50,117.01,104,250,79.73,31,250,51.62,53,53,65.5,51,250,75.9,36,250,129.16,150,51,152.05,146,250,110.57,75,250,53.0,54,56,59.63,58,50,52.87,49,49,50.74,43,45,40.15,31,6,66.75,50,250,44.66,42,47,58.19,48,250,34.22,33,31,40.02,38,23,46.27,50,53,54.07,55,55,39.55,40,36,36.35,36,32,49.17,34,2,50.93,32,250,46.09,50,58,44.53,26,2,53.42,42,27,113.34,106,250,55.05,35,250,42.71,44,48,56.68,58,58,44.3,47,51,35.8,33,29,77.76,32,250,56.24,58,60,54.53,41,8,41.02,25,2,47.91,50,52,140.44,138,250,65.72,21,2,58.14,59,58,74.74,38,250,5.98,4,2,119.65,96,250,69.32,52,250,57.71,33,20,118.45,117,250,57.01,35,2,103.94,57,250,53.48,54,55,54.96,51,52,79.78,62,3,38.66,38,35,58.54,30,250,123.5,91,250,53.76,55,56,80.51,44,250,187.88,236,250,109.24,59,250,56.85,57,57,41.53,41,47,102.21,77,250,56.29,57,58,53.5,54,56,69.5,37,250,52.32,47,2,143.34,186,250,53.42,54,55,108.03,104,250,55.75,55,56,55.37,22,2,80.59,47,250,87.63,63,250,29.48,20,2,53.25,54,54,53.29,28,9,113.88,75,250,52.98,53,55,75.41,43,12,64.63,57,54,51.73,53,54,54.28,60,7,42.03,43,58,55.33,53,53,52.63,53,55,91.3,42,250,49.57,52,54,30.83,28,27,55.13,55,55,69.41,53,2,58.57,59,59,53.05,54,54,52.71,54,54,90.2,100,10,53.45,54,55,52.19,52,52,52.69,51,51,82.72,43,250,145.74,182,250,56.2,56,57,51.4,47,2,61.03,61,62,53.95,55,57,52.98,53,53,44.15,27,3,61.84,62,61,52.63,54,55,55.89,55,55,53.04,54,55,50.84,51,52,59.58,54,54,48.34,48,48,57.47,58,60,232.11,250,250,50.4,51,52,53.56,55,55,48.07,49,52,54.67,55,56,3.31,3,4,55.71,56,54,55.95,57,57,52.18,53,55,50.96,52,54,52.83,51,50,81.38,41,250,52.99,52,53,51.31,53,55,50.25,46,54,52.21,52,51,53.01,55,53,103.47,50,250,56.59,57,57,57.82,52,52,55.63,55,55,57.07,57,59,53.02,53,53,54.39,51,53,56.76,51,54,74.51,37,250,51.9,53,52,48.83,52,55,54.35,52,53,58.1,58,58,52.98,51,50,93.99,76,250,64.87,44,250,108.3,92,250,43.09,36,3,55.73,49,250,58.42,60,64,52.4,51,53,104.63,52,250,63.72,49,40,54.25,55,56,74.64,40,250,62.97,39,3,55.06,55,60,59.63,44,2,62.09,37,250,57.97,49,3,49.83,48,50,55.22,51,52,88.79,50,250,53.59,51,51,54.9,56,57,70.08,45,250,75.58,57,250,54.85,54,57,74.34,38,250,129.31,116,250,75.11,38,250,55.46,50,49,39.22,28,3,43.4,40,53,98.31,61,250,0.948,0.03423 +VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,66.67,67,66,69.96,41,250,26.84,19,13,59.47,61,63,70.89,71,72,68.56,48,250,87.54,47,250,49.31,37,2,54.47,47,33,87.5,97,250,73.96,75,75,59.05,60,61,39.9,45,2,50.14,44,3,55.88,27,5,61.34,63,63,51.15,31,2,75.87,56,250,45.35,41,36,129.44,131,250,121.5,73,250,59.82,61,63,117.92,85,250,57.83,56,60,110.41,92,250,85.85,43,250,57.76,60,64,62.29,55,60,78.07,39,250,161.28,228,250,226.86,250,250,112.65,73,250,58.83,61,61,64.61,65,67,57.51,55,57,56.08,50,250,42.8,38,11,76.03,47,250,47.47,46,50,62.24,53,250,37.98,38,40,44.28,44,25,52.89,57,60,59.94,61,62,44.2,43,30,41.61,39,33,50.15,37,8,40.89,28,32,51.12,56,60,54.27,24,2,57.4,48,3,112.43,96,250,76.98,65,250,50.69,54,60,62.88,64,65,48.11,52,57,37.72,37,24,78.73,37,250,63.06,66,70,61.94,53,250,43.47,25,2,51.83,54,56,146.9,221,250,70.4,29,250,63.88,65,66,75.96,42,250,17.76,19,2,121.42,109,250,70.74,55,250,63.93,47,15,121.25,109,250,60.92,40,250,95.84,48,250,59.75,61,63,63.03,55,52,114.66,108,250,41.71,42,42,62.32,34,3,118.66,83,250,59.78,62,63,86.27,55,250,151.84,195,250,109.76,57,250,62.9,64,63,51.79,54,54,105.16,87,250,62.48,63,64,59.74,61,62,69.92,40,250,42.0,39,3,145.88,209,250,59.13,60,62,96.16,82,250,61.63,61,63,60.77,40,250,76.98,43,250,121.79,106,250,47.62,38,2,59.45,61,61,53.99,31,3,130.19,142,250,59.68,60,61,85.52,44,250,72.9,65,64,57.43,59,60,30.07,32,35,58.84,55,2,61.07,60,60,57.87,59,60,90.63,45,250,55.72,58,62,37.93,36,42,61.68,61,60,70.38,58,99,64.93,65,65,59.32,60,63,58.72,60,63,117.28,138,250,59.67,61,62,59.17,59,58,58.3,57,60,77.04,39,5,127.39,84,250,62.0,62,63,57.66,59,63,66.65,67,67,59.8,61,62,58.84,59,59,41.98,29,5,67.02,67,66,58.89,61,62,61.6,61,62,59.68,61,60,56.76,57,59,64.47,60,60,49.33,55,60,64.24,66,68,227.66,250,250,56.47,57,58,59.64,61,63,52.2,54,58,60.5,61,63,6.24,7,8,61.88,62,63,62.05,63,63,58.72,60,59,57.36,58,60,58.94,58,58,89.03,49,250,59.7,58,58,57.71,59,59,54.66,51,63,58.35,58,57,59.12,61,62,101.94,46,250,62.77,63,64,63.33,58,250,58.98,60,60,65.73,63,64,58.62,60,62,62.07,57,57,58.76,58,62,78.33,39,250,58.33,59,59,53.24,57,60,61.13,60,65,64.28,65,65,57.36,57,59,96.18,72,250,64.76,45,250,94.7,71,250,49.04,42,2,60.54,54,250,62.41,63,75,57.09,56,58,80.12,43,250,97.61,112,5,60.16,62,63,77.48,44,250,61.01,38,250,61.95,63,67,67.14,51,250,61.57,38,250,65.19,51,2,52.33,52,60,61.5,57,55,95.1,58,250,59.14,57,57,61.13,62,64,71.32,56,4,105.91,71,250,61.18,61,58,59.66,26,250,124.34,117,250,88.05,46,250,58.72,56,55,30.56,29,2,49.62,47,3,103.41,87,250,0.947,0.03439 +VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,73.51,73,73,80.04,51,250,21.87,17,6,58.65,61,66,76.35,75,74,72.94,50,250,78.99,80,6,63.92,44,26,51.53,43,2,93.51,90,250,84.99,85,77,62.48,64,64,39.38,41,4,51.51,41,2,50.12,40,2,66.11,68,73,43.53,27,250,82.37,56,250,42.86,34,5,119.22,100,250,128.03,89,250,63.95,65,67,112.29,72,250,53.78,54,64,81.18,33,11,74.28,27,250,60.15,62,61,68.62,58,250,78.17,41,250,142.25,167,250,134.07,136,250,106.34,61,250,62.56,64,64,71.37,72,71,59.16,58,59,54.96,48,250,82.48,49,250,83.03,53,250,48.65,47,52,63.95,55,250,40.39,41,44,48.38,46,36,51.89,57,59,64.06,65,66,48.28,50,50,43.53,42,30,45.82,37,20,55.56,34,250,57.59,63,70,55.07,26,5,62.37,50,250,105.96,88,250,109.4,105,250,52.27,57,63,67.59,69,69,53.02,57,65,40.67,39,25,83.67,32,250,68.28,71,72,68.47,54,35,46.91,33,38,54.36,57,57,141.96,185,250,85.96,36,250,70.4,71,71,78.32,44,250,5.44,5,2,124.19,67,250,72.95,57,250,70.44,44,250,127.87,130,250,62.27,35,250,112.07,80,250,62.97,64,65,43.63,27,30,86.56,78,5,48.65,49,53,66.13,35,250,127.74,94,250,63.27,65,66,88.55,55,250,138.81,142,250,107.78,60,250,67.82,68,68,47.76,51,58,107.54,97,250,67.11,68,68,63.15,64,66,73.37,39,250,53.27,50,49,138.49,175,250,62.32,63,65,102.44,88,250,65.36,65,65,59.76,39,4,64.22,43,6,111.82,99,92,32.83,24,7,63.43,65,66,66.08,33,21,129.55,119,250,61.45,62,62,56.66,44,13,74.68,68,55,60.56,62,65,49.52,37,19,47.23,48,47,63.81,63,63,61.59,63,64,93.24,44,250,58.42,61,63,41.96,40,22,64.55,64,64,69.87,59,4,70.18,70,70,62.0,63,64,62.1,64,66,140.43,169,250,62.22,63,66,60.21,60,62,61.86,59,61,79.86,28,250,132.88,152,250,66.81,67,70,64.09,57,4,73.06,73,73,63.27,64,65,61.35,62,64,30.53,15,5,74.43,74,72,62.79,64,66,64.69,64,67,62.29,63,64,59.3,60,60,65.88,62,63,53.12,56,58,67.99,69,70,234.72,250,250,57.28,58,59,63.18,64,65,56.25,58,62,65.08,65,63,2.84,2,2,65.31,65,66,66.97,68,69,60.95,62,64,59.86,60,61,60.68,59,63,92.41,51,250,61.87,60,61,59.73,62,63,61.87,58,60,59.47,59,56,62.09,64,67,107.13,50,250,67.7,68,69,65.83,61,66,62.8,62,61,68.62,67,68,59.91,62,60,62.7,58,58,60.27,58,59,71.63,39,250,59.57,60,60,56.11,59,64,63.6,62,64,69.63,70,70,59.69,58,59,102.77,81,250,73.88,54,250,100.51,75,250,55.7,38,3,62.08,57,250,69.24,70,64,59.56,59,62,113.21,48,250,125.1,148,250,64.16,66,66,81.24,49,250,61.72,36,250,65.68,66,65,71.49,46,250,63.08,39,250,60.37,34,4,53.78,53,56,63.06,59,58,93.69,58,250,58.44,56,57,65.43,67,67,70.82,61,4,85.11,64,250,64.13,64,62,83.92,65,250,127.42,116,250,79.71,45,250,61.33,58,59,43.7,37,6,49.99,48,59,111.79,113,250,0.947,0.03445 +VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,58.71,58,56,73.33,30,250,26.4,20,8,48.25,49,56,62.26,60,59,62.7,40,250,85.65,61,250,71.59,67,2,38.53,30,23,84.49,88,250,67.54,66,67,49.35,50,51,31.17,31,3,50.36,46,2,51.23,30,9,51.01,54,58,47.09,26,250,69.0,46,250,41.78,36,4,93.06,79,250,124.89,91,250,50.13,51,52,112.37,69,250,44.87,43,46,108.4,71,250,95.88,30,250,47.66,49,51,46.58,44,44,69.8,32,250,133.97,167,250,212.38,250,250,92.14,47,250,49.39,50,51,55.22,54,49,48.84,47,51,46.23,38,40,35.59,32,43,56.25,37,37,38.95,36,42,54.72,44,45,30.68,29,28,37.36,36,27,41.1,45,45,50.53,51,52,39.06,39,30,36.82,37,26,42.14,29,7,41.16,31,27,43.87,47,48,35.85,22,5,45.99,36,20,112.53,99,250,63.57,51,250,40.49,41,45,53.38,54,54,40.44,43,46,32.84,31,20,77.85,33,250,48.39,52,54,57.23,35,2,36.89,23,3,42.19,45,47,136.62,138,250,71.54,28,7,55.72,56,55,75.54,38,250,12.61,7,2,109.68,99,250,59.57,42,250,48.16,34,17,105.29,94,250,49.9,30,9,94.47,64,250,49.72,50,50,40.58,28,11,80.15,66,9,37.72,38,39,55.2,26,8,115.04,75,250,50.53,52,52,76.58,44,250,142.82,155,250,102.23,53,250,53.45,54,53,38.42,39,42,95.05,63,250,53.12,54,54,49.94,50,51,67.55,38,250,36.69,35,2,131.32,160,11,49.31,50,52,85.16,70,250,51.98,51,51,54.7,32,3,53.02,33,5,81.75,65,47,27.42,12,2,49.99,51,50,57.23,34,24,141.22,148,250,48.81,49,49,47.39,41,12,59.17,53,46,47.59,48,49,28.07,30,36,34.87,37,46,50.95,49,49,48.94,49,49,88.77,40,250,45.8,48,50,27.37,24,21,51.33,51,50,59.23,43,3,55.63,56,55,49.25,50,51,49.52,51,51,148.04,186,250,49.15,49,50,47.93,47,48,48.44,46,47,70.79,56,8,131.29,143,250,52.62,53,54,46.44,42,5,58.61,58,56,49.43,50,51,48.67,49,48,33.72,18,2,59.37,59,58,49.1,50,51,51.93,51,51,48.96,50,50,47.46,47,48,54.4,50,51,39.01,42,41,54.61,55,57,228.78,250,250,45.39,46,47,50.33,51,53,44.08,45,49,50.96,51,51,2.5,2,2,51.68,51,51,52.74,53,54,48.1,48,49,46.76,47,50,48.55,46,45,83.93,44,250,48.74,47,50,47.6,49,48,45.66,40,51,46.77,46,46,49.54,51,53,84.67,45,250,53.4,54,53,54.98,48,50,50.46,50,53,56.23,53,54,46.85,48,48,49.21,45,48,48.58,45,48,69.18,38,250,46.82,47,46,44.0,46,47,50.59,48,47,55.08,55,55,47.67,46,48,81.73,60,250,65.56,43,250,99.41,75,250,41.13,33,2,53.41,44,45,58.11,59,59,47.84,46,48,90.77,41,250,38.37,25,20,50.73,52,53,74.2,38,250,53.57,39,2,52.69,51,47,51.0,35,3,56.47,33,250,64.0,49,2,44.2,42,45,48.58,46,47,85.14,43,250,46.3,43,43,51.56,52,52,60.55,40,2,81.22,57,2,50.65,51,56,62.42,37,250,104.33,93,250,70.0,41,3,50.23,47,46,30.73,28,3,39.1,34,5,78.67,60,28,0.948,0.03424 +VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,35.0,35,34,55.47,23,250,16.85,12,3,29.14,28,27,37.35,37,38,45.18,23,7,32.31,30,3,38.85,26,17,25.19,19,6,58.59,57,68,38.2,38,39,30.12,30,30,21.88,21,2,31.38,21,2,32.93,21,3,31.3,32,33,40.43,16,13,54.64,32,28,26.29,24,24,82.24,71,250,82.81,47,250,30.78,31,32,89.8,46,250,29.2,26,27,54.94,32,5,62.09,15,250,27.77,28,26,27.79,26,27,50.9,22,10,120.05,157,22,185.35,244,250,81.83,37,250,30.56,31,31,35.06,35,34,32.16,28,30,29.96,19,20,23.63,21,2,55.56,29,250,27.67,24,26,41.47,28,29,23.02,22,18,24.53,23,12,26.25,27,29,31.46,31,32,23.41,23,19,22.57,22,28,25.04,19,13,26.76,17,16,29.22,31,33,30.57,22,5,33.1,26,29,82.62,63,250,46.69,32,4,26.54,28,30,31.71,32,32,24.88,26,27,21.43,21,14,75.51,23,250,32.82,35,37,40.27,29,16,30.64,17,3,27.08,27,27,128.32,148,250,52.9,15,6,34.83,35,35,58.51,23,7,8.71,5,2,79.65,37,250,48.65,32,250,30.06,20,6,80.36,71,250,34.92,17,6,81.44,28,250,31.23,31,32,32.21,16,16,71.52,56,7,22.49,22,24,51.41,21,3,100.44,64,250,31.17,32,32,55.48,28,3,98.49,97,14,96.82,40,250,33.51,34,34,27.57,27,23,70.18,49,7,32.3,32,32,30.81,30,31,43.28,24,9,26.04,24,28,112.0,153,5,30.3,30,31,63.75,49,250,32.54,31,31,43.32,27,2,43.45,24,5,62.29,57,27,22.37,15,2,30.77,31,31,34.75,22,9,115.04,122,2,29.53,29,30,38.12,30,20,41.87,38,32,29.63,29,29,19.58,20,18,23.36,23,12,32.73,30,31,30.5,30,31,73.24,24,250,28.67,29,29,39.12,36,36,31.87,31,31,40.62,38,21,33.45,33,33,30.02,30,31,30.94,31,32,43.07,42,12,29.34,29,30,32.77,32,32,31.47,28,30,44.75,35,3,103.48,67,250,32.69,32,33,30.39,25,2,35.66,35,36,30.89,31,31,30.39,30,30,25.87,16,2,34.69,35,34,30.72,31,32,30.6,29,27,28.75,29,29,29.46,28,29,35.73,30,31,23.55,24,26,30.65,31,32,235.66,250,250,28.65,29,29,30.26,30,30,29.79,30,30,30.96,30,30,3.19,3,2,30.1,30,28,32.62,33,33,28.81,29,30,28.55,28,28,31.69,29,29,70.13,31,250,29.54,28,29,28.75,29,30,30.96,26,32,29.95,29,29,29.48,30,31,67.36,34,2,32.91,33,33,36.32,29,29,28.54,27,26,34.07,30,33,28.95,29,31,30.94,29,27,33.31,28,30,48.78,26,10,27.39,28,28,26.56,27,27,30.77,28,29,33.36,33,33,29.8,27,26,61.45,43,250,43.67,28,29,61.66,39,3,30.42,24,21,34.33,26,26,33.43,33,30,31.79,29,32,71.31,36,250,57.42,58,60,31.09,31,32,59.29,27,3,42.47,24,4,32.67,29,29,42.28,28,3,42.8,21,250,42.85,32,2,29.9,26,29,30.75,27,29,62.06,28,250,31.34,28,28,31.26,31,31,38.73,30,6,58.43,46,22,31.56,31,33,58.48,17,250,80.16,69,2,47.35,27,5,34.46,30,29,25.16,22,14,25.61,21,19,44.29,35,34,0.946,0.03412 +VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,67.22,66,65,69.81,32,250,18.59,12,2,51.3,50,53,71.78,69,68,63.41,40,250,55.2,33,4,73.02,63,4,43.27,36,15,87.02,88,249,79.46,76,72,53.98,54,54,37.06,39,4,47.02,38,2,52.89,41,3,57.73,59,58,44.71,24,250,72.39,45,250,43.67,42,2,111.29,101,250,120.51,62,250,55.88,56,57,100.34,65,250,48.21,43,42,87.63,37,4,77.23,28,250,50.88,52,51,48.54,46,50,72.17,36,250,160.72,234,250,227.19,250,250,104.44,60,250,54.47,55,56,68.34,66,66,54.12,51,56,47.98,38,40,39.86,36,9,71.71,42,250,40.07,37,41,56.25,45,47,38.1,37,26,43.62,44,32,43.55,47,53,56.07,56,56,43.06,44,49,38.37,38,25,41.71,32,4,52.47,35,250,48.14,52,58,42.18,23,5,54.09,42,3,108.21,91,250,67.62,52,250,42.87,45,52,59.54,60,61,41.31,44,46,34.74,33,27,79.74,32,250,58.27,63,72,123.71,115,250,43.94,31,27,44.86,47,46,139.51,157,250,71.55,30,250,63.93,64,63,70.38,34,250,4.43,4,4,105.28,56,250,71.2,50,250,48.78,33,11,111.03,88,250,57.88,28,10,98.67,65,250,54.11,54,55,55.6,47,250,94.18,78,250,42.01,41,37,60.95,25,250,120.58,80,250,55.7,57,57,82.9,44,250,155.46,180,250,108.09,53,250,59.69,60,60,44.5,45,49,100.31,70,250,58.94,59,59,54.55,54,54,89.18,44,250,38.98,39,2,127.22,158,6,53.63,54,54,90.95,76,250,56.13,55,53,76.79,64,2,57.35,37,4,77.09,71,2,35.54,16,2,54.91,55,57,53.02,29,9,145.59,176,250,52.12,52,51,79.84,50,250,64.39,57,56,52.18,52,50,31.43,33,39,44.4,44,2,55.26,53,54,52.62,53,53,93.14,44,250,50.31,52,53,55.06,50,49,55.27,54,53,63.16,54,36,61.85,62,61,52.79,53,52,54.16,55,57,91.81,93,15,52.56,52,54,50.31,50,48,51.44,48,49,48.57,30,8,132.14,154,250,58.67,59,60,52.67,45,3,66.77,65,64,54.18,55,55,51.23,51,50,40.42,23,3,67.37,66,61,54.62,55,56,56.82,56,58,52.76,53,53,50.31,49,51,58.12,54,54,42.06,45,51,60.06,60,58,226.35,250,250,46.79,47,47,55.4,56,56,48.32,49,51,55.7,55,57,3.2,2,2,55.85,55,53,58.97,59,59,50.56,51,50,48.6,48,48,49.92,47,48,90.75,55,250,52.67,50,48,50.38,52,52,50.99,45,45,49.17,48,49,53.68,54,56,110.0,61,250,59.45,60,60,58.12,52,54,53.16,52,53,60.33,56,55,53.13,53,55,52.48,47,45,50.7,48,48,74.43,42,250,49.82,50,52,46.53,48,47,54.26,52,50,61.45,61,61,50.07,48,49,89.49,70,250,66.29,45,250,97.24,67,250,44.58,37,2,55.27,46,250,62.98,62,49,50.75,48,52,109.49,64,250,66.55,39,2,56.18,57,57,71.24,36,250,62.45,43,250,54.98,54,53,68.77,51,250,52.46,31,250,60.95,46,4,45.82,42,46,51.79,48,51,83.84,49,250,47.71,45,48,56.99,57,58,62.47,42,2,92.89,69,250,53.6,52,52,61.1,28,250,118.29,98,250,74.62,49,250,55.93,47,50,41.89,39,3,40.87,38,45,91.12,86,250,0.947,0.03442 +VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,65.78,66,64,69.47,30,250,28.23,22,6,55.0,55,59,70.07,69,66,76.5,57,250,84.94,48,250,49.85,38,29,50.88,44,24,81.48,78,250,72.16,70,69,55.96,57,58,34.45,35,2,46.4,36,2,39.9,28,17,59.45,61,61,44.52,27,250,74.75,51,250,38.3,30,3,121.99,108,250,122.97,86,250,56.78,58,60,114.18,74,250,51.68,52,2,116.65,67,250,91.73,40,250,53.38,55,56,60.78,51,53,71.45,35,250,163.74,249,250,130.63,128,250,101.69,54,250,55.89,57,59,63.85,64,61,54.04,51,59,52.14,45,44,37.98,37,13,76.37,49,250,42.93,40,42,60.18,50,250,35.83,35,35,41.48,40,56,48.4,51,54,57.28,58,59,43.55,44,54,39.92,40,27,45.81,34,7,45.7,34,8,48.56,53,58,52.0,26,4,54.14,43,2,123.85,92,250,86.86,77,3,48.03,50,58,60.3,61,61,42.84,46,50,37.97,35,29,81.61,40,250,57.37,62,64,67.07,61,250,40.07,26,28,49.45,52,52,141.04,177,250,68.3,29,9,62.53,63,63,73.88,36,250,14.95,13,2,123.15,63,250,65.82,52,250,64.76,45,17,107.46,101,250,57.68,34,34,102.97,65,250,56.35,57,58,50.03,41,24,104.16,107,3,41.86,42,46,58.04,28,3,132.81,102,250,56.86,58,59,79.21,43,250,196.08,249,250,104.14,53,250,60.33,61,61,47.1,48,48,100.18,73,250,59.99,61,61,56.48,57,58,88.64,40,250,47.93,47,5,117.61,147,10,55.97,57,59,92.01,92,250,58.02,58,59,58.72,35,2,69.02,44,10,98.18,82,250,40.62,33,2,56.57,58,58,60.14,40,6,148.07,140,250,55.31,56,56,73.95,49,16,69.52,62,53,54.47,56,57,72.01,77,104,49.6,42,24,57.34,56,58,55.09,56,58,90.07,45,250,52.19,54,57,62.0,56,48,58.15,58,58,61.75,53,25,62.7,63,63,55.85,57,58,56.14,58,58,73.48,76,8,55.67,56,58,54.55,55,55,54.83,53,54,73.54,34,5,142.19,161,250,59.54,60,60,49.0,49,51,65.42,65,65,56.41,58,60,55.54,56,56,37.33,26,3,66.63,67,67,55.97,57,58,58.54,58,58,55.79,57,56,53.12,53,53,60.54,56,57,47.15,49,52,61.26,62,64,229.09,250,250,51.4,52,54,56.8,58,58,50.17,52,52,57.86,58,58,5.68,5,2,57.91,58,59,59.49,60,61,54.41,55,56,53.05,54,55,54.88,53,54,88.61,52,250,55.86,54,56,53.75,56,57,53.55,50,58,54.28,53,53,56.27,58,59,105.48,51,250,60.3,61,61,59.76,54,55,56.23,56,57,60.26,59,56,55.21,56,59,56.27,51,52,54.12,53,55,73.47,38,250,53.19,54,53,49.35,52,53,57.13,55,55,62.07,62,62,54.62,53,54,91.69,74,250,68.86,49,250,91.75,63,250,47.25,38,2,59.0,52,250,63.52,65,70,53.26,53,54,104.28,55,250,97.8,109,3,57.42,59,60,78.04,43,250,56.19,39,2,59.76,61,64,64.59,44,250,57.57,33,250,66.58,51,3,50.48,49,53,58.02,54,56,90.94,51,250,51.86,50,54,58.22,59,60,68.06,45,250,79.56,65,2,56.74,57,57,71.43,33,250,127.81,110,250,69.68,43,250,58.22,54,59,34.24,29,2,43.15,42,5,95.69,78,3,0.948,0.0343 +VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,71.46,72,71,70.42,34,250,30.4,26,2,62.54,64,66,73.86,75,73,79.04,53,250,127.7,115,250,50.42,38,3,50.13,40,4,103.22,111,19,82.45,83,85,62.31,64,65,43.13,45,3,52.88,45,2,42.42,30,5,65.8,69,74,52.74,31,250,113.99,113,250,51.46,54,31,122.22,115,250,118.0,83,250,63.33,65,66,122.98,85,250,55.75,57,59,114.56,55,250,76.33,28,250,60.14,62,62,58.45,56,59,79.91,45,250,156.45,196,250,195.57,248,250,119.73,97,250,62.12,64,65,68.87,69,65,60.04,58,60,57.61,53,58,46.41,43,5,76.29,53,250,50.71,50,57,65.38,57,58,39.38,39,43,46.9,47,31,55.25,59,63,63.39,65,66,45.06,46,41,45.19,44,38,50.29,35,15,46.65,32,2,54.92,60,68,51.33,24,4,59.52,50,66,125.25,99,250,66.06,44,2,52.42,55,62,66.87,68,69,52.16,56,59,43.99,43,65,87.33,47,250,63.07,68,72,120.01,106,250,47.59,27,3,55.49,58,60,149.35,233,250,84.83,37,12,68.02,69,69,81.17,48,250,16.92,11,2,132.18,129,250,74.76,59,250,67.86,47,19,128.74,126,250,52.03,34,250,101.61,62,250,62.94,64,65,57.39,53,50,84.55,74,6,47.68,47,41,67.57,42,4,130.53,94,250,63.18,65,66,97.55,65,250,161.24,175,250,104.77,64,250,66.86,68,68,56.9,62,71,104.67,76,250,66.31,67,68,63.08,64,66,68.4,37,250,45.52,46,9,93.33,110,5,62.5,64,65,99.83,90,250,65.16,65,65,49.76,18,3,58.16,35,6,95.87,70,250,28.25,18,4,63.05,65,66,63.64,42,30,137.09,143,250,62.48,64,65,79.33,50,20,77.37,71,56,60.73,62,64,58.15,61,72,61.81,56,23,64.2,63,64,61.32,63,65,98.65,62,250,58.48,61,64,76.38,64,57,64.72,65,65,67.22,53,3,69.36,70,70,62.8,64,65,61.63,64,65,99.52,109,9,62.2,63,64,61.36,62,62,61.13,60,62,77.88,44,5,123.73,80,250,65.71,66,66,65.13,60,2,71.04,71,68,63.4,65,68,62.16,63,63,39.34,20,10,77.33,75,72,61.73,64,66,64.19,64,64,63.66,65,64,59.89,61,63,66.72,63,65,52.3,58,64,68.6,70,72,233.83,250,250,59.3,60,60,62.83,65,67,55.41,58,62,64.44,66,67,9.02,9,15,65.69,66,68,65.94,67,68,61.64,63,64,59.68,61,61,61.63,60,60,83.71,40,250,63.0,62,62,60.99,63,63,56.92,54,62,61.11,61,61,62.54,65,68,101.94,47,250,66.79,68,68,66.57,61,250,91.21,96,100,68.52,67,68,61.74,63,62,61.79,60,64,59.89,59,58,75.88,39,250,61.29,62,65,56.47,60,62,65.02,63,63,68.77,69,69,60.38,60,62,97.33,81,250,66.98,52,250,107.54,83,250,45.09,39,2,63.14,58,250,69.72,73,76,60.29,60,63,92.73,33,250,162.78,195,250,63.51,65,67,83.87,51,250,65.98,41,250,64.58,65,67,67.55,54,8,70.37,43,250,66.77,52,2,52.44,53,58,62.53,59,60,94.4,59,250,60.47,59,62,64.77,66,67,72.75,49,250,103.52,77,250,64.35,65,66,68.24,44,250,138.22,143,250,82.66,43,250,66.62,60,63,46.76,37,2,45.91,43,6,81.96,68,3,0.95,0.03436 +VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,58.7,59,58,75.63,38,250,22.3,17,6,52.65,53,56,58.92,59,59,64.84,37,2,75.03,47,5,45.23,35,2,38.31,29,19,80.0,81,2,66.2,67,71,51.36,52,53,32.83,34,3,43.62,34,2,49.1,30,3,52.86,54,53,47.21,27,3,66.31,46,250,45.18,44,2,107.52,89,250,115.19,63,250,51.77,53,54,116.34,79,250,46.08,47,53,115.86,59,250,80.82,30,250,50.98,53,51,58.63,49,48,67.61,33,250,162.65,249,250,219.12,250,250,106.97,74,250,51.2,53,54,57.56,56,56,50.81,47,55,49.18,42,41,34.87,30,2,72.44,45,250,42.81,41,44,57.46,47,49,30.66,29,26,37.76,34,22,45.88,50,54,52.21,53,54,38.58,39,34,34.78,35,21,43.92,34,31,47.65,32,30,46.31,51,54,38.43,22,2,48.78,39,7,94.55,73,5,55.07,36,2,40.7,42,49,54.76,56,56,41.02,43,47,33.25,30,21,76.77,34,250,52.45,55,59,60.66,54,11,47.18,35,6,46.05,49,51,139.88,199,250,72.23,18,15,56.07,57,58,72.07,36,250,6.44,3,2,116.39,52,250,68.94,52,250,43.75,29,21,107.86,93,250,51.0,30,250,86.4,35,250,51.7,52,53,43.91,34,36,102.04,87,4,38.66,39,45,58.47,30,6,116.52,79,250,52.11,53,53,77.18,45,2,117.97,120,250,99.9,50,250,54.88,55,55,44.35,45,54,102.04,71,250,54.46,55,55,51.84,53,54,65.52,33,2,72.28,86,3,138.15,170,250,51.55,53,54,85.5,72,250,54.01,53,54,62.21,38,2,65.97,42,5,90.66,65,250,37.83,28,5,51.76,53,53,55.23,33,3,140.22,177,250,51.12,52,53,65.04,32,11,65.73,59,51,49.89,51,53,50.49,53,71,39.1,40,26,53.47,52,53,50.65,51,53,89.28,43,250,47.97,50,52,53.38,53,59,53.73,53,53,59.4,53,6,56.94,57,57,51.19,52,52,51.21,53,53,89.28,98,10,51.27,52,53,51.26,51,52,51.23,49,51,59.93,34,9,124.38,139,250,53.86,54,54,54.68,48,2,58.41,58,59,52.13,53,54,51.26,52,53,37.42,24,2,58.77,59,58,51.12,52,53,53.87,53,53,51.29,52,54,49.64,49,50,55.88,52,55,44.89,48,50,55.59,57,57,226.67,250,250,48.96,50,51,52.05,53,53,46.15,48,50,53.3,54,55,3.08,3,3,53.94,54,54,54.09,55,55,50.84,52,52,50.02,51,51,51.61,50,50,78.92,37,250,52.56,51,50,50.08,52,52,47.89,44,52,50.04,50,53,51.54,53,54,100.01,48,250,54.8,55,55,56.14,50,52,51.32,52,52,57.71,54,55,51.31,52,52,51.15,49,52,53.6,51,52,74.5,36,250,50.01,51,52,46.66,49,51,54.26,52,52,56.13,56,56,51.38,50,50,90.72,65,250,60.73,41,250,94.38,69,250,41.92,37,2,54.01,46,250,53.95,57,60,49.19,47,52,93.69,46,250,42.67,31,29,52.19,53,54,76.03,42,250,60.04,39,2,54.14,53,53,67.5,53,250,67.49,40,250,49.13,28,2,47.61,45,48,53.65,51,52,81.7,43,250,51.04,49,50,52.97,54,55,64.22,55,2,73.72,51,2,53.24,53,53,60.85,37,250,115.06,105,250,72.23,39,250,51.28,50,56,35.25,30,2,38.62,35,2,88.14,68,30,0.948,0.03428 +VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,48.85,49,49,67.09,31,250,22.73,19,6,42.55,44,44,48.18,48,42,54.01,37,10,84.24,50,3,47.79,37,2,35.53,28,13,68.37,53,3,48.94,49,48,43.61,44,45,29.96,31,2,39.98,32,2,33.98,28,5,45.71,48,50,43.61,22,5,64.74,38,250,31.56,28,15,92.11,78,250,118.76,80,250,44.34,45,46,93.92,56,250,38.78,39,45,54.08,37,3,83.76,25,250,43.02,44,47,54.73,41,41,64.88,28,250,130.56,164,42,192.92,245,250,103.26,68,250,43.67,45,45,48.51,48,45,43.88,41,45,44.43,35,31,30.09,30,5,65.72,34,250,35.67,33,37,50.6,40,43,27.72,26,26,32.86,32,31,37.58,40,41,44.65,45,46,34.15,34,36,31.19,31,27,32.55,27,4,34.43,22,19,36.36,39,43,37.65,21,5,44.02,34,43,103.79,85,250,86.76,94,9,36.42,38,16,46.49,47,46,35.43,37,39,28.12,27,28,75.32,30,250,44.75,47,48,66.57,48,6,32.11,21,20,40.58,43,44,138.48,173,250,66.58,21,5,46.71,47,47,67.13,29,250,5.41,3,2,98.43,54,250,57.53,39,250,42.93,26,11,90.34,84,250,47.37,25,8,84.9,50,250,43.98,44,45,57.66,51,62,51.67,40,8,31.56,31,28,54.17,24,4,109.3,64,250,44.28,45,46,59.34,36,5,142.67,147,250,94.65,46,250,46.44,47,47,38.62,38,36,76.62,58,30,46.16,46,47,44.34,44,45,47.8,26,5,47.41,41,2,131.85,162,250,43.96,44,45,84.24,70,250,46.07,45,46,43.91,24,2,54.09,27,3,51.26,49,32,26.04,18,4,44.23,45,46,44.8,29,2,85.86,81,4,43.91,44,44,44.73,33,2,53.96,49,42,42.08,43,44,23.0,22,21,32.96,33,44,45.91,44,44,43.01,44,45,79.94,34,250,40.93,42,44,60.14,46,41,45.7,45,45,50.17,38,4,47.99,48,47,44.0,44,45,43.52,44,44,79.24,82,2,43.87,44,44,43.61,43,43,44.11,41,41,44.97,33,4,127.89,120,250,45.84,46,46,49.36,42,43,49.15,48,47,44.48,45,46,43.49,44,44,27.38,15,2,49.72,50,51,43.58,44,46,46.09,45,45,43.88,44,43,42.58,42,43,48.85,45,47,39.09,37,39,47.67,48,48,228.55,250,250,40.93,41,42,44.11,45,45,38.93,39,43,44.34,45,45,7.42,6,4,46.33,46,45,45.98,46,47,43.24,44,44,41.99,43,44,43.8,42,42,79.07,40,250,44.69,43,43,42.05,43,44,42.49,38,42,43.07,43,45,43.94,45,46,90.26,46,250,46.46,47,47,47.65,41,44,46.09,46,47,50.27,47,47,43.64,44,43,45.18,42,41,45.11,42,44,66.35,36,250,42.89,43,44,40.56,42,42,45.78,43,41,47.51,48,47,44.16,42,45,79.46,60,250,56.75,39,3,83.2,60,250,38.93,30,28,47.79,40,42,47.96,49,48,42.77,41,40,99.22,51,250,45.2,30,31,44.45,45,46,69.27,34,250,47.31,33,2,46.48,47,48,50.99,37,34,47.39,27,250,47.8,27,2,39.98,38,40,45.68,42,43,84.57,43,250,43.8,41,41,45.15,46,46,61.48,46,3,68.24,53,250,45.45,45,47,59.44,32,250,111.29,91,250,56.86,35,11,48.97,42,45,27.36,19,6,35.31,33,40,70.67,55,2,0.946,0.03426 +VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,52.88,53,52,72.79,34,250,27.4,23,21,46.52,47,47,55.14,53,53,54.95,37,4,44.94,49,2,57.24,49,46,39.94,33,9,81.6,73,250,58.89,59,59,46.95,48,49,30.12,30,2,43.8,37,3,38.62,35,6,47.03,48,50,38.66,23,250,70.89,44,250,40.09,37,2,119.61,108,250,103.98,61,250,47.21,48,50,118.95,87,250,47.52,45,46,96.95,52,250,75.26,30,250,45.6,47,50,54.73,45,44,74.44,35,250,153.14,205,250,171.15,170,250,94.84,52,250,46.78,48,48,48.94,49,51,47.39,43,43,45.47,39,3,52.09,43,4,65.45,40,250,38.78,36,42,53.64,43,40,28.61,27,18,34.95,34,50,39.58,43,45,47.76,48,49,35.94,36,31,32.68,32,33,37.97,33,22,39.23,25,21,41.71,46,50,43.6,27,6,46.03,38,39,103.68,91,250,68.73,54,2,38.9,41,51,49.59,50,51,40.7,43,44,31.86,30,23,77.25,31,250,46.99,51,51,74.88,41,250,38.55,19,3,43.6,45,46,136.7,123,250,80.7,40,250,50.77,51,51,73.37,36,250,14.5,14,6,98.13,89,250,62.75,47,250,41.23,34,7,105.15,87,250,56.87,31,19,87.18,54,250,47.41,48,48,47.15,43,46,81.68,55,6,33.64,32,26,57.74,28,250,114.18,79,250,47.44,49,50,77.21,39,3,117.85,106,250,106.28,47,250,50.0,50,50,41.38,42,44,97.74,78,250,49.54,50,50,47.44,48,49,71.53,37,250,42.46,43,2,102.98,140,14,47.09,48,48,96.16,87,250,49.58,48,49,50.58,27,5,51.46,34,4,73.48,63,52,29.99,22,2,47.08,48,49,67.45,47,10,123.72,121,250,47.05,47,49,50.09,39,8,58.57,53,43,45.76,46,47,49.95,57,63,34.76,34,38,49.09,47,48,46.79,47,48,84.2,34,250,44.0,46,48,54.77,50,21,49.24,48,49,46.77,45,51,51.4,51,51,47.01,48,47,46.73,48,49,65.95,71,17,46.97,47,48,46.47,47,47,47.41,45,47,81.77,42,250,131.77,146,250,49.37,49,48,48.32,45,2,53.13,53,52,47.65,48,49,47.33,47,48,30.26,17,3,53.55,54,53,46.42,48,48,50.08,48,49,47.05,48,49,46.33,46,47,52.08,48,48,42.27,44,46,50.36,51,52,233.69,250,250,44.8,45,45,47.41,48,50,42.31,43,47,47.83,48,48,3.51,3,2,49.18,49,50,49.09,50,50,46.41,47,47,45.74,46,48,47.76,46,46,81.45,38,250,46.96,46,49,46.32,48,50,46.48,42,45,45.48,45,45,46.9,48,50,92.64,41,250,49.75,50,50,51.5,45,46,48.14,48,49,54.49,50,49,46.32,47,47,49.91,45,45,49.78,45,46,65.81,30,250,46.54,47,46,43.22,45,45,49.74,48,48,50.98,51,52,46.86,45,45,91.5,72,250,57.37,40,250,86.49,56,250,42.06,34,23,51.0,42,43,50.5,51,53,45.87,44,44,87.36,45,250,80.31,80,4,47.54,49,49,71.52,39,250,55.98,40,2,50.13,50,50,61.06,42,6,51.66,29,250,54.22,44,3,43.02,40,42,47.06,44,47,80.96,44,250,47.21,44,44,48.23,49,50,61.24,43,9,84.64,56,6,48.44,48,46,70.99,29,250,101.36,75,250,71.25,33,250,50.64,46,45,33.94,24,6,37.59,34,19,67.79,56,5,0.948,0.03421 +VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,65.99,65,63,70.52,31,250,21.1,14,3,51.65,53,56,71.4,69,68,59.17,39,3,86.06,75,2,48.55,31,10,45.6,40,8,87.67,71,250,80.02,79,82,53.91,55,56,37.89,39,2,46.17,36,2,47.26,31,2,57.68,59,59,42.15,24,9,75.84,49,250,49.91,40,3,112.08,99,250,121.22,96,250,55.71,57,57,85.78,56,30,48.86,46,54,125.79,89,250,85.34,34,250,51.76,53,54,50.68,47,46,73.56,35,250,148.61,189,250,200.73,227,250,100.7,50,250,53.83,55,56,63.47,61,54,50.43,47,52,50.98,43,45,34.67,31,2,66.78,40,250,41.56,39,42,58.51,48,250,33.1,33,34,41.97,40,22,44.58,48,48,55.67,56,56,42.16,42,31,37.66,37,34,39.32,31,6,45.15,27,4,48.51,52,56,50.92,25,3,53.22,46,55,112.89,82,250,77.49,65,3,43.94,45,58,59.32,60,59,42.19,44,47,36.48,33,25,80.84,32,250,56.96,63,70,73.31,66,8,38.91,23,21,46.61,49,48,145.45,239,250,78.96,31,250,62.24,62,61,78.91,41,250,5.71,4,2,111.19,92,250,68.39,53,250,45.64,31,14,117.26,116,250,48.44,29,9,90.83,45,250,54.3,55,57,39.76,26,16,68.53,57,6,39.95,40,40,62.01,32,2,123.7,90,250,55.63,57,57,77.48,37,250,132.59,139,250,105.05,50,250,59.25,59,58,47.3,47,52,95.76,67,250,58.66,59,59,54.6,55,57,55.7,32,2,38.69,41,4,138.37,180,250,54.25,55,55,82.42,53,250,56.73,56,57,49.44,20,2,55.41,33,8,116.39,108,250,27.09,15,2,54.66,56,57,64.63,40,8,128.84,140,250,53.17,53,54,64.65,45,11,64.67,60,55,52.76,53,54,34.04,35,16,43.64,44,45,55.68,54,55,52.71,53,55,91.27,45,250,50.39,52,55,38.93,36,33,56.29,56,55,67.35,57,18,61.93,62,61,54.01,55,55,54.93,56,57,70.56,76,25,53.54,54,54,51.19,51,52,52.94,50,50,50.2,25,3,128.06,141,250,57.95,58,58,53.25,48,2,66.07,65,63,55.11,56,57,52.65,53,54,36.55,22,5,67.41,67,64,54.38,55,57,55.39,55,57,53.78,55,55,51.16,51,54,59.59,55,54,44.54,48,54,60.41,61,61,229.27,250,250,48.62,49,51,55.01,56,57,46.45,48,50,56.6,57,59,5.42,5,5,56.74,56,56,58.41,59,59,52.47,53,52,50.26,51,52,51.63,49,49,81.47,43,250,53.58,52,53,50.94,52,53,53.01,48,53,50.62,50,51,54.19,56,55,86.11,42,250,58.98,59,60,57.76,52,55,54.4,54,57,60.66,57,55,52.84,54,52,51.77,48,47,52.51,49,49,65.96,32,250,50.88,51,49,47.6,49,51,55.1,53,54,61.38,62,61,52.52,50,51,90.37,66,250,60.18,40,250,92.68,68,250,34.72,31,3,55.27,48,51,65.4,66,77,52.77,51,51,94.83,39,250,59.65,53,53,55.9,57,58,75.73,40,250,59.94,37,8,59.26,59,54,61.17,43,250,74.97,42,250,61.35,50,6,45.29,44,46,55.42,52,49,88.25,47,250,49.75,48,47,57.1,58,58,55.72,36,6,81.87,63,250,54.91,55,56,72.91,31,250,108.27,87,250,70.13,37,250,54.81,47,45,34.85,31,4,40.94,40,56,75.77,61,5,0.946,0.03436 +VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,62.29,62,60,72.81,34,250,24.12,22,27,50.73,51,51,65.17,63,58,66.38,38,250,80.82,50,250,49.52,41,36,41.52,34,2,70.18,61,250,73.48,73,79,51.53,52,54,35.17,37,2,46.69,40,3,46.46,36,2,54.25,56,58,39.61,21,14,74.46,46,250,42.02,36,2,101.5,96,250,124.07,102,250,52.96,54,55,105.3,68,250,48.36,49,51,110.4,58,250,87.86,26,250,49.57,51,53,47.69,46,46,68.35,32,250,166.92,249,250,168.98,189,207,93.2,45,250,51.55,53,52,61.02,60,56,48.11,46,53,47.48,39,42,31.65,28,4,69.62,42,250,39.06,37,44,55.94,46,46,32.72,32,23,37.88,36,23,42.76,47,51,52.91,53,54,39.99,41,48,36.88,37,49,44.85,31,5,36.92,25,25,46.23,51,54,38.63,16,3,48.43,41,45,116.27,86,250,53.49,33,4,41.56,44,51,56.3,57,57,41.55,45,51,34.66,34,24,77.24,32,250,56.28,60,62,55.05,45,7,40.18,26,8,44.19,46,47,137.2,145,250,65.57,23,14,59.05,59,58,72.42,36,250,13.01,10,2,91.55,70,250,63.88,44,250,54.01,37,18,107.19,96,250,48.03,29,2,95.92,50,250,51.9,53,53,42.07,29,9,113.56,96,250,40.43,39,32,58.21,25,12,131.91,122,250,53.08,54,55,82.7,45,250,133.83,121,250,105.62,59,250,56.24,57,57,43.02,44,53,88.18,64,250,55.77,56,56,52.03,52,53,62.34,32,24,38.84,43,3,141.15,183,250,51.58,52,53,89.98,74,250,54.21,53,54,55.0,35,5,54.93,33,2,77.7,44,250,34.23,27,9,52.16,53,53,51.75,32,11,148.79,193,250,50.75,51,51,67.76,39,4,61.35,54,43,50.03,51,52,40.92,44,61,40.17,41,50,52.84,51,52,50.18,51,53,87.2,41,250,47.98,50,51,36.1,37,44,53.33,53,53,64.39,51,3,58.7,59,58,51.24,52,54,51.73,53,52,120.23,136,250,51.07,51,51,49.55,49,49,50.47,48,48,77.13,34,250,123.68,116,250,55.05,55,55,47.83,44,2,62.17,61,60,51.63,53,54,50.24,50,50,33.13,22,6,62.92,63,62,51.33,53,53,53.73,53,53,51.24,52,53,48.89,48,50,56.33,52,54,39.39,43,49,57.72,58,59,227.64,250,250,47.08,48,47,52.74,54,55,46.13,47,51,54.1,54,53,5.56,4,2,54.26,54,53,55.44,56,56,49.86,51,52,48.48,49,48,49.76,48,48,85.51,50,250,50.08,49,50,49.08,50,49,48.8,44,48,49.46,48,49,52.01,53,55,94.12,46,250,56.08,56,56,54.59,49,49,52.14,52,54,58.43,56,55,50.69,52,52,50.75,47,48,50.27,49,51,74.76,41,250,49.1,49,49,45.31,47,53,53.4,51,49,58.01,58,58,49.94,48,51,84.54,65,250,62.68,45,250,92.72,71,250,38.76,30,2,54.3,46,250,63.39,65,65,48.96,48,52,93.58,49,250,98.93,115,2,53.15,54,55,74.63,36,250,48.17,32,3,54.66,55,56,58.25,45,2,55.65,30,250,60.8,51,4,44.9,42,44,49.53,46,45,80.24,45,250,49.21,46,47,54.38,55,55,56.47,37,4,86.3,57,250,53.91,54,60,59.62,25,250,115.18,96,250,78.26,40,6,43.49,43,19,26.28,24,5,39.41,36,29,94.09,71,10,0.948,0.0343 +VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,57.22,57,57,63.95,32,250,23.36,18,5,46.62,47,54,60.28,60,58,55.3,36,2,37.02,38,3,49.84,33,20,36.71,28,13,71.46,59,250,66.41,66,65,46.56,47,48,29.16,31,2,41.45,35,2,40.34,24,8,51.05,52,52,44.79,26,250,61.71,40,250,36.43,34,2,123.36,126,250,112.6,77,250,48.26,49,49,112.66,77,250,41.69,40,43,108.15,82,250,78.72,34,250,43.5,44,42,41.43,39,38,69.62,29,250,160.53,246,250,200.41,223,250,99.52,61,250,46.2,47,48,54.61,53,51,45.5,41,43,43.49,35,35,32.18,31,6,63.73,37,250,36.56,33,34,52.89,42,48,32.72,33,33,38.3,35,18,39.45,43,46,48.05,48,48,39.01,38,29,32.87,33,40,34.09,27,25,36.77,25,23,42.62,45,54,42.17,23,4,42.29,37,41,99.39,82,250,56.75,40,250,38.83,40,44,51.46,52,52,36.07,38,38,31.96,30,17,77.55,30,250,47.02,51,56,50.81,38,21,40.98,22,2,38.42,40,39,131.58,111,250,62.15,20,2,53.94,54,54,69.57,34,250,4.02,3,2,104.79,50,250,55.22,39,250,59.91,45,6,99.28,98,250,50.0,25,24,86.93,60,250,47.08,47,48,44.72,33,13,61.26,53,3,35.9,35,20,57.04,23,2,119.62,90,250,48.0,49,49,74.38,38,2,92.96,64,250,99.26,48,250,51.23,51,51,38.13,38,44,96.93,69,250,50.85,51,51,47.32,48,48,75.27,36,250,35.8,33,2,128.78,164,250,46.72,47,47,75.0,66,250,48.86,48,47,55.13,26,2,45.85,28,6,88.62,82,57,26.92,16,2,47.27,48,49,44.65,36,13,132.85,108,250,45.56,46,46,79.54,41,250,55.92,51,43,45.0,45,45,31.6,28,21,31.43,32,24,48.05,46,46,45.88,46,46,88.17,36,250,43.4,45,47,57.25,44,31,48.6,48,49,50.56,46,29,53.54,53,53,46.0,46,46,47.58,48,50,76.92,72,5,46.36,46,47,43.55,44,46,45.95,43,44,82.8,36,250,126.15,138,250,49.85,50,49,52.51,44,2,57.16,56,56,46.88,48,49,44.92,45,46,46.43,30,3,58.35,58,55,46.94,48,49,49.29,48,49,46.15,47,47,44.54,44,45,50.82,47,46,36.84,40,43,53.08,54,56,224.92,250,250,41.7,42,41,47.76,48,48,41.47,42,45,48.72,49,50,5.45,4,3,49.0,48,47,50.45,51,51,44.86,45,46,43.18,43,43,44.76,42,44,79.15,36,250,47.15,45,45,44.33,45,44,45.14,40,41,42.07,42,39,46.58,48,49,88.45,41,250,51.03,51,51,51.14,44,47,46.74,47,49,51.97,50,49,45.09,45,46,44.39,41,44,47.01,43,44,71.45,33,250,43.51,44,45,41.48,43,43,48.62,46,46,52.92,53,52,44.38,42,42,80.59,53,250,60.13,40,250,87.05,56,250,35.72,29,2,50.6,42,46,56.11,57,62,44.62,43,45,86.82,34,250,62.33,60,58,48.25,49,49,68.66,34,250,50.56,35,6,49.33,48,47,53.48,40,250,60.39,32,250,53.99,28,2,41.16,38,44,46.81,44,43,75.08,39,250,43.27,40,43,49.47,50,50,53.87,42,2,76.13,47,250,47.79,47,47,57.15,32,250,106.96,89,250,58.63,32,250,48.64,44,42,28.34,26,2,33.97,31,41,75.89,55,3,0.947,0.03431 +VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,71.7,71,70,75.93,45,250,27.92,17,11,57.49,60,67,74.75,74,81,70.05,49,250,84.16,85,5,58.09,47,2,54.91,47,27,81.58,78,250,81.53,81,78,60.18,61,62,36.53,37,2,48.74,40,3,42.16,35,2,62.76,65,68,47.71,29,250,87.81,55,250,48.98,46,2,120.83,119,250,132.18,112,250,61.37,63,64,109.76,78,250,53.26,53,56,113.52,65,250,74.23,45,250,57.72,59,60,59.56,55,57,75.53,35,250,165.67,241,250,168.17,178,250,113.31,78,250,60.37,62,64,70.98,70,64,57.25,54,59,52.17,46,250,39.22,35,2,77.43,49,250,46.01,45,49,63.73,55,56,38.29,36,35,45.18,45,68,51.19,57,60,61.91,63,64,45.88,45,42,44.19,44,43,41.77,35,35,52.32,36,2,53.57,59,60,57.83,30,3,56.24,43,28,129.54,114,250,58.42,43,2,48.07,50,58,65.58,67,67,47.62,51,53,42.22,42,57,80.87,37,250,61.68,69,75,87.5,69,2,43.43,32,2,51.68,54,53,131.62,141,250,82.98,30,250,68.15,69,69,76.22,40,250,5.34,5,2,111.22,76,250,72.13,54,250,52.8,35,18,124.96,132,250,56.59,36,13,100.63,73,250,60.76,62,63,53.55,53,57,89.42,63,250,44.68,44,47,65.85,34,250,129.22,105,250,61.73,63,65,78.16,45,250,197.53,249,250,111.3,64,250,65.43,66,66,49.19,51,55,100.97,73,250,64.93,66,66,60.86,62,62,75.05,42,250,40.68,44,3,154.41,238,250,60.2,61,63,93.49,72,250,62.54,62,63,66.78,36,250,62.76,37,11,153.25,153,250,40.09,27,4,60.9,62,63,54.54,35,5,132.69,145,250,59.37,60,61,67.46,46,14,73.28,67,65,58.58,60,62,47.08,38,23,55.34,55,2,61.2,60,62,59.16,61,62,86.89,41,250,56.32,59,62,87.1,54,13,62.33,62,62,67.53,58,2,68.1,68,68,60.76,62,61,60.46,62,63,94.54,99,2,59.95,61,63,58.41,58,58,58.92,57,60,77.41,39,2,136.75,159,250,64.36,65,64,54.16,56,60,71.61,71,69,60.78,62,64,59.04,60,61,40.46,23,7,72.47,72,69,60.45,62,63,62.62,62,63,60.5,61,63,56.82,57,59,64.08,61,64,49.73,55,58,66.54,68,67,227.67,250,250,55.38,56,56,61.1,63,63,53.41,56,61,62.85,63,61,3.25,3,2,63.35,63,63,64.55,66,66,58.58,60,60,57.15,58,60,58.12,57,59,92.53,51,250,59.7,58,60,58.25,60,61,56.22,53,59,57.06,56,55,59.93,62,66,102.6,55,250,65.42,66,67,63.32,58,250,59.95,60,63,68.14,65,67,58.79,60,59,58.42,56,57,57.3,56,60,69.52,39,250,57.12,58,60,52.78,55,54,61.5,60,60,67.31,68,68,57.94,57,59,103.28,75,250,65.99,45,250,105.92,88,250,40.7,35,4,61.06,55,250,68.61,71,76,57.24,56,58,101.12,44,250,104.18,118,250,61.97,63,64,80.11,43,250,65.51,45,250,62.41,63,68,62.65,46,2,65.81,39,250,67.31,53,2,52.4,50,56,59.27,56,60,90.95,52,250,57.07,55,52,62.95,64,66,69.17,50,3,111.79,84,250,61.95,62,62,80.63,45,250,119.58,113,250,64.84,39,250,59.77,56,58,46.04,36,4,47.26,45,2,93.9,74,250,0.95,0.03433 +VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,60.55,60,59,79.83,36,250,28.49,23,4,46.43,47,48,67.47,65,62,66.18,39,3,110.02,81,250,61.86,34,2,43.08,37,2,93.65,92,250,67.63,66,63,48.98,49,49,35.5,37,2,44.9,38,3,61.71,29,2,53.44,55,63,51.77,27,250,72.24,44,250,53.47,35,2,131.58,134,250,107.46,73,250,50.85,51,53,115.29,71,250,40.18,37,43,116.49,94,250,74.18,23,250,44.29,45,44,47.78,42,43,75.29,37,250,150.34,202,250,218.27,249,250,109.05,69,250,49.5,50,51,62.27,61,57,48.21,44,47,40.96,31,2,61.65,44,5,69.64,43,42,37.19,34,36,53.48,42,250,34.5,34,37,41.17,41,21,41.66,45,49,51.17,51,50,40.43,42,49,37.3,38,47,45.15,32,4,49.46,35,34,46.52,50,55,53.79,24,2,51.23,39,24,114.48,78,250,56.97,38,250,41.09,42,48,53.18,54,54,39.48,41,40,33.85,33,22,77.13,32,250,57.79,60,60,106.07,103,250,50.23,27,250,39.35,41,43,143.37,156,250,81.71,39,250,59.34,59,58,72.06,32,250,4.0,4,4,97.23,56,250,68.88,45,250,50.83,36,28,122.81,112,250,52.56,30,250,120.14,69,250,50.13,50,51,57.51,45,53,71.81,59,32,40.02,40,43,64.35,33,250,119.9,89,250,51.93,53,54,99.2,51,250,142.6,169,250,99.36,54,250,55.18,55,56,43.4,43,45,101.84,82,250,53.54,54,53,49.67,49,50,65.81,43,41,39.14,42,51,129.26,173,250,48.66,49,48,88.42,69,250,51.3,50,50,69.81,45,3,66.59,38,6,90.3,71,250,30.61,18,3,50.18,51,50,74.79,52,27,145.15,186,250,46.37,46,46,90.5,52,250,60.71,56,54,48.52,49,49,56.66,58,72,42.91,45,43,51.36,48,48,49.11,49,51,90.72,45,250,46.19,48,50,55.39,48,43,50.51,49,48,79.95,53,5,56.01,56,55,47.86,48,48,50.88,51,51,100.53,110,10,47.59,47,48,48.78,48,47,49.22,45,43,93.91,50,250,124.64,110,250,53.54,54,56,53.34,40,37,61.32,61,62,49.39,50,49,47.4,47,48,51.97,34,2,60.42,60,58,49.93,51,52,50.45,49,51,46.8,47,46,47.52,46,48,53.73,48,47,36.63,37,35,52.37,53,56,229.64,250,250,43.7,44,44,50.36,51,53,47.8,48,49,51.52,51,49,,2,2,49.48,49,47,54.05,55,54,45.87,46,44,44.59,45,44,47.06,44,44,92.25,48,250,47.69,45,46,45.33,47,47,49.26,43,51,44.74,43,44,47.4,48,50,101.1,64,250,54.87,55,54,55.96,49,51,48.03,46,47,54.53,51,53,48.18,47,45,46.36,42,45,45.64,41,40,83.85,48,250,43.05,44,46,42.59,42,39,48.03,45,45,55.99,56,57,46.23,43,44,96.8,83,250,69.95,46,250,104.33,94,250,42.49,34,5,49.66,41,43,59.47,59,64,47.61,45,47,118.57,71,250,76.01,67,64,51.26,52,52,76.31,39,250,61.06,38,250,52.31,51,53,76.71,56,250,65.71,36,250,58.77,33,13,42.4,38,38,45.37,42,42,85.37,47,250,44.64,40,39,51.87,52,52,74.17,48,250,83.25,69,250,47.72,47,47,75.88,54,250,116.89,104,250,74.59,49,250,48.35,43,38,41.94,36,8,36.28,34,39,91.07,89,250,0.946,0.03425 +VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,43.14,43,43,64.94,26,250,25.61,20,8,38.37,39,40,42.5,43,44,54.12,29,21,47.25,52,5,53.01,37,35,32.07,27,2,62.26,53,250,43.94,44,41,38.65,39,40,26.14,26,2,39.34,33,2,32.43,21,2,40.13,41,39,40.72,20,250,61.33,36,250,33.49,30,3,85.17,70,250,112.89,84,250,39.16,40,40,88.68,54,30,35.58,34,38,83.27,41,4,68.59,23,250,37.56,38,40,37.75,34,34,54.06,24,2,117.26,145,38,149.11,162,167,92.3,60,250,38.38,39,40,41.56,41,36,39.94,36,39,39.81,31,35,27.66,26,3,60.08,33,250,32.16,29,34,47.49,35,36,23.31,22,17,30.5,29,22,34.52,37,38,39.17,39,40,29.23,28,18,27.61,27,20,29.68,25,20,33.19,22,14,32.98,35,40,33.38,16,4,39.27,30,19,87.23,68,250,54.99,38,250,30.94,32,41,41.01,42,42,31.58,32,31,25.84,25,21,72.45,26,250,38.8,41,42,47.63,35,3,33.32,20,3,35.65,36,34,130.52,128,250,68.37,23,13,41.39,41,42,64.98,26,250,5.14,4,2,94.41,73,250,52.18,32,250,39.57,19,13,93.85,91,250,49.0,28,5,92.88,48,250,38.73,39,40,40.22,33,33,57.24,48,2,28.83,28,24,52.87,22,2,99.1,54,250,39.1,40,41,77.75,43,10,131.25,135,250,96.34,39,250,41.12,41,41,31.73,32,38,74.36,48,36,40.87,41,41,39.18,39,40,52.04,27,2,33.01,31,2,128.53,152,250,38.83,39,41,74.88,56,250,40.77,40,40,40.75,28,2,49.68,26,5,49.45,41,2,21.34,12,2,39.05,40,40,38.71,24,3,129.91,144,250,38.53,39,39,44.15,30,7,49.02,45,39,37.1,38,39,73.07,83,2,29.64,30,33,40.82,39,38,38.26,38,40,79.72,30,250,36.18,37,38,29.64,31,40,40.63,40,40,49.71,38,2,42.55,42,42,38.74,39,39,38.56,39,39,95.7,106,5,38.99,39,38,38.05,38,38,39.45,36,39,52.15,25,3,121.61,133,250,40.46,40,40,41.23,34,42,43.22,43,42,39.05,39,39,38.72,39,38,27.63,17,3,43.77,44,44,38.45,39,40,40.79,40,41,39.04,39,39,38.09,37,38,44.43,39,39,31.05,35,37,42.19,43,43,228.5,250,250,36.32,37,38,39.22,40,40,34.69,35,36,39.69,40,40,4.4,3,3,40.92,41,42,40.49,41,41,38.2,39,40,37.23,37,37,39.35,37,36,75.44,35,250,39.49,38,38,37.67,39,40,37.35,33,38,38.22,37,36,38.44,39,40,80.23,37,250,41.05,41,41,43.72,37,38,40.3,40,40,44.54,41,40,38.57,39,39,39.61,37,39,39.38,36,38,60.66,31,250,37.77,38,39,35.49,36,41,41.12,38,36,42.04,42,42,38.71,36,37,72.65,53,250,52.27,35,36,78.26,58,250,28.57,26,3,44.15,34,32,40.54,41,44,38.47,36,39,84.66,45,250,79.35,84,85,39.08,40,41,64.48,30,250,49.76,32,3,41.18,40,44,47.52,35,17,50.56,27,250,42.1,22,3,35.5,33,33,40.66,38,39,66.89,33,250,37.63,35,36,40.04,40,41,47.43,38,4,56.53,44,5,40.67,40,40,65.46,44,250,106.78,85,250,60.52,33,19,39.53,37,36,30.54,25,3,31.79,31,34,54.89,47,2,0.945,0.03424 +VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,75.11,75,75,71.31,39,250,37.02,31,30,60.14,63,63,79.29,78,74,81.78,55,250,65.89,68,5,74.79,61,2,53.74,47,2,99.31,104,250,85.17,85,82,64.04,65,66,40.71,41,2,53.28,41,5,56.48,48,3,68.76,72,75,51.1,33,250,85.14,57,250,48.82,50,3,134.13,142,250,126.68,88,250,65.45,67,69,111.4,80,250,58.1,56,2,134.55,126,250,75.56,47,250,61.15,63,67,72.55,61,250,81.61,44,250,157.89,198,250,223.95,250,250,107.91,67,250,63.79,66,67,74.13,73,69,62.86,61,68,58.69,53,250,67.04,53,2,78.62,54,250,52.02,51,57,68.01,59,250,40.35,39,42,49.17,50,71,53.77,59,61,65.34,67,68,49.0,50,72,46.7,46,33,52.11,41,7,51.85,37,2,56.5,61,60,55.03,32,2,62.65,50,250,113.6,105,250,66.46,53,2,53.61,56,59,68.97,70,71,54.14,58,63,43.21,41,27,83.66,42,250,62.93,68,73,76.73,65,5,59.09,38,250,54.5,57,62,138.05,157,250,70.83,24,250,71.3,72,74,78.57,41,250,17.54,10,3,118.9,68,250,69.76,55,250,74.97,52,25,127.62,144,250,63.9,41,2,103.27,59,250,64.39,66,67,64.52,59,61,101.35,58,250,46.61,47,50,66.65,35,250,128.03,103,250,65.48,67,68,95.17,57,250,144.74,172,250,110.35,62,250,68.93,70,71,49.02,52,57,107.18,87,250,68.49,69,70,64.78,66,68,81.66,51,250,55.34,56,2,156.6,217,250,64.01,65,66,108.82,98,250,66.77,66,67,55.48,22,2,67.99,34,5,103.89,81,250,42.08,24,8,64.5,66,67,66.19,39,22,155.44,205,250,63.78,65,65,72.78,45,26,79.69,70,60,62.26,64,64,84.04,92,111,40.09,39,41,65.04,64,66,63.32,65,67,91.09,46,250,59.54,63,65,51.26,57,60,66.48,66,67,76.25,68,3,71.95,72,72,63.73,65,66,64.14,66,66,118.78,133,250,63.57,64,65,62.81,63,63,63.04,62,64,67.24,49,9,127.05,80,250,67.87,68,68,63.54,57,2,75.09,75,75,64.85,66,67,63.6,64,65,43.79,26,20,76.16,76,77,63.35,65,66,66.42,66,65,64.26,66,67,60.81,61,63,68.7,65,66,53.9,59,73,70.35,72,73,224.92,250,250,59.38,61,61,65.13,66,65,57.38,60,62,66.77,67,65,8.65,8,2,67.49,67,67,68.14,69,70,63.09,64,64,61.1,62,63,62.27,61,64,96.13,57,250,63.5,62,64,62.54,65,66,60.86,58,67,61.54,61,61,63.49,66,66,102.13,51,250,68.92,70,70,66.66,61,250,65.08,66,69,71.27,68,71,62.52,65,66,64.6,60,62,59.9,59,64,75.53,40,250,62.05,63,64,57.54,60,64,65.36,64,64,71.06,71,72,61.4,60,60,109.43,91,250,71.67,53,250,99.26,80,250,50.38,44,3,67.51,59,250,76.06,77,77,60.36,60,63,95.24,43,250,99.46,101,106,65.53,67,68,78.18,45,250,65.27,44,250,67.97,68,71,76.84,57,250,67.29,42,250,63.29,41,2,55.16,56,60,64.28,61,61,100.91,63,250,61.17,59,56,66.77,68,69,76.12,56,250,97.93,72,250,64.74,65,66,83.71,39,250,134.24,133,250,75.81,49,250,65.09,60,62,45.6,36,5,51.95,51,60,122.8,131,250,0.948,0.03438 diff --git a/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv b/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv new file mode 100644 index 000000000..4d6f16f4e --- /dev/null +++ b/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv @@ -0,0 +1,48 @@ +sample_id,run_ena,analysis_ena +VBS46299-6321STDY9453299,, +VBS46300-6321STDY9453300,, +VBS46301-6321STDY9453301,, +VBS46302-6321STDY9453302,, +VBS46303-6321STDY9453303,, +VBS46304-6321STDY9453304,, +VBS46305-6321STDY9453305,, +VBS46306-6321STDY9453306,, +VBS46307-6321STDY9453307,, +VBS46308-6321STDY9453308,, +VBS46309-6321STDY9453309,, +VBS46310-6321STDY9453310,, +VBS46311-6321STDY9453311,, +VBS46312-6321STDY9453312,, +VBS46313-6321STDY9453313,, +VBS46314-6321STDY9453314,, +VBS46315-6321STDY9453315,, +VBS46316-6321STDY9453316,, +VBS46317-6321STDY9453317,, +VBS46318-6321STDY9453318,, +VBS46319-6321STDY9453319,, +VBS46320-6321STDY9453320,, +VBS46321-6321STDY9453321,, +VBS46322-6321STDY9453322,, +VBS46323-6321STDY9453323,, +VBS46324-6321STDY9453324,, +VBS46325-6321STDY9453325,, +VBS46326-6321STDY9453326,, +VBS46327-6321STDY9453327,, +VBS46328-6321STDY9453328,, +VBS46329-6321STDY9453329,, +VBS46330-6321STDY9453330,, +VBS46331-6321STDY9453331,, +VBS46332-6321STDY9453332,, +VBS46333-6321STDY9453333,, +VBS46334-6321STDY9453334,, +VBS46335-6321STDY9453335,, +VBS46336-6321STDY9453336,, +VBS46337-6321STDY9453337,, +VBS46338-6321STDY9453338,, +VBS46339-6321STDY9453339,, +VBS46340-6321STDY9453340,, +VBS46341-6321STDY9453341,, +VBS46342-6321STDY9453342,, +VBS46343-6321STDY9453343,, +VBS46344-6321STDY9453344,, +VBS46345-6321STDY9453345,, diff --git a/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv b/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv new file mode 100644 index 000000000..77f8712ef --- /dev/null +++ b/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_snp_data.csv @@ -0,0 +1,48 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS46299-6321STDY9453299,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.bam,b99888ef49680a23d2c2eb99d9a76d8b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.vcf.gz,881fbba998d25a3e66aead2439ce2e02,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46299-6321STDY9453299.zarr.zip,3dedee4185f663fe81803e86eef4596d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46307-6321STDY9453307,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.bam,918618042d01773378fc346f655d8cf4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.vcf.gz,ffc30b183b452593d5f4e7470a7812f2,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46307-6321STDY9453307.zarr.zip,df7daea5845e6400208ab0b7baed24be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46315-6321STDY9453315,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.bam,9f8c56a80501b5844d567b8c5af417a4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.vcf.gz,41959d3346d3b58ec00a28c6f3683c47,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46315-6321STDY9453315.zarr.zip,78bdecf637acc7cbd4e0bfecd09c66ca,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46323-6321STDY9453323,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.bam,86772575a66a8f78ad1105d671bac44f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.vcf.gz,2395f516a6192a899efd99a698576653,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46323-6321STDY9453323.zarr.zip,45356713f05c9918163077a5d119ec2d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46331-6321STDY9453331,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.bam,34cfcc15ac35ec8da4172ec0f10fb929,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.vcf.gz,a6b2d94af56c04441548eb0edba4087b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46331-6321STDY9453331.zarr.zip,8a2d0132523e54c1a612c4fcd93fe9ab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46339-6321STDY9453339,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.bam,752294bb0cd1fcd5ddc18606f4261770,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.vcf.gz,56ea40c7eebc9d8e2fc25c70198cf5bc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46339-6321STDY9453339.zarr.zip,be17220709b54fbb413a476cbcd7dc02,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46300-6321STDY9453300,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.bam,2faef5979db123d1e93ad5a04bde010b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.vcf.gz,8487dad91d4d461aa1e30ad0a8a9e159,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46300-6321STDY9453300.zarr.zip,865492f22a8bf02fd08740fa00407de1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46308-6321STDY9453308,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.bam,ae1cf75f8cb38d5c8d2afa97f7581230,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.vcf.gz,09e960abef88cc1223215439ca797e53,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46308-6321STDY9453308.zarr.zip,2fe42d6e5cbe4cfb8b63cef66881a9a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46316-6321STDY9453316,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.bam,e44cb55e9b9df09073d1d0f84b1b03aa,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.vcf.gz,e49dbeb76338f3f597918e90b058b59f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46316-6321STDY9453316.zarr.zip,8d0567b6c004651d90d145cfea5608a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46324-6321STDY9453324,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.bam,f50d84a65a7f0e9c8ae876bbbc148f3c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.vcf.gz,ccfbe4a46045c75f623ab5d9916bc25e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46324-6321STDY9453324.zarr.zip,db3e75ad3fb8445db9e1f24cb65b1fc4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46332-6321STDY9453332,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.bam,1a10f12f85dd10dddc2467849726da32,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.vcf.gz,c13cf3ca97d60cd078dcecf56e1646d4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46332-6321STDY9453332.zarr.zip,3a62925dd3a791d115126f65a2cc3379,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46340-6321STDY9453340,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.bam,1cf203df781e348eb6aceb4b7cbe4b0b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.vcf.gz,1f0c40567aee776ac60ef0866edecb46,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46340-6321STDY9453340.zarr.zip,c00e4b4b756c6ff0e0e5e9162440826d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46301-6321STDY9453301,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.bam,6b393c2c842c361c8b9a098ea24c7edb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.vcf.gz,ad2a41e3ce8c7c1221c8fef7d191aa49,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46301-6321STDY9453301.zarr.zip,97cbec5d0cdd6aa12e7e402bcf49d5f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46309-6321STDY9453309,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.bam,d0351a7e52a9bcd4fcd5a5b79abc67a5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.vcf.gz,debead115b618a103e54af6f6d9cacee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46309-6321STDY9453309.zarr.zip,fa78217a4d149145c3410a210532c52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46317-6321STDY9453317,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.bam,4498ca72b6bc37510e2c7fcfde3f1281,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.vcf.gz,4940cc5916ac8dbd19ee660655f84fb4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46317-6321STDY9453317.zarr.zip,e63316bcad97a1664a83d46f7bbf945c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46325-6321STDY9453325,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.bam,2e6d649130fc5183973d3fded7a6cd44,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.vcf.gz,1d4598ec05bc38390c7375fd8b60e5f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46325-6321STDY9453325.zarr.zip,fd815f056af7fb97369852705e97b48a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46333-6321STDY9453333,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.bam,53d5d0bb98b4be54b0c9c51df714ab75,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.vcf.gz,00ee455bee5764e40ba26b9ece19bf9a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46333-6321STDY9453333.zarr.zip,62f4c1153c212a63ae7f4fcf6dc96713,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46341-6321STDY9453341,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.bam,66a51a50d168a8937e525c17dbee3792,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.vcf.gz,df990da2709768c4bde10cd51841d229,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46341-6321STDY9453341.zarr.zip,1ca668a939a47192c11224a350505986,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46302-6321STDY9453302,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.bam,7ea17da4c3bff94aec1ecedf1c3cdb73,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.vcf.gz,6f64e7c8f9465061abdbc8c7a416cc09,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46302-6321STDY9453302.zarr.zip,57359203d735c19dd46b2a4be0993bee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46310-6321STDY9453310,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.bam,5256f0dcdeda23896e639fa40257df50,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.vcf.gz,d728a039223be2366dbe9ca3dccc21ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46310-6321STDY9453310.zarr.zip,94e8194044aed52c9648e4e9c38b7833,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46318-6321STDY9453318,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.bam,d8b4e20456987ea99289c780d25f61e9,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.vcf.gz,7b39a6d448cdfefd86d00cca637f25a0,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46318-6321STDY9453318.zarr.zip,e2a1123cc26b96da1baab9647ca1f0c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46326-6321STDY9453326,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.bam,e2ee827e4389ab14e545e4eea2f400ec,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.vcf.gz,ac9f52875ac9d0bfb808e653714dad96,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46326-6321STDY9453326.zarr.zip,6fc945132ec147f7c2b86f5e5c413f1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46334-6321STDY9453334,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.bam,2956d16525c89ad8ecc5bedd9e7bcd7d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.vcf.gz,7f28154317c826aa2880bf3cf7cfa150,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46334-6321STDY9453334.zarr.zip,bd6d43f7d65e937981710fd4597fb47a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46342-6321STDY9453342,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.bam,88080f62b75da53541376b561e398e8f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.vcf.gz,f7e7c058381da2112140c82953ece90c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46342-6321STDY9453342.zarr.zip,d2c978f60e0281480275f0fa32e63867,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46303-6321STDY9453303,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.bam,70cc6b2c4c36de50c8e6526e22bd1e1a,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.vcf.gz,10a2ab938ecb96e52a0ed40d37359da1,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46303-6321STDY9453303.zarr.zip,b66ddea9c26abd423ab24708b5eb86f3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46311-6321STDY9453311,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.bam,f16fcc6c875ad5054f55c8c54c7b6dfc,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.vcf.gz,8f031501d8a3b322a68bb5a060090a34,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46311-6321STDY9453311.zarr.zip,994b674a4d29e2065f7e3d0ef868cc2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46319-6321STDY9453319,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.bam,776d94fb1300c50d4f8e1bd2b85b6cb6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.vcf.gz,576315a5d9f70f7bdaf53c3c5424fc9e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46319-6321STDY9453319.zarr.zip,c49bf5513f102c97a3209d1e18d75eab,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46327-6321STDY9453327,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.bam,f3c6b730e022ac3ea6eabdf96b0f0245,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.vcf.gz,36e593252f6d0ccf082a3930b69e28e4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46327-6321STDY9453327.zarr.zip,a753e94fe7514835214542acef734f3c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46335-6321STDY9453335,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.bam,a1a073a5d8a015ce74ba4f3a2cfb7fbf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.vcf.gz,4ca3b94c83790a9f7b311d42d6ee5cc6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46335-6321STDY9453335.zarr.zip,ba13613fd52c048af27468acae2cb100,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46343-6321STDY9453343,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.bam,dc9d3d647e7b0fe5ebeeb45a9cf54da8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.vcf.gz,7c8a96ff4d865e2cbd956ea2f58f93ad,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46343-6321STDY9453343.zarr.zip,fb18965d61a7ba0b9edcb9f4d32beef4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46304-6321STDY9453304,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.bam,ec86af88b6015909ec56f44b0976547b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.vcf.gz,c4deee740c10bfd70e5df6c64390edc8,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46304-6321STDY9453304.zarr.zip,19efde7f62e445e8b8b9e29ad509a43f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46312-6321STDY9453312,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.bam,46accba051544cc88ff3a8f002bd30ba,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.vcf.gz,f6b6b92f82ddd300f52ff83e005498ee,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46312-6321STDY9453312.zarr.zip,4b5b8d6db087980de163a659d924b428,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46320-6321STDY9453320,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.bam,8eae2f4046543440dfe86933ad34c7e6,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.vcf.gz,bd7e7934b433ffb55a628966a3302b45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46320-6321STDY9453320.zarr.zip,8390f9d57aa22821d8b86ea3687ef50d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46328-6321STDY9453328,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.bam,09ca6796e2d217e5103756eef5ff21bf,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.vcf.gz,6995ba181cf3a014ad749cfa747e7ab3,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46328-6321STDY9453328.zarr.zip,a763004d19a4815075bd077751ed4a80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46336-6321STDY9453336,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.bam,37339040994529ceb820c298be3551eb,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.vcf.gz,07ece258617abc576413e30075115927,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46336-6321STDY9453336.zarr.zip,071497f6467224384a38ffb35dace69f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46344-6321STDY9453344,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.bam,ac9a0b5cb7a3c084bf938599a90d6a37,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.vcf.gz,698ea5b3188702af6b568419e6ec07ca,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46344-6321STDY9453344.zarr.zip,073b644a4ad5c84b5ae4e149227ed8a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46305-6321STDY9453305,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.bam,7ba7a9fdb7c7b1ef3a176dfe4c12a44c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.vcf.gz,544ec79e159a9b30c30cfed6c2570a64,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46305-6321STDY9453305.zarr.zip,de818d2c86cc07f1c2b6322e0dcec5d2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46313-6321STDY9453313,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.bam,0280f345164a19ddb658e3350e0ecb5c,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.vcf.gz,8a9051b587d152b2715f507757c0d383,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46313-6321STDY9453313.zarr.zip,2fa52b4078fdf250dd11253069e1e6c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46321-6321STDY9453321,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.bam,199309327c4b949d6c4ec51418f32d57,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.vcf.gz,f886103632589bc45264a5dfc3ee710f,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46321-6321STDY9453321.zarr.zip,32bd162fed1977a8a5a8cbb32a8b0ad3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46329-6321STDY9453329,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.bam,a0732115fda0181f529d3b89b496cd45,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.vcf.gz,649de427120b4e9a12713186a16bf4b5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46329-6321STDY9453329.zarr.zip,1ef42776759c29f9558427096b7239e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46337-6321STDY9453337,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.bam,c247dcdcac644d7f26f6338ac610d68e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.vcf.gz,49ff3cc4a65a0a5c753bcfdcb38af90b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46337-6321STDY9453337.zarr.zip,569c330619c6529c6a422d791bf5f52c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46345-6321STDY9453345,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.bam,b12ba6197d9a28b91a0c6900ce3b18f7,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.vcf.gz,ecb2ddd4c0322e59f5a15002a7ac2e5e,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46345-6321STDY9453345.zarr.zip,b55e2c6d1766b156cb236abf4d2c4281,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46306-6321STDY9453306,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.bam,dd2f01a6e990efcf206a93d1fbcbfb78,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.vcf.gz,a59804aa6bda05a7039975fb29fbca55,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46306-6321STDY9453306.zarr.zip,c837fa3bd5281a4f9fc1909078d12336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46314-6321STDY9453314,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.bam,33d9afa78878cdf74206fffa782397ab,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.vcf.gz,23f0faa9faf9e3662ab314a1266db286,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46314-6321STDY9453314.zarr.zip,14e53330006278fb1705a397e293bba6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46322-6321STDY9453322,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.bam,31301768c188886216556a3f66510b71,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.vcf.gz,8784a73f700ac8c86acb8111f89ed82d,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46322-6321STDY9453322.zarr.zip,b2df4a18837b6bf145cebd8f699ef73b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46330-6321STDY9453330,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.bam,bc0b387e8183c02faa02953ffb0ef59b,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.vcf.gz,e4a92ba5ceb37055e7c99c26f4ee96f5,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46330-6321STDY9453330.zarr.zip,1579200bb12cce47698268483ed1d460,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46338-6321STDY9453338,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.bam,6a37571258c449afd693dfee1967d612,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.vcf.gz,eba44e5264186f046ed2b714af919cd4,https://1276-ad-bd-alam-vmf00156.cog.sanger.ac.uk/VBS46338-6321STDY9453338.zarr.zip,1c641d212c6f65d23f2caa82ee0a81c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv new file mode 100644 index 000000000..0881518fe --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/samples.meta.csv @@ -0,0 +1,27 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS45687-6143STDY8787412,A2682,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45688-6143STDY8787413,A2685,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45689-6143STDY8787414,A2686,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45690-6143STDY8787415,A2688,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45691-6143STDY8787416,A2631,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45692-6143STDY8787417,A2645,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45701-6143STDY8787420,A2675,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45702-6143STDY8787421,A2749,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45708-6143STDY8787424,A2709,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45709-6143STDY8787425,A2710,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45711-6143STDY8787426,A2718,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45713-6143STDY8787427,A2722,Amelie Vantaux,Cambodia,Deep forest_3,2017,8,12.287,106.997,UKN +VBS45717-6143STDY8787429,A4003,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45718-6143STDY8787430,A4004,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45720-6143STDY8787431,A3930,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45723-6143STDY8787432,A3956,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45724-6143STDY8787433,A3964,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45728-6143STDY8787434,A3988,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45734-6143STDY8787435,A3925,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45735-6143STDY8787436,A3926,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45737-6143STDY8787437,A4007,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45738-6143STDY8787438,A4008,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45739-6143STDY8787439,A4009,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45742-6143STDY8787440,A4013,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45743-6143STDY8787441,A4014,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN +VBS45745-6143STDY8787442,A4019,Amelie Vantaux,Cambodia,Deep forest_4,2018,1,12.326,107.093,UKN diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv new file mode 100644 index 000000000..d6e5988ac --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -0,0 +1,27 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv new file mode 100644 index 000000000..4dc0578d7 --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv @@ -0,0 +1,27 @@ +sample_id,run_ena,analysis_ena +VBS45687-6143STDY8787412,, +VBS45688-6143STDY8787413,, +VBS45689-6143STDY8787414,, +VBS45690-6143STDY8787415,, +VBS45691-6143STDY8787416,, +VBS45692-6143STDY8787417,, +VBS45701-6143STDY8787420,, +VBS45702-6143STDY8787421,, +VBS45708-6143STDY8787424,, +VBS45709-6143STDY8787425,, +VBS45711-6143STDY8787426,, +VBS45713-6143STDY8787427,, +VBS45717-6143STDY8787429,, +VBS45718-6143STDY8787430,, +VBS45720-6143STDY8787431,, +VBS45723-6143STDY8787432,, +VBS45724-6143STDY8787433,, +VBS45728-6143STDY8787434,, +VBS45734-6143STDY8787435,, +VBS45735-6143STDY8787436,, +VBS45737-6143STDY8787437,, +VBS45738-6143STDY8787438,, +VBS45739-6143STDY8787439,, +VBS45742-6143STDY8787440,, +VBS45743-6143STDY8787441,, +VBS45745-6143STDY8787442,, diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv new file mode 100644 index 000000000..91c8375ac --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_snp_data.csv @@ -0,0 +1,27 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45687-6143STDY8787412,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.bam,1edaca5060bf348547674cb80dbff467,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.vcf.gz,2c4aca688d1fb8940ee32189a93f8612,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45687-6143STDY8787412.zarr.zip,426593cbaa1ca17ab1c47f77f6fd60da,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45688-6143STDY8787413,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.bam,5f5f92668e2e44911b71b3fb42921b96,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.vcf.gz,a5fb0da278d96531e76154b96dcfd016,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45688-6143STDY8787413.zarr.zip,a475055bf1c82add474d5092364e477e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45689-6143STDY8787414,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.bam,9ea628902048b2f7f56a371b868ac085,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.vcf.gz,09531eec22d0633bae9ff6ac66a5a991,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45689-6143STDY8787414.zarr.zip,f046ccc51fb2211f41fc9a7a45eb1ded,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45690-6143STDY8787415,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.bam,b29269c48f41e8951cf65e0c558b556a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.vcf.gz,6e8c64a462ee611e4c9cef4f17198a81,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45690-6143STDY8787415.zarr.zip,660d9b26e6b8ee4456ae2b952d32aa9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45691-6143STDY8787416,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.bam,344053000bdb3f61528137047f3a173a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.vcf.gz,112db891eccd5def371effd62837af62,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45691-6143STDY8787416.zarr.zip,c31ba519c31c9256816b9994e1859125,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45692-6143STDY8787417,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.bam,05c69c41f45b9577409ba8c13fad238e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.vcf.gz,21a4a6aa9e2a591baa198357cb2be6f8,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45692-6143STDY8787417.zarr.zip,977fff2a5f9b29c4b42371a8005111ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45701-6143STDY8787420,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.bam,859bca146bdfbb35885209d567d9583b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.vcf.gz,ce0d880d9cf27151f07556865c92e8eb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45701-6143STDY8787420.zarr.zip,796f143f29d5d8869e17202a3ccfaea6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45702-6143STDY8787421,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.bam,419ad784e43882508edf0ef44e4ac300,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.vcf.gz,d3e50b12a43aec47125e57394a596fd2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45702-6143STDY8787421.zarr.zip,bd5f69e7b81ea60a57be5630ef8b9991,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45708-6143STDY8787424,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.bam,ff51e31b180932a267447e42e906ecf2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.vcf.gz,67e3453989380789151c674a760e8112,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45708-6143STDY8787424.zarr.zip,9baba1d37394f6f5d3a26af50b935f78,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45709-6143STDY8787425,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.bam,1a1a2faed7e01e9f06516b9cea5078e5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.vcf.gz,f9893d7a75a498458916091a9fe1b92e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45709-6143STDY8787425.zarr.zip,d4962fbf2f266ec905b4ece445921a92,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45711-6143STDY8787426,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.bam,f88ed8654fcaf4b2e73f7e521c96a25b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.vcf.gz,6b689303e917d25649dc50e8e3cb7fe9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45711-6143STDY8787426.zarr.zip,390f4d080c9c3fbf6b2e5f7091cbcbdd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45713-6143STDY8787427,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.bam,ea89cb121e1cdf4785ea620f380aac1b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.vcf.gz,dfad6e2be0c6d7d7bb01cf3c994fabc1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45713-6143STDY8787427.zarr.zip,8eb11023c39227c3e5ea4d500d03faf5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45717-6143STDY8787429,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.bam,f5d6286cf55dd047746fea06b5d0c693,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.vcf.gz,5ab62b72a9fdd11f6ebe2decea4c10d9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45717-6143STDY8787429.zarr.zip,ed7b61c81691c7ec10e9af514bb2ea99,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45718-6143STDY8787430,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.bam,611c37298ed8098d0dc01a31d0dc3251,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.vcf.gz,c8179466594aab3fc0e5cbdab64e8ec9,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45718-6143STDY8787430.zarr.zip,d418cdc84b5eab67df7c920c1ef9d027,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45720-6143STDY8787431,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.bam,33c5d50c38417a330fef27dcdfb2de0f,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.vcf.gz,5b92267939a6f92b69cd51e845573c05,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45720-6143STDY8787431.zarr.zip,b9dc4ebe215ccd4ed0ef50e0e1d2ebf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45723-6143STDY8787432,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.bam,e627766b6ed2f6d986e04d738f28e279,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.vcf.gz,03e6e3d2b7ab0b7f23a404b0a7a535cb,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45723-6143STDY8787432.zarr.zip,456a56b85af8152002ab0c293dc3fc6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45724-6143STDY8787433,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.bam,8a26386ba21bb0795f14a535967c2bf7,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.vcf.gz,d76416cb68e3563ce8b5617025ac3195,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45724-6143STDY8787433.zarr.zip,6e2f78745cfcd9905388479f4598ec4f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45728-6143STDY8787434,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.bam,23abf7b0c45fab3f2292cfff1300c8c5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.vcf.gz,f1d25f259793488fec935790bfe0f151,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45728-6143STDY8787434.zarr.zip,2a28a78c752eb9063cf2ab548a6a85c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45734-6143STDY8787435,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.bam,44041573d6966637779039a356cebe92,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.vcf.gz,30c840a3bc996d65cbdcfeab9fad0201,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45734-6143STDY8787435.zarr.zip,bb4d31d49e84d7053b0d4a962c5ebf3e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45735-6143STDY8787436,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.bam,0e0cf00dded68420c27e3b3d80443813,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.vcf.gz,4c0d737279bb0a52e95068fc3c3897cf,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45735-6143STDY8787436.zarr.zip,41d9064c12e6ff66d7ea32f8e441ad45,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45737-6143STDY8787437,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.bam,8377793f28aa45017d7ec07321d7b7f4,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.vcf.gz,fcc48594bcd97c28a1dfc527c203974a,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45737-6143STDY8787437.zarr.zip,cd9bbd1e99f547593ccb12a7a41dccc8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45738-6143STDY8787438,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.bam,c97e96c7a0dd02897891f1781c371ba2,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.vcf.gz,c542c178bb35c4b1a6593b15b54bc15c,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45738-6143STDY8787438.zarr.zip,c171d40690dc1eb4d99dd10098d1384b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45739-6143STDY8787439,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.bam,07a3b15c026e6d9aea8abc62094cb671,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.vcf.gz,1c60774e9bc9cf6c15bd240d7a09a3b5,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45739-6143STDY8787439.zarr.zip,547bc11cf02f272e879896285196016a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45742-6143STDY8787440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.bam,083aef95be6f37ac9c4a7ecf7c94f71e,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.vcf.gz,edb4663402075a8610830dcda0f84694,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45742-6143STDY8787440.zarr.zip,812d3e884f055f40b2915c5c0dcbdce6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45743-6143STDY8787441,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.bam,46f29e379230e6eb2b34136f90ecceb1,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.vcf.gz,834513f9ee49a467714927b5a4e8585b,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45743-6143STDY8787441.zarr.zip,83a7fb33bbbd7025d79eb33063042271,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45745-6143STDY8787442,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.bam,ddb8522541eb68c89ca5b1bd56914552,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.vcf.gz,2ad5823ac3bb56c7c1e6f91b146e7440,https://1277-vo-kh-witkowski-vmf00151.cog.sanger.ac.uk/VBS45745-6143STDY8787442.zarr.zip,035b40b9d9bf0d004511b529eabd8a0c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv new file mode 100644 index 000000000..2e34e6332 --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv @@ -0,0 +1,249 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS54551-6143STDY11462443,BC1861,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54553-6143STDY11462445,BC1867,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54554-6143STDY11462446,BC1876,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54555-6143STDY11462447,BC1877,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54556-6143STDY11462448,BC1881,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54557-6143STDY11462449,BC1883,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54558-6143STDY11462450,BC1890,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54561-6143STDY11462453,BC1895,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54562-6143STDY11462454,BC1905,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54563-6143STDY11462455,BC1908,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54564-6143STDY11462456,BC1909,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54565-6143STDY11462457,BC1911,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54567-6143STDY11462459,BC1919,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54569-6143STDY11462461,BC1924,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54570-6143STDY11462462,BC1939,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54571-6143STDY11462463,BC1940,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54572-6143STDY11462464,BC1946,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54574-6143STDY11462466,BC1949,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54575-6143STDY11462467,BC1950,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54576-6143STDY11462468,BC1951,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54577-6143STDY11462469,BC1955,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54578-6143STDY11462470,BC1957,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54579-6143STDY11462471,BC1964,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54580-6143STDY11462472,BC1968,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54581-6143STDY11462473,BC1972,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54582-6143STDY11462474,BC1980,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54583-6143STDY11462475,BC1982,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54585-6143STDY11462477,BC1985,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54586-6143STDY11462478,BC1987,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54588-6143STDY11462480,BC2013,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54589-6143STDY11462481,BC2014,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54590-6143STDY11462482,BC2015,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54591-6143STDY11462483,BC2016,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54592-6143STDY11462484,BC2026,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54593-6143STDY11462485,BC2029,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54594-6143STDY11462486,BC2035,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54595-6143STDY11462487,BC2039,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54596-6143STDY11462488,BC2041,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54597-6143STDY11462489,BC2042,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54598-6143STDY11462490,BC2048,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54599-6143STDY11462491,BC2049,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54644-6143STDY11462538,BC4715,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,UKN +VBS54647-6143STDY11462541,BC4727,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,UKN +VBS54648-6143STDY11462542,BC4733,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54649-6143STDY11462543,BC4734,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54650-6143STDY11462544,BC4735,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54651-6143STDY11462545,BC4736,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54654-6143STDY11462548,BC4746,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54655-6143STDY11462549,BC4749,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54656-6143STDY11462550,BC4750,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54657-6143STDY11462551,BC4751,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54658-6143STDY11462552,BC4753,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54659-6143STDY11462553,BC4755,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54661-6143STDY11462555,BC4763,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54662-6143STDY11462556,BC4764,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54663-6143STDY11462557,BC4765,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54664-6143STDY11462558,BC4766,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54665-6143STDY11462559,BC4767,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54666-6143STDY11462560,BC4768,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54667-6143STDY11462561,BC4771,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54668-6143STDY11462562,BC4773,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54669-6143STDY11462563,BC4780,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54671-6143STDY11462565,BC4784,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54675-6143STDY11462569,BC4801,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54679-6143STDY11462573,BC4811,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54680-6143STDY11462574,BC4815,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54682-6143STDY11462576,BC4825,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54683-6143STDY11462577,BC4826,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54687-6143STDY11462581,BC4836,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,UKN +VBS54689-6143STDY11462583,BC4857,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,UKN +VBS54697-6143STDY11462591,S1047,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54699-6143STDY11462593,S1066,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54702-6143STDY11462596,S1089,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54703-6143STDY11462597,S1098,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54704-6143STDY11462598,S1108,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54706-6143STDY11462600,S1128,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54707-6143STDY11462601,S1133,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54709-6143STDY11462603,S1137,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54710-6143STDY11462604,S1155,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54711-6143STDY11462605,S1176,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54712-6143STDY11462606,S1177,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54713-6143STDY11462607,S1189,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54715-6143STDY11462609,S1191,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54716-6143STDY11462610,S1192,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54717-6143STDY11462611,S1198,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54718-6143STDY11462612,S1211,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54719-6143STDY11462613,S1214,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54720-6143STDY11462614,S1218,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54722-6143STDY11462616,S1229,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54723-6143STDY11462617,S1231,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54724-6143STDY11462618,S1249,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54726-6143STDY11462620,S1277,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54731-6143STDY11462625,S1312,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54734-6143STDY11462628,S1371,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54735-6143STDY11462629,S1374,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54737-6143STDY11462631,S1391,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54738-6143STDY11462634,S1398,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54739-6143STDY11462635,S1413,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54740-6143STDY11462636,S1415,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54741-6143STDY11462637,S1421,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54742-6143STDY11462638,S1425,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54743-6143STDY11462639,S1429,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54744-6143STDY11462640,K0644,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54746-6143STDY11462642,K0657,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54747-6143STDY11462643,K0662,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54748-6143STDY11462644,K0681,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54749-6143STDY11462645,K0691,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54750-6143STDY11462646,K0693,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54751-6143STDY11462647,K0707,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54752-6143STDY11462648,K0714,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54753-6143STDY11462649,K0717,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54754-6143STDY11462650,K0733,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54755-6143STDY11462651,K0741,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54756-6143STDY11462652,K0742,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54757-6143STDY11462653,K0743,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54758-6143STDY11462654,K0744,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54759-6143STDY11462655,K0746,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54760-6143STDY11462656,K0751,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54761-6143STDY11462657,K0761,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54762-6143STDY11462658,K0773,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54763-6143STDY11462659,K0775,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54764-6143STDY11462660,K0797,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54765-6143STDY11462661,K0809,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54766-6143STDY11462662,K0848,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54767-6143STDY11462663,K0850,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54768-6143STDY11462664,K0862,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54769-6143STDY11462665,K0863,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54770-6143STDY11462666,K0865,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54771-6143STDY11462667,K0869,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54772-6143STDY11462668,K0885,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54773-6143STDY11462669,K0899,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54776-6143STDY11462672,K0928,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54777-6143STDY11462673,K0933,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54778-6143STDY11462674,K0941,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54779-6143STDY11462675,K0944,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54780-6143STDY11462676,K0946,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54781-6143STDY11462677,K0947,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54782-6143STDY11462678,K0954,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54783-6143STDY11462679,K0960,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54784-6143STDY11462680,K0962,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54785-6143STDY11462681,K0979,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54786-6143STDY11462682,K0991,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54787-6143STDY11462683,K1001,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54788-6143STDY11462684,K1007,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54789-6143STDY11462685,K1011,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54790-6143STDY11462686,K1017,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54791-6143STDY11462687,K1018,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54792-6143STDY11462688,K1019,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54793-6143STDY11462689,K1021,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54794-6143STDY11462690,P14110,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54795-6143STDY11462691,P14113,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54796-6143STDY11462692,P14114,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54797-6143STDY11462693,P14117,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54798-6143STDY11462694,P14120,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54799-6143STDY11462695,P14121,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54800-6143STDY11462696,P14122,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54801-6143STDY11462697,P14124,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54802-6143STDY11462698,P14131,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54803-6143STDY11462699,P14134,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54804-6143STDY11462700,P14135,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54805-6143STDY11462701,P14136,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54806-6143STDY11462702,P14137,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54807-6143STDY11462703,P14140,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54808-6143STDY11462704,P14141,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54809-6143STDY11462705,P14143,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54810-6143STDY11462706,P14149,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54811-6143STDY11462707,P14151,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54812-6143STDY11462708,P14152,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54813-6143STDY11462709,P14155,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54814-6143STDY11462710,P14157,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54815-6143STDY11462711,P14159,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54816-6143STDY11462712,P14160,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54817-6143STDY11462713,P14161,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54818-6143STDY11462714,P14162,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54819-6143STDY11462715,P14163,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54820-6143STDY11462716,P14164,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54821-6143STDY11462717,P14166,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54822-6143STDY11462718,P14168,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54823-6143STDY11462719,P14169,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54824-6143STDY11462720,P14170,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54825-6143STDY11462721,P14171,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54826-6143STDY11462722,P14174,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54827-6143STDY11462723,P14175,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54828-6143STDY11462724,P14176,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54829-6143STDY11462725,P14179,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54830-6143STDY11462726,P14180,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54831-6143STDY11462727,P14181,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54832-6143STDY11462730,P14182,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54833-6143STDY11462731,P14183,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54834-6143STDY11462732,P14184,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54835-6143STDY11462733,P14185,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54836-6143STDY11462734,P14187,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54837-6143STDY11462735,P14188,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54838-6143STDY11462736,P14190,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54839-6143STDY11462737,P14192,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54840-6143STDY11462738,P14194,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54841-6143STDY11462739,P14196,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54842-6143STDY11462740,P14201,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54843-6143STDY11462741,P18546,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54844-6143STDY11462742,P18555,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54845-6143STDY11462743,P18556,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54846-6143STDY11462744,P18572,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54847-6143STDY11462745,P18596,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54848-6143STDY11462746,P18609,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54849-6143STDY11462747,P18619,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54850-6143STDY11462748,P18669,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54851-6143STDY11462749,P18682,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54852-6143STDY11462750,P18685,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54853-6143STDY11462751,P18687,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54854-6143STDY11462752,P18697,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54855-6143STDY11462753,P18702,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54856-6143STDY11462754,P18704,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54857-6143STDY11462755,P18707,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54858-6143STDY11462756,P18712,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54859-6143STDY11462757,P18719,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54860-6143STDY11462758,P18726,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54861-6143STDY11462759,P18744,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54862-6143STDY11462760,P18749,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54863-6143STDY11462761,P18756,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54864-6143STDY11462762,P18760,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54865-6143STDY11462763,P18761,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54866-6143STDY11462764,P18762,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54867-6143STDY11462765,P18764,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54868-6143STDY11462766,P18770,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54869-6143STDY11462767,P18798,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54870-6143STDY11462768,P18803,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54871-6143STDY11462769,P18819,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54872-6143STDY11462770,P18827,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54873-6143STDY11462771,P18838,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54874-6143STDY11462772,P18841,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54875-6143STDY11462773,P18844,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54876-6143STDY11462774,P18845,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54877-6143STDY11462775,P18864,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54878-6143STDY11462776,P18866,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54879-6143STDY11462777,P18877,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54880-6143STDY11462778,P18885,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54881-6143STDY11462779,P18886,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54882-6143STDY11462780,P18888,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54883-6143STDY11462781,P18889,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54884-6143STDY11462782,P18890,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54885-6143STDY11462783,P18891,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54886-6143STDY11462784,P18892,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54887-6143STDY11462785,P18897,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54888-6143STDY11462786,P18920,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54889-6143STDY11462787,P18927,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54890-6143STDY11462788,P18932,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54891-6143STDY11462789,P18937,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54892-6143STDY11462790,P18940,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..f54ec6433 --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 +VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 +VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 +VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 +VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 +VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 +VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 +VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 +VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 +VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 +VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 +VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 +VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 +VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 +VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 +VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 +VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 +VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 +VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 +VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 +VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 +VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 +VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 +VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 +VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 +VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 +VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 +VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 +VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 +VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 +VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 +VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 +VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 +VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 +VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 +VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 +VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 +VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 +VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 +VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 +VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 +VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 +VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 +VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 +VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 +VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 +VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 +VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 +VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 +VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 +VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 +VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 +VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 +VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 +VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 +VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 +VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 +VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 +VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 +VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 +VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 +VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 +VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 +VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 +VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 +VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 +VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 +VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 +VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 +VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 +VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 +VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 +VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 +VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 +VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 +VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 +VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 +VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 +VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 +VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 +VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 +VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 +VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 +VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 +VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 +VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 +VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 +VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 +VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 +VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 +VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 +VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 +VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 +VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 +VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 +VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 +VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 +VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 +VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 +VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 +VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 +VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 +VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 +VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 +VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 +VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 +VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 +VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 +VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 +VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 +VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 +VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 +VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 +VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 +VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 +VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 +VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 +VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 +VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 +VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 +VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 +VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 +VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 +VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 +VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 +VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 +VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 +VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 +VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 +VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 +VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 +VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 +VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 +VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 +VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 +VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 +VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 +VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 +VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 +VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 +VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 +VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 +VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 +VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 +VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 +VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 +VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 +VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 +VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 +VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 +VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 +VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 +VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 +VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 +VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 +VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 +VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 +VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 +VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 +VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 +VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 +VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 +VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 +VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 +VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 +VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 +VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 +VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 +VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 +VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 +VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 +VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 +VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 +VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 +VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 +VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 +VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 +VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 +VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 +VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 +VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 +VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 +VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 +VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 +VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 +VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 +VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 +VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 +VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 +VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 +VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 +VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 +VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 +VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 +VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 +VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 +VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 +VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 +VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 +VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 +VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 +VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 +VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 +VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 +VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 +VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 +VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 +VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 +VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 +VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 +VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 +VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 +VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 +VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 +VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 +VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 +VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 +VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 +VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 +VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 +VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 +VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 +VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 +VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 +VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 +VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 +VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 +VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 +VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 +VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 +VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 +VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 +VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 +VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 +VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 +VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 +VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 +VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 +VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 +VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 +VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 +VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 +VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 +VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 +VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 +VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 +VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 +VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv new file mode 100644 index 000000000..2b4f59b57 --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv @@ -0,0 +1,249 @@ +sample_id,run_ena,analysis_ena +VBS54551-6143STDY11462443,, +VBS54553-6143STDY11462445,, +VBS54554-6143STDY11462446,, +VBS54555-6143STDY11462447,, +VBS54556-6143STDY11462448,, +VBS54557-6143STDY11462449,, +VBS54558-6143STDY11462450,, +VBS54561-6143STDY11462453,, +VBS54562-6143STDY11462454,, +VBS54563-6143STDY11462455,, +VBS54564-6143STDY11462456,, +VBS54565-6143STDY11462457,, +VBS54567-6143STDY11462459,, +VBS54569-6143STDY11462461,, +VBS54570-6143STDY11462462,, +VBS54571-6143STDY11462463,, +VBS54572-6143STDY11462464,, +VBS54574-6143STDY11462466,, +VBS54575-6143STDY11462467,, +VBS54576-6143STDY11462468,, +VBS54577-6143STDY11462469,, +VBS54578-6143STDY11462470,, +VBS54579-6143STDY11462471,, +VBS54580-6143STDY11462472,, +VBS54581-6143STDY11462473,, +VBS54582-6143STDY11462474,, +VBS54583-6143STDY11462475,, +VBS54585-6143STDY11462477,, +VBS54586-6143STDY11462478,, +VBS54588-6143STDY11462480,, +VBS54589-6143STDY11462481,, +VBS54590-6143STDY11462482,, +VBS54591-6143STDY11462483,, +VBS54592-6143STDY11462484,, +VBS54593-6143STDY11462485,, +VBS54594-6143STDY11462486,, +VBS54595-6143STDY11462487,, +VBS54596-6143STDY11462488,, +VBS54597-6143STDY11462489,, +VBS54598-6143STDY11462490,, +VBS54599-6143STDY11462491,, +VBS54644-6143STDY11462538,, +VBS54647-6143STDY11462541,, +VBS54648-6143STDY11462542,, +VBS54649-6143STDY11462543,, +VBS54650-6143STDY11462544,, +VBS54651-6143STDY11462545,, +VBS54654-6143STDY11462548,, +VBS54655-6143STDY11462549,, +VBS54656-6143STDY11462550,, +VBS54657-6143STDY11462551,, +VBS54658-6143STDY11462552,, +VBS54659-6143STDY11462553,, +VBS54661-6143STDY11462555,, +VBS54662-6143STDY11462556,, +VBS54663-6143STDY11462557,, +VBS54664-6143STDY11462558,, +VBS54665-6143STDY11462559,, +VBS54666-6143STDY11462560,, +VBS54667-6143STDY11462561,, +VBS54668-6143STDY11462562,, +VBS54669-6143STDY11462563,, +VBS54671-6143STDY11462565,, +VBS54675-6143STDY11462569,, +VBS54679-6143STDY11462573,, +VBS54680-6143STDY11462574,, +VBS54682-6143STDY11462576,, +VBS54683-6143STDY11462577,, +VBS54687-6143STDY11462581,, +VBS54689-6143STDY11462583,, +VBS54697-6143STDY11462591,, +VBS54699-6143STDY11462593,, +VBS54702-6143STDY11462596,, +VBS54703-6143STDY11462597,, +VBS54704-6143STDY11462598,, +VBS54706-6143STDY11462600,, +VBS54707-6143STDY11462601,, +VBS54709-6143STDY11462603,, +VBS54710-6143STDY11462604,, +VBS54711-6143STDY11462605,, +VBS54712-6143STDY11462606,, +VBS54713-6143STDY11462607,, +VBS54715-6143STDY11462609,, +VBS54716-6143STDY11462610,, +VBS54717-6143STDY11462611,, +VBS54718-6143STDY11462612,, +VBS54719-6143STDY11462613,, +VBS54720-6143STDY11462614,, +VBS54722-6143STDY11462616,, +VBS54723-6143STDY11462617,, +VBS54724-6143STDY11462618,, +VBS54726-6143STDY11462620,, +VBS54731-6143STDY11462625,, +VBS54734-6143STDY11462628,, +VBS54735-6143STDY11462629,, +VBS54737-6143STDY11462631,, +VBS54738-6143STDY11462634,, +VBS54739-6143STDY11462635,, +VBS54740-6143STDY11462636,, +VBS54741-6143STDY11462637,, +VBS54742-6143STDY11462638,, +VBS54743-6143STDY11462639,, +VBS54744-6143STDY11462640,, +VBS54746-6143STDY11462642,, +VBS54747-6143STDY11462643,, +VBS54748-6143STDY11462644,, +VBS54749-6143STDY11462645,, +VBS54750-6143STDY11462646,, +VBS54751-6143STDY11462647,, +VBS54752-6143STDY11462648,, +VBS54753-6143STDY11462649,, +VBS54754-6143STDY11462650,, +VBS54755-6143STDY11462651,, +VBS54756-6143STDY11462652,, +VBS54757-6143STDY11462653,, +VBS54758-6143STDY11462654,, +VBS54759-6143STDY11462655,, +VBS54760-6143STDY11462656,, +VBS54761-6143STDY11462657,, +VBS54762-6143STDY11462658,, +VBS54763-6143STDY11462659,, +VBS54764-6143STDY11462660,, +VBS54765-6143STDY11462661,, +VBS54766-6143STDY11462662,, +VBS54767-6143STDY11462663,, +VBS54768-6143STDY11462664,, +VBS54769-6143STDY11462665,, +VBS54770-6143STDY11462666,, +VBS54771-6143STDY11462667,, +VBS54772-6143STDY11462668,, +VBS54773-6143STDY11462669,, +VBS54776-6143STDY11462672,, +VBS54777-6143STDY11462673,, +VBS54778-6143STDY11462674,, +VBS54779-6143STDY11462675,, +VBS54780-6143STDY11462676,, +VBS54781-6143STDY11462677,, +VBS54782-6143STDY11462678,, +VBS54783-6143STDY11462679,, +VBS54784-6143STDY11462680,, +VBS54785-6143STDY11462681,, +VBS54786-6143STDY11462682,, +VBS54787-6143STDY11462683,, +VBS54788-6143STDY11462684,, +VBS54789-6143STDY11462685,, +VBS54790-6143STDY11462686,, +VBS54791-6143STDY11462687,, +VBS54792-6143STDY11462688,, +VBS54793-6143STDY11462689,, +VBS54794-6143STDY11462690,, +VBS54795-6143STDY11462691,, +VBS54796-6143STDY11462692,, +VBS54797-6143STDY11462693,, +VBS54798-6143STDY11462694,, +VBS54799-6143STDY11462695,, +VBS54800-6143STDY11462696,, +VBS54801-6143STDY11462697,, +VBS54802-6143STDY11462698,, +VBS54803-6143STDY11462699,, +VBS54804-6143STDY11462700,, +VBS54805-6143STDY11462701,, +VBS54806-6143STDY11462702,, +VBS54807-6143STDY11462703,, +VBS54808-6143STDY11462704,, +VBS54809-6143STDY11462705,, +VBS54810-6143STDY11462706,, +VBS54811-6143STDY11462707,, +VBS54812-6143STDY11462708,, +VBS54813-6143STDY11462709,, +VBS54814-6143STDY11462710,, +VBS54815-6143STDY11462711,, +VBS54816-6143STDY11462712,, +VBS54817-6143STDY11462713,, +VBS54818-6143STDY11462714,, +VBS54819-6143STDY11462715,, +VBS54820-6143STDY11462716,, +VBS54821-6143STDY11462717,, +VBS54822-6143STDY11462718,, +VBS54823-6143STDY11462719,, +VBS54824-6143STDY11462720,, +VBS54825-6143STDY11462721,, +VBS54826-6143STDY11462722,, +VBS54827-6143STDY11462723,, +VBS54828-6143STDY11462724,, +VBS54829-6143STDY11462725,, +VBS54830-6143STDY11462726,, +VBS54831-6143STDY11462727,, +VBS54832-6143STDY11462730,, +VBS54833-6143STDY11462731,, +VBS54834-6143STDY11462732,, +VBS54835-6143STDY11462733,, +VBS54836-6143STDY11462734,, +VBS54837-6143STDY11462735,, +VBS54838-6143STDY11462736,, +VBS54839-6143STDY11462737,, +VBS54840-6143STDY11462738,, +VBS54841-6143STDY11462739,, +VBS54842-6143STDY11462740,, +VBS54843-6143STDY11462741,, +VBS54844-6143STDY11462742,, +VBS54845-6143STDY11462743,, +VBS54846-6143STDY11462744,, +VBS54847-6143STDY11462745,, +VBS54848-6143STDY11462746,, +VBS54849-6143STDY11462747,, +VBS54850-6143STDY11462748,, +VBS54851-6143STDY11462749,, +VBS54852-6143STDY11462750,, +VBS54853-6143STDY11462751,, +VBS54854-6143STDY11462752,, +VBS54855-6143STDY11462753,, +VBS54856-6143STDY11462754,, +VBS54857-6143STDY11462755,, +VBS54858-6143STDY11462756,, +VBS54859-6143STDY11462757,, +VBS54860-6143STDY11462758,, +VBS54861-6143STDY11462759,, +VBS54862-6143STDY11462760,, +VBS54863-6143STDY11462761,, +VBS54864-6143STDY11462762,, +VBS54865-6143STDY11462763,, +VBS54866-6143STDY11462764,, +VBS54867-6143STDY11462765,, +VBS54868-6143STDY11462766,, +VBS54869-6143STDY11462767,, +VBS54870-6143STDY11462768,, +VBS54871-6143STDY11462769,, +VBS54872-6143STDY11462770,, +VBS54873-6143STDY11462771,, +VBS54874-6143STDY11462772,, +VBS54875-6143STDY11462773,, +VBS54876-6143STDY11462774,, +VBS54877-6143STDY11462775,, +VBS54878-6143STDY11462776,, +VBS54879-6143STDY11462777,, +VBS54880-6143STDY11462778,, +VBS54881-6143STDY11462779,, +VBS54882-6143STDY11462780,, +VBS54883-6143STDY11462781,, +VBS54884-6143STDY11462782,, +VBS54885-6143STDY11462783,, +VBS54886-6143STDY11462784,, +VBS54887-6143STDY11462785,, +VBS54888-6143STDY11462786,, +VBS54889-6143STDY11462787,, +VBS54890-6143STDY11462788,, +VBS54891-6143STDY11462789,, +VBS54892-6143STDY11462790,, diff --git a/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv new file mode 100644 index 000000000..57c97d076 --- /dev/null +++ b/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv @@ -0,0 +1,249 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS54551-6143STDY11462443,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.bam,97efe5d9dea91417bea00436278affd0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.vcf.gz,c3a6793a1b39faf4e0f576d8de7a8ae6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.zarr.zip,68dde74a7a4b292e9e27cb772f3284bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54553-6143STDY11462445,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.bam,84a9ae06f0253ef020c70f1e499a43ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.vcf.gz,da2d78e3ea75701b45fc7b1756cb4770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.zarr.zip,e7c8e0d5163043084455489111addfbb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54554-6143STDY11462446,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.bam,91a6cf231d918ef9f227acf49bd9cbd1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.vcf.gz,708e3f3e8be4f90900844c51004e4d3f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.zarr.zip,d83ad11b5be5d34bda77cb583492fd36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54555-6143STDY11462447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.bam,731d83a3eb2ea26478136bb95f8ce3a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.vcf.gz,4fcfc7b3f409c64c8c91bfd619c3b640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.zarr.zip,c158b45731a7d1781cf4edaa8b768081,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54556-6143STDY11462448,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.bam,f939db9a79f5ff37411ae595281b9f33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.vcf.gz,e5f7f0d99c1f0e3dd908f65b684e6ed5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.zarr.zip,98d201634eb49abe94152f98700c8640,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54557-6143STDY11462449,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.bam,71e609036f9b8d73c36411cb5d85ea89,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.vcf.gz,d19369a3a914041fe9b5704f1a36907f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.zarr.zip,f7aca3a853edd928231637544ab59e56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54558-6143STDY11462450,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.bam,e432f8a43912d9b46859aae41ff94d44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.vcf.gz,54cd53255d56f414f366af9b96263781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.zarr.zip,a696943f13027f21a0b73b2c7e7c6e9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54561-6143STDY11462453,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.bam,0ec6982d64ae52a8afc9b9e36526061a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.vcf.gz,b9e0b64028207f37afe0c2d7356de50d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.zarr.zip,022cec7416431768f081b9d7009f38bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54562-6143STDY11462454,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.bam,da5c16679e2ef41f71d7a214f6b785ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.vcf.gz,f47181fcbd78a160866a52d4828efedb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.zarr.zip,cb8f6bb2b712f69e147636110c02f12c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54563-6143STDY11462455,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.bam,ccd0fbc05932ada38027f9e7b03fb604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.vcf.gz,1e900109d7489ed0d405f41a1a81bc0e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.zarr.zip,edbe7bea5e68b8986d894860920ff913,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54564-6143STDY11462456,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.bam,b1df0a11f8ac4aea1991f0ced2055aaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.vcf.gz,81095b97eb35c5c19b4d5969982a8a76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.zarr.zip,3f573e897d8f611e14b67e712b91a5d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54565-6143STDY11462457,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.bam,6000eb9c4b424910dee6da2d28310cea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.vcf.gz,e252458fea87b9f1af447f59589d7a07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.zarr.zip,a08072b41e6fbacd5f481fe1c3dfd44a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54567-6143STDY11462459,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.bam,8ef71d008e27e4de963d588205bdb507,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.vcf.gz,24de0a49e735ec892b3b509e98846077,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.zarr.zip,6dd279b195d3ea88e0be71a6a98df0d9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54569-6143STDY11462461,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.bam,aa07842f5c8ab57265c4fc1a75f3f4be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.vcf.gz,eb0dd47af1212bc6ca0919ed1125d807,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.zarr.zip,fdbe11def287c1fdc79ce18125907e35,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54570-6143STDY11462462,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.bam,4e6c7588d8c788443121afa21b47d89d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.vcf.gz,e7e814c0e76bac7fe41e5fdeab5d1715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.zarr.zip,1342c60822ec0a22c4e9af96348990c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54571-6143STDY11462463,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.bam,fe78ac6864fef258e94f9e46547dce66,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.vcf.gz,584407449b0e193dbe46b03458bb49b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.zarr.zip,7f82a6a0914ed496ed1e85ac30cc4822,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54572-6143STDY11462464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.bam,9456e35134744766a6c7c2d0455b21a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.vcf.gz,edcf2db9a00d66eddd120b10129f3b42,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.zarr.zip,d4f75b3053c925b7d5f3188f615c0b4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54574-6143STDY11462466,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.bam,d8618e32710fba491e3061a2958933bf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.vcf.gz,b6755fc46922facf794b8744bf01a888,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.zarr.zip,57f2dde162bda08bcd1bf8ce04e40150,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54575-6143STDY11462467,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.bam,9604094ee416611b7b9e17b3c464528a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.vcf.gz,40566893c41f34035e47d8f927ebe2fd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.zarr.zip,6f92b597bc932f98637348467941163f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54576-6143STDY11462468,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.bam,ea5c7245c3e37648fd7c78eba3ad6539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.vcf.gz,2da01337e96e03f1187f7ef9a77bca9a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.zarr.zip,b1ab42fd9db6c20f1df4ea136d8804cd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54577-6143STDY11462469,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.bam,f9916abc15a9e89d731e2f205149ed23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.vcf.gz,f2f6f64121cb250c76bea2782c243b6a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.zarr.zip,ecca7d09040050b6bb4bc66bc5afd9f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54578-6143STDY11462470,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.bam,b4cbe82bc3c20604de86a963db44014a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.vcf.gz,a0d8f4d6c40480a931316cefdbdbd531,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.zarr.zip,fc44fb7e450a21a0d3545bb8b98f81f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54579-6143STDY11462471,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.bam,8c488e743eaf6769b48ba770847a9a61,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.vcf.gz,6beb9476e9bffb1f4116a3346c5ed43b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.zarr.zip,2b0dbfd7d3f30b863cee44a48c10673b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54580-6143STDY11462472,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.bam,d99cd659e330d8d5b6d056dcc1ca033d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.vcf.gz,c9a96407b0a5aa1e4b323fe3e49379c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.zarr.zip,868d4c3abc58cb50ab71b9e91f954003,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54581-6143STDY11462473,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.bam,3793346aca360a5cc48202e082fcd05b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.vcf.gz,3ac8f36493f0d97f35fceae400c548b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.zarr.zip,b84ea87c26e3712f84c5e0225e2718cc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54582-6143STDY11462474,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.bam,52d435b88078e6b944fb5a430c506d84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.vcf.gz,70b6f6d2b33f3cdc9d113641177d9513,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.zarr.zip,f4e4a3514110bc308f238d87b924fe03,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54583-6143STDY11462475,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.bam,27e6de49c503e7e9d6b29062054fcd1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.vcf.gz,62a88784d2c7e87551457bfef50cfd88,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.zarr.zip,0785f2883b097ba6d83bcb09549e08c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54585-6143STDY11462477,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.bam,b22d3ac79fb9071f08c2cffba352ce4d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.vcf.gz,432c97760b08dccb5832bf019daef1a6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.zarr.zip,f6a37777f2e9ab766a568ae13ec6e4c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54586-6143STDY11462478,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.bam,7a63d53916599b72bc0ca429f3a7e0f7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.vcf.gz,f04bdce8005ae030187c39fa40ddb5a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.zarr.zip,fc5653e20a149250ec8ae9fb84c6959f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54588-6143STDY11462480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.bam,f5017da6999f90c7709bd5adba09698d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.vcf.gz,b504b546a2fb55d38b3bd4a16ed0cd5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.zarr.zip,63f5fc2ebfafd5fea718dfc6e9fc6a88,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54589-6143STDY11462481,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.bam,7c69f2c258e08b907b18e613cc878724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.vcf.gz,4c12232c8c917bab1776fc91dd0ebf91,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.zarr.zip,a95b1d84aa5cd04bf91ee7a1fa03514c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54590-6143STDY11462482,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.bam,30da5e7d8663badf03ece55214798a87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.vcf.gz,73f94b5fdc13adfc7b140cfa974a9662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.zarr.zip,317470de8e889226eddd36f93d61f470,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54591-6143STDY11462483,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.bam,701b40328e2afeae12a46a1661c7b5be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.vcf.gz,ff5e65772e9bbec5862171784052879d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.zarr.zip,5466456ae48ea341169053bc5c388a77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54592-6143STDY11462484,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.bam,7c0e5930085c87df0bc9a7033d028ec8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.vcf.gz,b47648dd68f5fdb435ed113d8cd495ba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.zarr.zip,14e1ee3176da7ca50e476331564b8ee5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54593-6143STDY11462485,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.bam,3ce61382925a4d62d62b1f271c21c1c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.vcf.gz,31acde71665d288f52f691d29e02b28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.zarr.zip,dd36fe44fd5b23dc4aa5b2ba048becba,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54594-6143STDY11462486,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.bam,928e7ce16d84c55bc6a839cb292080cb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.vcf.gz,66e73909eba1bb580646617c3bc403c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.zarr.zip,8bf8badfe455fe6f9626eeb5ff40087f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54595-6143STDY11462487,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.bam,5f629de0e67ba6ef403de91ef6a62847,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.vcf.gz,00bfc6c8959ba6af86e6557136524600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.zarr.zip,c37a883b8ffac6d9e5c7003fcb91be49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54596-6143STDY11462488,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.bam,ef94bed7208c81601bdd6d83388c4d98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.vcf.gz,57f474691f32434b89fd1b1a1e1660bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.zarr.zip,24a4b9c1450eac50bb1f0c0ca51a61e8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54597-6143STDY11462489,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.bam,3c32687de36e78d580d101ee737d4300,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.vcf.gz,e19062709b35e359eb9a1ec81e9873c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.zarr.zip,f2e04d9cb99afa23553097d2081ddc6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54598-6143STDY11462490,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.bam,8a23ad14e83c67227b3aa9eab67f4eb0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.vcf.gz,8760d063e5420343ff1bc7e1cd88dcba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.zarr.zip,fb7d5cdb1158f67b652aaccc929dbf3b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54599-6143STDY11462491,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.bam,d770234358fe57eef50c033b44fa7cf4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.vcf.gz,674071393a5f78130657bab749cadf25,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.zarr.zip,3a03bca1fb9b38b1e87b34149967d336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54644-6143STDY11462538,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.bam,4b47e6d2b4eb419726d8e36d15df9c74,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.vcf.gz,ec6f828b4ecec5e1e5c54d568f20633a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.zarr.zip,21b35f85e678c13c99f58caa0872ac41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54647-6143STDY11462541,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.bam,da4c14ae14009ca18fe08745e5cb0553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.vcf.gz,7f6f77a33555013f5bcc863ae2c87019,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.zarr.zip,8275059a44d94477b7fff2b2da38811e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54648-6143STDY11462542,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.bam,3d2dd1255ac47f1acab28929c9ff7f40,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.vcf.gz,fa551ba6e26319368ab2a8705131af7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.zarr.zip,0ac582803fa4be1c9bb627d2a0c9ef4b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54649-6143STDY11462543,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.bam,86bd422f7ff8d59096957efd43857ca4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.vcf.gz,a1e83510083c0ce73f163042f1cd71eb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.zarr.zip,956d8e2972118fc75da6022c845e32a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54650-6143STDY11462544,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.bam,78b8083e602f838aa89ba04ea3346c54,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.vcf.gz,e391af10ff98fc75798199c64da082a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.zarr.zip,aac0f12b3b9c64f41bb60cb85be67410,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54651-6143STDY11462545,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.bam,cf048c9732ae521bb5060ec902f12ac7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.vcf.gz,a56ed6f288de07a7f61edd17c95a462e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.zarr.zip,54890c893b21ef937128be27bb5c45d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54654-6143STDY11462548,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.bam,88233ecdf18811984b3fdf2065b2f503,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.vcf.gz,7df3bc2e3a6d7f73e0777882b480a78a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.zarr.zip,1e8cf20a47ec64bc217b65dde648a0ae,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54655-6143STDY11462549,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.bam,e69942e62e0c8982493a39671e020be1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.vcf.gz,6dd0e336e3158d0960f159f9baca3a3b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.zarr.zip,a999cfebd9e0af49f51e9d096f97cd1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54656-6143STDY11462550,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.bam,798eca2900569ce564b25241b59c1dc5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.vcf.gz,34ffbf3c14955a1d833d99fbfb7e124f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.zarr.zip,00286923859ffc2cd724445cd24ac9f0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54657-6143STDY11462551,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.bam,0f184cb4d298652c80c0fceff889be5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.vcf.gz,973092cf4e7b1626fa1c0bde2d5ba1dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.zarr.zip,39d616be932dab7a4e5954fb27d2611b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54658-6143STDY11462552,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.bam,58ce16a2b2094fce0f48d28a5688d875,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.vcf.gz,4be5848baa0be9b7752759cf368dcf70,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.zarr.zip,61e70aa0e93e23e8090adf9410b68d23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54659-6143STDY11462553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.bam,709d9a3adc19e979c18a51dc431f34e0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.vcf.gz,2b5ec4335e17d48f62ec43ef0891c343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.zarr.zip,8da756fe335cdca0c736ba830443307b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54661-6143STDY11462555,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.bam,c427da43e4469c10b1194c3e822514a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.vcf.gz,eeae18c4fe1fb2888ca80a4fd048188f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.zarr.zip,b5b6ae356697814bb1b56cceeec5f20b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54662-6143STDY11462556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.bam,b81b662e42680d54908a61f4d3c75a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.vcf.gz,230a1adf42882c7b639d7172eb349a7d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.zarr.zip,0caf8e1cac988e297ff3fd8871c36bf8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54663-6143STDY11462557,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.bam,bb1b0a0673bca972062849e2f0ae0464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.vcf.gz,02386997d4f31c707834a3b75be27bb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.zarr.zip,8d3f1e8f27a2e64bcc45e767c62e571a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54664-6143STDY11462558,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.bam,00b0ba191e614dbd183c5b841ecb9571,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.vcf.gz,6960b431962a906259a2d10e54af2d1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.zarr.zip,05565ac636c4bee2d31e66f5bb5f444c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54665-6143STDY11462559,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.bam,e0c1c4900172c8fbf79c6977a03f4259,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.vcf.gz,9be4ed95348f3e2ddcafd289c1e584bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.zarr.zip,9d9137c6cd35d0ec1c6d5784b09c8265,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54666-6143STDY11462560,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.bam,1ebf5aa128e77167059b0b0f149628ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.vcf.gz,df2b967f3d6263bb8f00baf30b519205,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.zarr.zip,8dafd0fcf085b3779f7debbf44d08b07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54667-6143STDY11462561,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.bam,918b689038e4ba21fd05322bfd175036,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.vcf.gz,dc3c14f263bbf0661cdf8eff2ad1d987,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.zarr.zip,8e079e428b3ae0782818584e7b5c2109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54668-6143STDY11462562,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.bam,e81f4776773cc43b1ffc25cabde8d1b6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.vcf.gz,777820fd9cbd78b552864d71e0bf9539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.zarr.zip,a5542a3fa53d99a3a61161c2f99f1b3f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54669-6143STDY11462563,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.bam,6a0a1a495100b9e018142227cd473823,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.vcf.gz,8e5e63dd4725d6cc516d3c0577853514,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.zarr.zip,42935d2a09c2d61463e2d02fb2175a1d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54671-6143STDY11462565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.bam,7f63c9a25fc2354d7f745bed7b769d00,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.vcf.gz,b2f5420bca6db18211f417843b1a5291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.zarr.zip,e573f9029018ea243e0eed462ec92a41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54675-6143STDY11462569,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.bam,c7a6955016fe15f86b2912e8533e1607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.vcf.gz,95820ec9976f8a64c9b25d352a6fd341,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.zarr.zip,37ec0c19d07d39d26a88632fdbcadd48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54679-6143STDY11462573,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.bam,83d7560aaa23bb5b67c7138c5699d840,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.vcf.gz,3f2e630bf5d815e31f1f0d94c89f5465,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.zarr.zip,f63238be47e6e93d369c018477b57434,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54680-6143STDY11462574,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.bam,b08a1ae7396c3f83f478d48e26c26a80,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.vcf.gz,74ebfcc7dde97556ce1f63e85050690e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.zarr.zip,06d8117ef46688a2f9c6aa98c201bb42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54682-6143STDY11462576,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.bam,eb3fb94bf5db48d55445c1f5910b3fff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.vcf.gz,55111c997ad3d0a077fc2f963d322029,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.zarr.zip,30c9a22ba6d3ac804130ba9a7421c5c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54683-6143STDY11462577,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.bam,2e484f032a654a705121fe30280e19c4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.vcf.gz,5ae7374340a5088238dae28ff32a5ff0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.zarr.zip,0d8440e84f3cec951a8d17a413054ca9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54687-6143STDY11462581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.bam,1c298cfa4f2d0b0ac943b261802e6ef3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.vcf.gz,e8c77b088e0d4c5a2f04bdd72cbb8e50,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.zarr.zip,cd783dbeb4f8672e8ff0acac4e1c2e6d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54689-6143STDY11462583,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.bam,9194922b057ab7c51b0e12d0de855ccb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.vcf.gz,03c83e232020a3de5e546a0b0ad7ac7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.zarr.zip,6484833e294c0655ffb6ee124acb1f2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54697-6143STDY11462591,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.bam,864fced78c826cc128dbb7dc3cbd56f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.vcf.gz,1a8e2c27416ff1a90f096a6535540a37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.zarr.zip,dcfadfa0aa47f0addc8179ee87ce5987,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54699-6143STDY11462593,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.bam,3722fe3faf17711e60abdfe665cbd27f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.vcf.gz,b9cf254150558f0d6d7c2e0b31971f5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.zarr.zip,5a6d36773b6ec3aa2e3f8080f1afc3bc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54702-6143STDY11462596,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.bam,26f71185fbe9627658d6b5cfa5919c7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.vcf.gz,383e73cacb5d66030eacd1b3b96db554,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.zarr.zip,aed8a521620468d24a2eb0e0801a6242,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54703-6143STDY11462597,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.bam,3962db4ebe00677c69b025a0e5fca004,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.vcf.gz,10341d9d7e9242bdd635f64d976e6877,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.zarr.zip,6ea46fcb5d20395f623402e1040dd023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54704-6143STDY11462598,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.bam,5e7d2f4b76a9aa7131a95c8e11cf87a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.vcf.gz,ef2bbd3a4742fd8bee2f4be57f3e5aef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.zarr.zip,e24ee96b6bcfa086a52110ad06393307,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54706-6143STDY11462600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.bam,0e807eea0efed300c3d9a06e87e55564,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.vcf.gz,6c3facd53689630e9239f66145ff008a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.zarr.zip,751a8fd7428aa925f2f6f228efbcc30c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54707-6143STDY11462601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.bam,421b8ebc6648b7fa821330e23390d5f1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.vcf.gz,bcde2390b9ffce03f02bee6bec2b407c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.zarr.zip,9aa1bed3291fc94252ceda38ee65cf33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54709-6143STDY11462603,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.bam,b0812d226e50294e1d779f376d1dc35c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.vcf.gz,c0595eb27f78c7bec097ce7c90f8f9d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.zarr.zip,df17225fcd3a15bf06906744d6b13f0b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54710-6143STDY11462604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.bam,11fb67e7d767a56a6fcd6ae2f002b627,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.vcf.gz,8a8b4a166aca3d064843be959be02d0d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.zarr.zip,7b88b97ae48cbdfd359ccd2e8a81264f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54711-6143STDY11462605,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.bam,0068de98e1ebab88c75f66c4bef95cf3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.vcf.gz,34627dbf6bca52f96a00bd83dc11599a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.zarr.zip,538735e32a5ab7be6c6b964e40037317,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54712-6143STDY11462606,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.bam,15410baa5d6614ff3fb1e186dee62e83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.vcf.gz,18c6faad2eecc8c17e19e2acf25fc3ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.zarr.zip,76f8eb6a3791cfc0e2b18d02ad82b350,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54713-6143STDY11462607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.bam,5b639b0de8ecca7eeed376697df806a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.vcf.gz,8565e7e70faae98e3058ff1bfc311180,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.zarr.zip,7b753dfb7f789c7b09a50cdea9282e9d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54715-6143STDY11462609,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.bam,6dc541e25154971abe4991b2bc96f8a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.vcf.gz,b4d6e9f52669aed549656e8b8e54f91c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.zarr.zip,0a43668cf9be1b4aa7de7308bdeb0dec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54716-6143STDY11462610,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.bam,8e862b3b8c02b12f2b08a65dd6421197,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.vcf.gz,e4317a6bd9003b403765e3a6a7d062ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.zarr.zip,e0f3505e66a9f20ef15ea2a8544fed9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54717-6143STDY11462611,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.bam,00f934eed20cf567bb92818dd93a0c36,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.vcf.gz,7dd3239d5a46b1374b99206b07d3cc85,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.zarr.zip,54215633231f4acaff98779569c54b80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54718-6143STDY11462612,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.bam,53b9d628dd114d3a47db9e6450bca92c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.vcf.gz,20df33a43602c661615c184e26417107,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.zarr.zip,4725c6668d97b163b7bcfce93c8ea0de,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54719-6143STDY11462613,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.bam,6329a26136b18569e5d8b166ac14115f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.vcf.gz,aec26d21eaa932738476333d986b3c3c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.zarr.zip,997ad36a3d8ec5d79c2d9679a22f4282,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54720-6143STDY11462614,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.bam,bfa7ff18f2f81e20abd6ca7ec27dc94d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.vcf.gz,546fdbc7928d5c9e1538769646055a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.zarr.zip,03c1d85e808f2195b8217e9d75411538,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54722-6143STDY11462616,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.bam,0fd8b45ebae829e659a2cf9024bf4c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.vcf.gz,d7c79845abc912106aec82b1e9af5cee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.zarr.zip,5ac91d515a40889418e8e8ee314f261d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54723-6143STDY11462617,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.bam,7cb4d3be81b8b66969c1513f7c89fc0c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.vcf.gz,f84622822fa23246c3817baadbfffe1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.zarr.zip,4f51397484fa09c075b8b1b41fd6aba3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54724-6143STDY11462618,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.bam,ea22711a8ae0544208280408be8ac979,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.vcf.gz,08cd72cbb7f1765e6ca2928172027af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.zarr.zip,a9d543e4fde1a45b8f747e6f523ac71f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54726-6143STDY11462620,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.bam,7ffc1433b3e7ae03fb1673d732ac00b8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.vcf.gz,25c8dcfa7eba123ede7e54e8a96f01de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.zarr.zip,0e5ce96bdbca942c22a129c1c2189ecd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54731-6143STDY11462625,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.bam,8fa21580dfa0940b053a6b21ca7db852,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.vcf.gz,cd20ca9845f310c02b663fe019cdc13e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.zarr.zip,89b4ed030a43d344f9a33b3e255fd044,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54734-6143STDY11462628,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.bam,e988ca397b195047697d938602f1201a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.vcf.gz,1d9f33e3bfd889f8b00f410a69e3e58d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.zarr.zip,a0079058cae0169572c4fa17c775fb2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54735-6143STDY11462629,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.bam,b7f84052146fa48fe23d73228476d594,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.vcf.gz,415ecf8682850c6e30b89fc58118b601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.zarr.zip,748a0b4d4434140bbfdb42239e27995f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54737-6143STDY11462631,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.bam,1dd2a45bd7fb842a08766bbb82328425,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.vcf.gz,de46ae3d45f92387f146374b6ac35304,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.zarr.zip,bc25ffb94f6a12e4becf3fe6370c9109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54738-6143STDY11462634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.bam,5a95fa4ace2d194b5e3e7b1b10f207fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.vcf.gz,2cc03bd1f90693217a52062df7f977be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.zarr.zip,1e692d9f46cb8d1b4bdecc9f5aebaeeb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54739-6143STDY11462635,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.bam,cb8d83ee7ded8c3311fb245c1f43be83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.vcf.gz,58884dbc5ca93deae56f3a5eb2a4014c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.zarr.zip,c6376fe4f39eacc0061352897eb4d34f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54740-6143STDY11462636,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.bam,f780aa22b6212f9ff1e53d5eb1d739b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.vcf.gz,7100de624a730e65e187185765402384,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.zarr.zip,1125057d6e96c613217b91b8cf2075cb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54741-6143STDY11462637,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.bam,10381cfba8c25737b83c3662c4ff710a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.vcf.gz,e110fe70945451ae539788cda86b03e4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.zarr.zip,2558c1c5648ff4bbddb200ed97c5fa42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54742-6143STDY11462638,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.bam,f28667b7a6099836beec6a34d8c4c2df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.vcf.gz,2d10c63ee958f99d9bbe55daec5f1066,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.zarr.zip,efe7b5b02cc4485b8814a876a58a1cb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54743-6143STDY11462639,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.bam,54776a4d1b522847668c4c9186b335b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.vcf.gz,7a311d4605fea7f4e23f9e2e7beabe6e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.zarr.zip,ade90a4e1190973972492022a7090e7f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54744-6143STDY11462640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.bam,27032dcf1b52b85faf8da6a24e149a65,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.vcf.gz,6d30bf6c8af8ce2b4435e395e40e2584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.zarr.zip,5b875048ce91ed4efae79716ae5bdfe7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54746-6143STDY11462642,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.bam,75e233b4f079d5d31fdeca61860653d5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.vcf.gz,cfe35b558d078f3f2524b7b1bc8167a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.zarr.zip,b863d1227294806042611c9708e7304a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54747-6143STDY11462643,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.bam,0d60b4ce41a1ef4a08d9869e3780bc76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.vcf.gz,abfc791d558667d50b16696cf7d71189,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.zarr.zip,f567458bfa7cea006e10e5e78ad5521e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54748-6143STDY11462644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.bam,7c5846f930aa65fe1bd605788e6bc689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.vcf.gz,3099f80f2a1c3867403c5750235621b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.zarr.zip,fd5093d7ce78c539981807c2be9b2f49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54749-6143STDY11462645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.bam,a088b537bf0a1a22f7539180de2ef2d3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.vcf.gz,9cc841530315c788964f8cfb1de80be7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.zarr.zip,f18fa7cab61223c4acb4ae1363ea4836,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54750-6143STDY11462646,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.bam,3c489231cb051176fec8246057844447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.vcf.gz,909277c4561146cbba9888cb63cf0681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.zarr.zip,b8063a17fa1173f2af0372f1158e038e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54751-6143STDY11462647,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.bam,093e46d7835a0232c47c9018c591b4b2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.vcf.gz,dfe9702e7b5c5fd1b5b84bc03ef03876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.zarr.zip,87f2e506afa7ce8d0c8701c6d34ec8f2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54752-6143STDY11462648,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.bam,829eea96de66746b38b855a786f1cb02,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.vcf.gz,43fc868cb2fabb1d50f5dc5bffb72d1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.zarr.zip,5274a1cde34e9165c364bc9ca225cc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54753-6143STDY11462649,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.bam,39e51620e801abb25d8ad823c81307ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.vcf.gz,64ce24ac62736da39b1df9ea9dc70034,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.zarr.zip,d31066b5c86d56a0dc83ea1bea4ebcfd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54754-6143STDY11462650,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.bam,d82eb44300462db4e467cea91882714e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.vcf.gz,625f5b02cbd9874c538b481b2ec43a63,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.zarr.zip,dc293a8a206fc9ab8b59e5df9169fa66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54755-6143STDY11462651,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.bam,76883ffcdbb034c6f17684f37c3449ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.vcf.gz,b9b33c954162be5740647fc1a7f06f1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.zarr.zip,0b692c97936224019ae426f4bf4abd6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54756-6143STDY11462652,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.bam,fed6ba305fcdc9d9f61dca91e69d144b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.vcf.gz,26daa7a8c970f9a682d3c24f6804b31a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.zarr.zip,d61571987b924cddb48b740f972d627e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54757-6143STDY11462653,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.bam,7f151ce5c4016b1d06f8d64f11e4b78b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.vcf.gz,b5232e85050161256c2e0de2004e537a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.zarr.zip,a99ede4a045c00764a0e5e5d759e9241,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54758-6143STDY11462654,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.bam,29a19c28855fcb5e8209fdbc0594094f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.vcf.gz,9466482497115165b98068fd5f943291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.zarr.zip,63eae7007e2c8c9f0aaca00ef91dcea9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54759-6143STDY11462655,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.bam,23df1052351cbf1d8f45b4bb0bb5ceea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.vcf.gz,ef0d350e13b18c18ac797ccbf81ffcda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.zarr.zip,fa93eebb865cd154ab16b792296e45a0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54760-6143STDY11462656,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.bam,919d4b0537340ba8886b01fe9a560aa4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.vcf.gz,cacd854e85a485704058e4d344ea35d0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.zarr.zip,5fed219e3589c056236c43d433ea0bda,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54761-6143STDY11462657,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.bam,d7391220704452c9e081cdf097ea5392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.vcf.gz,3e4543a68ddb48a26b62003edec9dc96,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.zarr.zip,5a9314aaed5fb19bff8daa8592304f0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54762-6143STDY11462658,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.bam,359da51d06736b8a0ef06fbb78b89496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.vcf.gz,5799292d3e1d223470a915beb6f3d8f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.zarr.zip,190a93017194ddf68a4e870574e458dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54763-6143STDY11462659,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.bam,8b375a48e2c3c386ed4443b5aa083f7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.vcf.gz,3dae6d6036e54f15c0183c4d7fd2028c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.zarr.zip,d8b6e8edbb8fedc5dcacc48b9f778d9c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54764-6143STDY11462660,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.bam,b46de9db61b03c7eb4bf96a824fe2c39,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.vcf.gz,4a60eae040f8ac1247422415cfd23eaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.zarr.zip,8053a7e9f35175e9aa9dfeb3ea6908b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54765-6143STDY11462661,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.bam,76ccbfbbc17f0fcde81587f276936704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.vcf.gz,70fcde7f4d61d76ffc279d0f1e5110b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.zarr.zip,9f2235ec2f45a9845df52d4f67732fe8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54766-6143STDY11462662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.bam,f78ca17f2658fd1ada134dcaaa708f83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.vcf.gz,167969e9e9b33459ed2a228a09472eca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.zarr.zip,6b2eab61c80ccff27fd1630c2ec2e78b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54767-6143STDY11462663,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.bam,d0373bf618a707f0728e05c6120df03c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.vcf.gz,5b81fcc9940f023d897d4accd1e0e748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.zarr.zip,d46d7c027611dc9af245f6c7e33891f4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54768-6143STDY11462664,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.bam,1db9ad31739f8bdc11aaa38a64445ec3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.vcf.gz,5baae69e036f5fe792d95f377bcd9353,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.zarr.zip,d1d24e663e132e6e4ee6c9d71765b1fc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54769-6143STDY11462665,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.bam,333d710a4f961a8d145f9cf41d5f3d5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.vcf.gz,6f212ef8404b58dda782253aa3fb3323,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.zarr.zip,d351a471fece4823806649af7d213850,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54770-6143STDY11462666,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.bam,03d94b1b2ec54b5d3eb3dfb61e1a1e52,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.vcf.gz,71186c19719ddda1e49aae5ea6800e3d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.zarr.zip,28c5315a89ed4fab8ee99675f3b34887,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54771-6143STDY11462667,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.bam,c89f0db7880f6f0a47a01fec02370fb5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.vcf.gz,c1f19e1e47da600c279b9aefca33c1df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.zarr.zip,7d3df0fe8b6bafbbdca6c7a78193c536,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54772-6143STDY11462668,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.bam,8ca58f054d19f77ab586e514a91d5751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.vcf.gz,f170659cf72164028af56258f67f9318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.zarr.zip,a8cfc0099c431dc7cc53db9486ab0275,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54773-6143STDY11462669,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.bam,754982f6e6f8bb68028892289ab94645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.vcf.gz,ed507330ed7ba88ae1fe3a3ae80b1b71,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.zarr.zip,cec0fcbbf4b6b53cceb84f4df6691ede,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54776-6143STDY11462672,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.bam,1086453a4278074c8a3e2209b2b18e4e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.vcf.gz,df52cb01a654120a096ea53b0a58f346,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.zarr.zip,c628e6779ad9e0cbe19760fe75388129,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54777-6143STDY11462673,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.bam,6964aab6b8de6c49f86d7d15155e81c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.vcf.gz,34864908ff188ca83cbd69192dbd6aff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.zarr.zip,63af08046ce067bbf228d44faa5edc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54778-6143STDY11462674,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.bam,ce9725e2a5a2209ece4573a81c400fda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.vcf.gz,091634a24d1251dfae3a20d3a95b63ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.zarr.zip,25e16f9fd6c2e7de44632ee490c4e990,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54779-6143STDY11462675,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.bam,f626d20f0ad99418a3cca3e51c609af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.vcf.gz,10aa6f5716382599370e3532860c9493,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.zarr.zip,740e4d7a7f082a0364109cc391446b4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54780-6143STDY11462676,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.bam,5eaf5ccbcf1f0f89e68470c6eb50c392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.vcf.gz,04c6aab85ecfe42f9d174155411bfde3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.zarr.zip,fe380a0cf7651958cd65cad3fa9e34f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54781-6143STDY11462677,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.bam,049cffe317896849b94a8808971e1834,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.vcf.gz,66c08796d924e4c50d060eab459f9fc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.zarr.zip,7f015ac8da83427420ad5ec433cb87d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54782-6143STDY11462678,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.bam,8cc293a147b49e39d58dca16ca74d99b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.vcf.gz,6dd3291ad4d14dee86ea30220e3b408f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.zarr.zip,f7085bdb09f605f057eea5108e214d0f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54783-6143STDY11462679,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.bam,3068ecf5cce1b6d6b09bc42372c2d297,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.vcf.gz,4f36ce9e89f0f39874406a1c5552a343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.zarr.zip,8a713081e1ededb6dd34b6ad200ae68e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54784-6143STDY11462680,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.bam,54be49961134fb5dde0a7e582b363ba4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.vcf.gz,936ad60d8d94150bff18a06e6ecf99d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.zarr.zip,38b142ae068b138d5accd8f331d20ddf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54785-6143STDY11462681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.bam,090a00cdb01bc000f4b9f7bfe4ab18ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.vcf.gz,0635ac44e69dde8c98ab51bbcf47aaaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.zarr.zip,693dd377c85ebae048dadd3400d52394,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54786-6143STDY11462682,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.bam,0979c8b2314f3fdfb7d77b5460a7c0bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.vcf.gz,c6f349c715a85d00c5df805a17948b6d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.zarr.zip,0094d5843f2f578631d3facccc0c9f4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54787-6143STDY11462683,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.bam,bda1f2c9353535007780d45c4d01214e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.vcf.gz,cf9a0e6fd528d8cf802ccd1f79454f4a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.zarr.zip,9c7e88b7d50b3121f263b4addfaf97e1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54788-6143STDY11462684,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.bam,577771defd36e6648d4ca6bfc9748bd9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.vcf.gz,f89af859591ec1cb892295b2da085cfb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.zarr.zip,f0313df866bf7145e81d03c4e96fe59c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54789-6143STDY11462685,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.bam,7ebb93a9067b2502299143fd94b638c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.vcf.gz,7d81a2486d112efd94feb32390c41a46,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.zarr.zip,97c326fce5635f9e54646a20bd755b7b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54790-6143STDY11462686,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.bam,1b277dcc044c67d6ce15d3f2670b2a20,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.vcf.gz,59e8a3351025405f196ac47fa55a2bad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.zarr.zip,688621d8b0d53a907489d1ad92b28be6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54791-6143STDY11462687,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.bam,48ff88de855b583f647d33b4b2335714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.vcf.gz,a072ed0463c1eadc7b8d5222a0e716f3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.zarr.zip,02c401166a2714de9a96bda8bdce4039,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54792-6143STDY11462688,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.bam,ba45aa54572de7349fc83ed2ca2005b0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.vcf.gz,30833aab98207ae95994e187d7936ec9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.zarr.zip,78009bf6b58ffc9ed73c042edbf7d0d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54793-6143STDY11462689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.bam,bf50ecd477758664eb0aea94210d6f98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.vcf.gz,b38b974e7a63a412cb90b61613f95bee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.zarr.zip,6229124b983d34b05cd9717ee0bc8f6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54794-6143STDY11462690,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.bam,36aabf8adea964b42215436b706c9af6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.vcf.gz,fbc7db27d5a672bb5c342b0b751fde59,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.zarr.zip,875fd82d196d1df4f51ebe1f636a70b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54795-6143STDY11462691,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.bam,f90def20e01822ddcf1702004670d5f9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.vcf.gz,b6e11692d575526b1240ed7cf53c3e1a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.zarr.zip,a3a1b5e0154dade049d7fbc9b4bb94c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54796-6143STDY11462692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.bam,8571509b0ec0e48b491e310d41355d41,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.vcf.gz,13777feff4a693b903821b900a97205b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.zarr.zip,9f8f715b3027f5144ac0f69dc1f0728a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54797-6143STDY11462693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.bam,3d087db5ada4365261d7f437e82ce400,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.vcf.gz,4d54e973e281507651e8f9829d6bac38,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.zarr.zip,134c0ad3083068ed41e008b28e36a13b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54798-6143STDY11462694,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.bam,0667c71147f542182a85a58b9ef4b6df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.vcf.gz,61cfd3e5b91e8ee94f2a4ba9d7417435,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.zarr.zip,887d65d1415229a784632bd315e7c95a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54799-6143STDY11462695,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.bam,412ad6fa79f6ca74306ac4c5a23edc44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.vcf.gz,b702bb17315746743080177204f2c9ac,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.zarr.zip,042e3d89c583ae83136942472a1481ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54800-6143STDY11462696,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.bam,84e677effc18a1df8a4c227c401c54e5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.vcf.gz,2bc87b8f408249fbb6b92198a338f8ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.zarr.zip,1dfbdc81ef60fe0bc5c33e2b9bcef207,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54801-6143STDY11462697,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.bam,bad8eb895c47608be5b376425e1c3626,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.vcf.gz,f4123553eb80644abcd8a489646c2c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.zarr.zip,429126ec61c17cc51c5fda6439f162f6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54802-6143STDY11462698,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.bam,1ddc9860a81cfd1ef8937ac03e17f8bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.vcf.gz,758e5671daf3d46aaebdc04f19e84748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.zarr.zip,c569097f5d586cdb5fa6e52ef868b29c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54803-6143STDY11462699,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.bam,a0034e75dea207cc6d80e460f5438294,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.vcf.gz,0e140ea5eef544e9a452246ed9ee16c6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.zarr.zip,38e34f96a4107e6597cb12b5be323669,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54804-6143STDY11462700,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.bam,a877be3051221a855143429ace7e769c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.vcf.gz,d990e3b63c8633f373b0ca5835c43943,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.zarr.zip,7583cda3e61c2b8405ca9cbcad55d2e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54805-6143STDY11462701,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.bam,3359b332ee76a353121645d8a2ef841a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.vcf.gz,f44736a78fb8b64d5ae3136fdd02013f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.zarr.zip,b80e514a9edc4b002042f0202f96d179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54806-6143STDY11462702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.bam,dac6e5beb0d0b82a1b2eb6b1f3ca7059,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.vcf.gz,80e84d85ac9d4404c714ee1f02b4b15e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.zarr.zip,0d2ca1d0acedc076d3aee68ac78a0651,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54807-6143STDY11462703,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.bam,98160f2b46373e0c29e6da9388b62c35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.vcf.gz,4234ed76792df6400b63977b5a648565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.zarr.zip,4ecc416a785d0e9f4375c16f52b7b14d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54808-6143STDY11462704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.bam,6f90b484cea0195ba13ef6fe266397de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.vcf.gz,80fc8f7487a284e8e5e1bd80b55f2709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.zarr.zip,583afa33247bce6f5649923417236e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54809-6143STDY11462705,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.bam,428011768dcd4d46c308cf0e564139f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.vcf.gz,831f9a56fd58d95b4fb1411b68fa77d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.zarr.zip,dc22d51f893f143e88a8e0206ac678e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54810-6143STDY11462706,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.bam,4d28ebc0553cafcb9e93184de3e6b9a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.vcf.gz,79c184f7e116505a336e9a97e77a5d18,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.zarr.zip,9865f69da3183a4c1cfd6a00d0b07cb6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54811-6143STDY11462707,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.bam,3a01930cbaf0d45ac0f19d90966c5010,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.vcf.gz,0a688869672de4057f6341fbc7a3ae17,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.zarr.zip,00b59aa23f28e785188df4df5ceb1423,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54812-6143STDY11462708,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.bam,88da908823034a7e296f54e38f9682dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.vcf.gz,7bd0e0489421a8094831c84a46429c8b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.zarr.zip,fe1379198221a30f8d6e4a6607afcd62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54813-6143STDY11462709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.bam,4bb3d1071a165e053b6e14d43d317381,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.vcf.gz,319586cc7e5075b64bc2ee2c88041e32,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.zarr.zip,7cb1eab0c7f39d7929b84c073984023a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54814-6143STDY11462710,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.bam,05c9dd486509a468b778b27d132122b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.vcf.gz,0f94286ca852934d7fbe1a8ed9f3ff15,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.zarr.zip,562ac025030b2962c83fb51f9b732c31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54815-6143STDY11462711,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.bam,d5562260e4f6cd4acfb17f86a47a8bff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.vcf.gz,dff5eebfb4d0e06afbcc001728d9b288,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.zarr.zip,3dc27b77733cf1e6b04c0d4f509535a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54816-6143STDY11462712,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.bam,5eebb2107706d48ffef88db3865466f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.vcf.gz,61ae89ca7e9575447e4c382cdeec2a5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.zarr.zip,1d216c4179827dd1c6f4341a4c6d1b5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54817-6143STDY11462713,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.bam,0cd292314b762d31be643565e8fad0b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.vcf.gz,d68dba2003cd9da4c5c90004d4e5915b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.zarr.zip,0a55dc962795b462daf3f79326c97586,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54818-6143STDY11462714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.bam,aae9fa1bca537c1b3bd78241fb93460a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.vcf.gz,6f249d984650616c8a1bdf40cb10d172,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.zarr.zip,966b796158fb98fc45ea63efa03042b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54819-6143STDY11462715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.bam,477f16d6869ae9bf1537107bbab23ec1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.vcf.gz,352d00f7ab7cdb91e6dd20f44b062373,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.zarr.zip,0120dc29ea52999ab5cff5838ec11841,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54820-6143STDY11462716,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.bam,79490f8efe60912c46d3399820fb1e2d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.vcf.gz,3377984a685faae60a4fc899a5a34b5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.zarr.zip,1fa67776040580012b3b9d6311aaa902,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54821-6143STDY11462717,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.bam,6d4193c21d29d89bd28f68cc38de5fb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.vcf.gz,096b9a813015dd689032737d78ce8cff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.zarr.zip,cc92897456b189492a046748dc54649b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54822-6143STDY11462718,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.bam,eee3ce0584d1dc748836c14d6d0921ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.vcf.gz,e048a1077e6b7157e9e634cc521b4f72,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.zarr.zip,70a94f7286b53c366044452829a3b097,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54823-6143STDY11462719,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.bam,8e1fb9dfa1a14e50f99e7d112a47eae1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.vcf.gz,38b1b597fda142810e54c0a77d2e0eb6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.zarr.zip,e21a7309d1ef489498739cc55ec439ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54824-6143STDY11462720,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.bam,ead93fbfe4996d0c8378141640c70c3a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.vcf.gz,563ff1074a076be0c339b2660d8662e9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.zarr.zip,33b745e2e79ccf1dcea97b9703eda33c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54825-6143STDY11462721,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.bam,cc33dc7664c46e9cc095cdd54af4f6a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.vcf.gz,23107a4f1da02dedc7895eb16a82ade2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.zarr.zip,81ca76214a9ab961066ae1acba2bf68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54826-6143STDY11462722,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.bam,93a48db148011753cb7d9c3dc80e531f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.vcf.gz,e844dd03ae3df36a0e15bd5e99da0354,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.zarr.zip,008b74a16038b89a9078e48cadd4da5d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54827-6143STDY11462723,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.bam,d88112a68497fa8cb06147704d7feb6f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.vcf.gz,9e3589d09a428ad4769cc8bc5c340601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.zarr.zip,9736ab44c9457fce50af034373fd672a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54828-6143STDY11462724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.bam,3fd2a403f97c5fbc0844a5b85e9974bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.vcf.gz,d41a8f2436441df566d87db7d7b6915e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.zarr.zip,8ae9bb1cdc2ec4da9ca22e517b53ed01,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54829-6143STDY11462725,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.bam,971a1c4f3cd0462dd2a7f003e4294f94,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.vcf.gz,41bcea2b7beefe54d535c28e96206692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.zarr.zip,66b3f639ade1532992b7381d91118e07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54830-6143STDY11462726,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.bam,95440c3260374bc620dfb50c171570c2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.vcf.gz,cfa1026a053cf8e0594f8545ddd2eac1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.zarr.zip,d2409a99225bdaf025423e94782b5edb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54831-6143STDY11462727,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.bam,96b68b75ddaee170ec6b4e0462691132,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.vcf.gz,142c91b415497eb2309252f21a7c44c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.zarr.zip,a25c9d87719ea365a207dc379e0bfcf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54832-6143STDY11462730,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.bam,5d8d22ed098aadd4302e42d4956ba0c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.vcf.gz,16cdf71943b7cdafedcb248f77f323a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.zarr.zip,12793c12e4d155ea0e0f8d8d03674c4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54833-6143STDY11462731,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.bam,2428a74977ad359bf0279435ea419876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.vcf.gz,2b8f30844840e8d951e1678082c74fbe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.zarr.zip,710c20af514d8d03a4410753da146889,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54834-6143STDY11462732,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.bam,64cd43538b4edef92f5ab1082400dabf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.vcf.gz,dc6747e7ff6adbe5fa1abb14de3cd4a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.zarr.zip,0d3b4b3f82899cb34852e44e828ed354,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54835-6143STDY11462733,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.bam,e2495fdcdf5f4849bd308fecc21039e8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.vcf.gz,fccd46867ead1f9dacefa2a9ca7d66a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.zarr.zip,5a5d66f8ca562dd11a89b76697246ad8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54836-6143STDY11462734,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.bam,2391d1e671d719daec4fc6de187151c3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.vcf.gz,3bb370a16ae2b7cc7cb4baa123172ffa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.zarr.zip,cb36ece63b7d8179ff9e331cbf0de5fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54837-6143STDY11462735,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.bam,82f81003cd5cf1e07d7f703df777df33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.vcf.gz,99a2f194cdc4e16e92140ed93a1ea10a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.zarr.zip,3862588907eb4b9e3e2a503890e80b62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54838-6143STDY11462736,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.bam,9dd87018fa68bb9b43c3ac8dbc31ce64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.vcf.gz,af7c18728fbee4cee3b12fbcdeebf28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.zarr.zip,efdcdce1b120e0861085f2b23d44159d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54839-6143STDY11462737,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.bam,70efa624cb36277b5b2066599598cd35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.vcf.gz,932794832fcc6b3e3c41c211c9ebae1d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.zarr.zip,0eb9d6e1d5181c1e2eddc104d7080d5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54840-6143STDY11462738,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.bam,1f9da8f24df85b598fab950a2287273f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.vcf.gz,8aec06bd23966b3de8db876896fcac07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.zarr.zip,75d101df0a102eb01d4f67532bd12384,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54841-6143STDY11462739,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.bam,eca2800141306919d04113853864b86c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.vcf.gz,60bd8f60eeadbd4f96a1a8a96fcaa000,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.zarr.zip,21a577d6fb9eb475de2ed497214c879d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54842-6143STDY11462740,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.bam,898fa9e4de027ba097bf44890ccbc123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.vcf.gz,74f5c4be317e11c5f4ef083d9a8e38af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.zarr.zip,c62892b7005da8a377dd801cd15c27d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54843-6143STDY11462741,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.bam,7524b2024150e53ff7b06a72594100ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.vcf.gz,8de75e53c2b4c8d77ab26ebee3229c1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.zarr.zip,daf5600830fe6344c3b99a0f10dbc95d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54844-6143STDY11462742,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.bam,f93f68f964bfdb287958a65c25dc67a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.vcf.gz,76e35d5042f4dbb5a0fc07c3de575496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.zarr.zip,b9feee6dc38f7a83c3daa8630402e8b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54845-6143STDY11462743,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.bam,e3c6050546c5930209476176dc88d247,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.vcf.gz,101243be031effd24f5b44a9c015c3d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.zarr.zip,bd91448e0ccc062f482640a91c8edd97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54846-6143STDY11462744,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.bam,e65953560f8ccff294d5a0e9289a29b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.vcf.gz,09e425a296e025ea104cf5fe0ca75608,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.zarr.zip,cfbb402c9b1817646d298647ac94580e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54847-6143STDY11462745,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.bam,e6e264790559a0e3d9dc1efd78309d9b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.vcf.gz,f20cc3f08154fb434d2bb751db36944d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.zarr.zip,9c60f04095afc7128d4694946a03bc64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54848-6143STDY11462746,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.bam,2d5c45e86eac932d5a4303f4889f9634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.vcf.gz,e6f1a8b3601d9c0b60cc2a969c151693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.zarr.zip,b428a84c00d7b9b3ffd7818df560d206,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54849-6143STDY11462747,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.bam,b740d34c3aada650d3f84856fe21f581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.vcf.gz,8cbaae1540fed7a59a2cec014bd5b94a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.zarr.zip,5e330a709a0288513a0e74486c53e6ea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54850-6143STDY11462748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.bam,c75f2db2dfa02c0ba9f6f862c63e2910,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.vcf.gz,8eaa2644b0a026056049c44966d6691a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.zarr.zip,5f19974e1c65f034b3d90ae5067ec532,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54851-6143STDY11462749,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.bam,b387b3463bfd6cc55042bbe4e3faa146,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.vcf.gz,ba682bc5a4c9841dbef3e2a71fe6e3f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.zarr.zip,b4bcf6c7a1653d453d0a279e78fca1e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54852-6143STDY11462750,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.bam,9dab7ddb8915fac6931ca857d44be415,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.vcf.gz,ae5d282ed8f889022ce94c559aebc7aa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.zarr.zip,86674336f08fae8af7079948bc10b8a6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54853-6143STDY11462751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.bam,60a7f06d9b39315c89b3bf80d5d2bfa2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.vcf.gz,33c91cd3fc7b1a01f5c1c78cc7745508,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.zarr.zip,a1eedd448be699ecb4db56d8a89818c0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54854-6143STDY11462752,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.bam,a5dcb044d18069233666586a2f499f23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.vcf.gz,351f3d39be752515d589e4b6e565d0b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.zarr.zip,a6aef2cf4fce39c9acbdc94785d83b41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54855-6143STDY11462753,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.bam,5669deae51e1096266ebe61085a98a4c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.vcf.gz,dca55e44d7525b11e457507436490ed3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.zarr.zip,3ab22bfcbcb110e252fabba0e20e1d67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54856-6143STDY11462754,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.bam,18e4ea568489f1a6574cdc08e40cb7c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.vcf.gz,a917806551b1e85eb9a72c47e3d9837c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.zarr.zip,b046c7881b9e6e66c4a0819993d06d8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54857-6143STDY11462755,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.bam,668e054d5fa42c74e3be0e0459157584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.vcf.gz,ad413be118b12db8e58d00a43ace3170,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.zarr.zip,a33b439f56a5dfdc55a79802ef07d6b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54858-6143STDY11462756,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.bam,126333fe08fd191d03798b9275ee0b90,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.vcf.gz,d56d727e5118adb7638e6ff48029215e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.zarr.zip,a924b373967f18e6eec44f87cd56a35a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54859-6143STDY11462757,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.bam,ada832de7351d6b5b5800f83db8a877e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.vcf.gz,56f1c584321fe4c70d82be5a267916d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.zarr.zip,c22bdea09592288ae72d76ae39fe9ce8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54860-6143STDY11462758,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.bam,d10c077aaf856634e59cff4ce329c56e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.vcf.gz,1056d05abc874d913c109afc4baba185,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.zarr.zip,1e1cd9940db1e36b9a21dc3354fed2f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54861-6143STDY11462759,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.bam,642c98b6ad0955276dddf8269be12e7f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.vcf.gz,afe22537f4d9ab0603897b176512e40e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.zarr.zip,9c69f379cb5d8dbd021190e9c24d5f68,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54862-6143STDY11462760,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.bam,c531ce2bec5518bdb0a8ef19ca07d497,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.vcf.gz,d706c78e8723e49a383087c7f6ab26fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.zarr.zip,960a4127e1b9047c2137101443918b23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54863-6143STDY11462761,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.bam,cc6e3d1d4b7cc25428f35553afa32b1e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.vcf.gz,a7d66c8a9e5f0c7b0f57cc1d8ce6bac3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.zarr.zip,08a7f4f72ed2bca6236d8179af9611b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54864-6143STDY11462762,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.bam,00cb78c02041989b869ab0d87154373e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.vcf.gz,e445bef3e7a3fe349532c4a160e40123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.zarr.zip,1162b7d7a4ea401000915b5a6c51e7d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54865-6143STDY11462763,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.bam,7ecf56567499365322868e692361a49c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.vcf.gz,dfbc05f835737bdef4087e7564f741d9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.zarr.zip,e1c86ba468fa33062e02a9c7e87c2108,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54866-6143STDY11462764,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.bam,19fcdb92d4b594dceab977c5d5451a43,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.vcf.gz,ba7e07033545307fd80da45f252bd480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.zarr.zip,d5ad148bb33b78dfc7e45b1fbcaae0c6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54867-6143STDY11462765,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.bam,19d7ed0ccdc0a1e0584c8ffe6bb5891c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.vcf.gz,808f10ca2d7c31096c841a9a92fe769d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.zarr.zip,df2136606990a2601424a0b2e9f1f6e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54868-6143STDY11462766,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.bam,1d0c465e066505f3254975c9f82ce8be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.vcf.gz,234e9eaa4da91d60d55009ac8dbd5748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.zarr.zip,a3afee3a3278b3f778c1ea1e6605658b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54869-6143STDY11462767,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.bam,9567c5ab79100bfd90347c90dc0adeed,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.vcf.gz,72941c254f5f738b426fb5d93df800c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.zarr.zip,2a11ccf863b58f8162c63fa852c1f67d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54870-6143STDY11462768,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.bam,f86ac9aceb47a85940b575cb94df6057,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.vcf.gz,155ee0361b5080b675528082d587ffc9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.zarr.zip,d91100884242d9134b3009042be610fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54871-6143STDY11462769,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.bam,019236241d43ba4e594b7e9907571f64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.vcf.gz,4a3b752064c4c460c06c02b251b3b31f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.zarr.zip,c7256b883d301ae702a13f706e90fe66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54872-6143STDY11462770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.bam,afc77f27da1eb1f948e013f2948e2702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.vcf.gz,436df5f37fcb0101bd92cd9722a85f53,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.zarr.zip,2d7d3f9ef9a88bc7dddfa212f5a6c8ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54873-6143STDY11462771,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.bam,575d27d9fa1bee7cc798fb902ce017af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.vcf.gz,eddd41134440d0f9141f94a5d03dbcfe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.zarr.zip,ceaee9b301ab1b7958c408f63f32312a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54874-6143STDY11462772,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.bam,fcc30a419851d486bf9413d6625decaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.vcf.gz,b4c997527df3f003be3cda3c39ee2953,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.zarr.zip,14cc809c09711c73bfe4073ec022699a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54875-6143STDY11462773,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.bam,959b5ce27dc3d1353fbe879859f66bca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.vcf.gz,220d1c866a314d5a9c0d5d99b24edd8d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.zarr.zip,e0b7e311dd8cac047edc114cace35645,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54876-6143STDY11462774,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.bam,b6f3abc0c8bb7d211d6bd0995843fde9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.vcf.gz,84575a95e2f9e6b02149b6cd41de1d99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.zarr.zip,839cd2a821def7b731b689e624801280,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54877-6143STDY11462775,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.bam,e75a2f48da3cbff3e01b94f16a5fd324,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.vcf.gz,032ee7ddfee2a3b8dbd912cc104bb509,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.zarr.zip,b820237457e9c0c9d3132cd5eb275f36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54878-6143STDY11462776,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.bam,63b3809fa65ab76e91d71b2ada246b87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.vcf.gz,f256a4632eb91e57291b9ee1a57bdbc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.zarr.zip,b1f65f98c99fe7b378f9a02025ac8e6f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54879-6143STDY11462777,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.bam,aff1928a1404861d7ead11a18d03c32c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.vcf.gz,13d8b09db3cd76936b0c5e00aedc3f84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.zarr.zip,76d729e03f524cbc93e5fda14051f66b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54880-6143STDY11462778,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.bam,5e599526049a41b11ccb3b3cd6bec0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.vcf.gz,c558a0db4ca49dd9130be41685844df9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.zarr.zip,6f95310d6b7f0b1f50fedaf054867b29,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54881-6143STDY11462779,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.bam,7d557399fbb46aa6dcb0fa3667520a57,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.vcf.gz,e684ae3760710859c9a74dfa27447838,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.zarr.zip,407fa653a03118ec2c4b6fbb6bfe8b16,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54882-6143STDY11462780,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.bam,88bb6d8663cdc8fa2a3aa43da4fe8318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.vcf.gz,4555fe31188b017a092bf10f24a7e0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.zarr.zip,2766be38e3d9162d462cbcf6f76d8929,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54883-6143STDY11462781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.bam,8ed44d33044c89302aea16005e01f290,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.vcf.gz,357b39f1d307114c1f2ca3606ad3290e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.zarr.zip,6a09c43081bebb975135cb022363dbcd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54884-6143STDY11462782,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.bam,9ccf79f6d59cf3fff1741c2523762fde,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.vcf.gz,bd9e964d6554700b74f9c7d17fa6c3bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.zarr.zip,3dbae1efe380bd9e33434a092f59ef6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54885-6143STDY11462783,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.bam,bdb1460888d7252ede0530d56995d2da,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.vcf.gz,2a3e90b307f2bfcc4b92f1618a603a99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.zarr.zip,39391d15360adcc443c24f645714dab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54886-6143STDY11462784,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.bam,79b336d94d7eaf3b862631f27c0ecf04,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.vcf.gz,5c470a9e0effd10e44ed04bce6e27556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.zarr.zip,30a2697c7e30e3f76092d3e8b16fb5d0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54887-6143STDY11462785,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.bam,07ced3802dd70f25031d08361ea063e3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.vcf.gz,82e08f3117824029c4077c118c950e37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.zarr.zip,9d8b45a667efc974d5209c849044ad42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54888-6143STDY11462786,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.bam,6b0cb7e99e028a94d14fff097ff18921,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.vcf.gz,b70bb5bbaeeacce580e883adddfc663f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.zarr.zip,4ed5740b619a5b0fec9f9a3a05d93c04,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54889-6143STDY11462787,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.bam,3cc7eacef330edc2f930ee59957c036c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.vcf.gz,b6fc34e58df64f24b6a0a6293158a4f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.zarr.zip,5755eed38f36b2cc96d0c4474cdedaf4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54890-6143STDY11462788,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.bam,3f5ae3d13d99457893849b06f1b79183,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.vcf.gz,8389e8547c3d8890e55d0b35fb62b644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.zarr.zip,62041e5fe5b4aac9c6446640491d56c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54891-6143STDY11462789,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.bam,6e57ddf5631c7ec722ba3997c0f807b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.vcf.gz,3c27898b5c3772e506670832c5dd7efc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.zarr.zip,5b476563ff3b0b295757c1b0586fb84e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54892-6143STDY11462790,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.bam,5766579d8bd76a0091f1745eaa8f3baf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.vcf.gz,d8a7afe16889ff50fd09e016cb3c2c5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.zarr.zip,97709d7d2c81bcadb26488ef8eb108d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv new file mode 100644 index 000000000..ece09c8b3 --- /dev/null +++ b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv @@ -0,0 +1,220 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS45974-6296STDY9478582,329,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,UKN +VBS45976-6296STDY9478584,339,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A/2",2019,2,9.110,98.878,UKN +VBS45979-6296STDY9478587,920,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,3,9.134,98.888,UKN +VBS45982-6296STDY9478589,1007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,4,9.134,98.888,UKN +VBS46005-6296STDY9478612,1845,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46042-6296STDY9478649,2014,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46050-6296STDY9478657,2043,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46059-6296STDY9478666,2523,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46066-6296STDY9478673,2909,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46067-6296STDY9478674,2935,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46078-6296STDY9478687,3109,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46083-6296STDY9478692,3185,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46084-6296STDY9478693,3191,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46087-6296STDY9478696,3325,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46088-6296STDY9478697,3330,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46098-6296STDY9478707,3932_1278,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46121-6296STDY9478730,4591,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46141-6296STDY9478750,5202,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46145-6296STDY9478754,5206,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46146-6296STDY9478755,5209,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46154-6296STDY9478763,5221,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46168-6296STDY9478779,5244,Kevin Kobylinski,Thailand,"Vibhavadi, six, A",2019,10,9.252,98.850,UKN +VBS46172-6296STDY9478782,5265,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,10,9.340,98.880,UKN +VBS46173-6296STDY9478783,5313,Kevin Kobylinski,Thailand,"Vibhavadi, ten, F",2019,10,9.353,98.875,UKN +VBS46175-6296STDY9478785,5496,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46180-6296STDY9478790,5506_1278,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46183-6296STDY9478793,5592,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46187-6296STDY9478797,5614,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46188-6296STDY9478798,5619,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46189-6296STDY9478799,5647,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46190-6296STDY9478800,5649,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46192-6296STDY9478801,5683,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, N",2019,10,9.083,98.878,UKN +VBS46198-6296STDY9478807,5736,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS45975-6296STDY10244530,331,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,UKN +VBS45983-6296STDY10244537,1200,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, C1",2019,4,9.080,98.879,UKN +VBS45984-6296STDY10244538,1363,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,UKN +VBS45985-6296STDY10244539,1364,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,UKN +VBS45986-6296STDY10244540,1494,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D1",2019,4,9.107,98.869,UKN +VBS45987-6296STDY10244541,1498,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D2",2019,4,9.107,98.869,UKN +VBS45988-6296STDY10244542,1687,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45989-6296STDY10244543,1688,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45991-6296STDY10244545,1711,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS45992-6296STDY10244546,1719,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45993-6296STDY10244547,1738,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45994-6296STDY10244548,1750,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45995-6296STDY10244549,1759,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45996-6296STDY10244550,1771,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45997-6296STDY10244551,1774,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45998-6296STDY10244552,1780,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS45999-6296STDY10244553,1793,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46000-6296STDY10244554,1810,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46001-6296STDY10244555,1818,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46002-6296STDY10244556,1826_1278,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46003-6296STDY10244557,1830,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46004-6296STDY10244558,1840,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46006-6296STDY10244560,1854,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46007-6296STDY10244561,1859,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46008-6296STDY10244562,1860,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46009-6296STDY10244563,1866,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46010-6296STDY10244564,1871,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46011-6296STDY10244565,1872,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46012-6296STDY10244566,1875,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46013-6296STDY10244567,1881,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46014-6296STDY10244568,1887,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46016-6296STDY10244570,1908,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46017-6296STDY10244571,1912,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46019-6296STDY10244573,1931,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46020-6296STDY10244574,1932,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46021-6296STDY10244575,1934,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46022-6296STDY10244576,1936,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46025-6296STDY10244579,1946,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46026-6296STDY10244580,1949,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46027-6296STDY10244581,1950,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46028-6296STDY10244582,1951,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46029-6296STDY10244583,1954,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46030-6296STDY10244584,1956,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46031-6296STDY10244585,1960,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46032-6296STDY10244586,1966,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46033-6296STDY10244587,1975,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46034-6296STDY10244588,1977,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46035-6296STDY10244589,1978,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46036-6296STDY10244590,1989,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46037-6296STDY10244591,1999,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46038-6296STDY10244592,2000,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46039-6296STDY10244593,2003,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46040-6296STDY10244594,2006,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46041-6296STDY10244595,2011,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46043-6296STDY10244597,2017,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46044-6296STDY10244598,2018,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46045-6296STDY10244599,2028,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46046-6296STDY10244600,2037,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46047-6296STDY10244601,2039,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46048-6296STDY10244602,2040,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46049-6296STDY10244603,2041,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46051-6296STDY10244605,2044,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46052-6296STDY10244606,2045,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46053-6296STDY10244607,2047,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46054-6296STDY10244608,2431,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E1",2019,5,9.068,98.846,UKN +VBS46055-6296STDY10244609,2444,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46056-6296STDY10244610,2499,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46057-6296STDY10244611,2503,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46060-6296STDY10244614,2569,Kevin Kobylinski,Thailand,"Vibhavadi, eleven, A",2019,5,9.360,98.876,UKN +VBS46061-6296STDY10244615,2688,Kevin Kobylinski,Thailand,"Vibhavadi, nine, A3",2019,1,9.331,98.878,UKN +VBS46063-6296STDY10244617,2841,Kevin Kobylinski,Thailand,"Phanom, three, C2",2019,6,8.890,98.663,UKN +VBS46064-6296STDY10244618,2889,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46065-6296STDY10244619,2894,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46068-6296STDY10244622,2937,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46069-6296STDY10244625,2944,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46070-6296STDY10244626,2960,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46071-6296STDY10244627,2961,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46072-6296STDY10244628,3007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46073-6296STDY10244629,3037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,UKN +VBS46074-6296STDY10244630,3041,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,UKN +VBS46075-6296STDY10244631,3062,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46076-6296STDY10244632,3077,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46077-6296STDY10244633,3079,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46079-6296STDY10244635,3129,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, G",2019,6,9.135,98.882,UKN +VBS46080-6296STDY10244636,3142,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, G",2019,6,9.063,98.877,UKN +VBS46081-6296STDY10244637,3170,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46082-6296STDY10244638,3183,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46085-6296STDY10244641,3249,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46086-6296STDY10244642,3316,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46089-6296STDY10244645,3388,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,UKN +VBS46090-6296STDY10244646,3396,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,UKN +VBS46091-6296STDY10244647,3397,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B2",2019,7,9.304,98.886,UKN +VBS46092-6296STDY10244648,3581,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, H",2019,7,9.110,98.880,UKN +VBS46093-6296STDY10244649,3623,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,UKN +VBS46094-6296STDY10244650,3710,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, I",2019,7,9.140,98.881,UKN +VBS46095-6296STDY10244651,3745,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,UKN +VBS46096-6296STDY10244652,3780,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,7,9.082,98.861,UKN +VBS46097-6296STDY10244653,3840,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46099-6296STDY10244655,3954,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46100-6296STDY10244656,4148,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46101-6296STDY10244657,4149,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46102-6296STDY10244658,4151,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46103-6296STDY10244659,4156_1278,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,UKN +VBS46104-6296STDY10244660,4235,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, M",2019,8,9.126,98.903,UKN +VBS46105-6296STDY10244661,4274,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,UKN +VBS46106-6296STDY10244662,4310,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46107-6296STDY10244663,4321,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46108-6296STDY10244664,4407,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46109-6296STDY10244665,4430,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46110-6296STDY10244666,4472,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, J",2019,8,9.053,98.852,UKN +VBS46111-6296STDY10244667,4488,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, K",2019,8,9.052,98.857,UKN +VBS46112-6296STDY10244668,4511,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46113-6296STDY10244669,4556,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46114-6296STDY10244670,4560,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46115-6296STDY10244671,4577,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46116-6296STDY10244672,4578,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46117-6296STDY10244673,4579,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46118-6296STDY10244674,4585,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46119-6296STDY10244675,4589,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46120-6296STDY10244676,4590,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46122-6296STDY10244678,4596,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46123-6296STDY10244679,4609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46124-6296STDY10244680,4666,Kevin Kobylinski,Thailand,"Vibhavadi, eight, F",2019,2,9.307,98.885,UKN +VBS46125-6296STDY10244681,4768,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46126-6296STDY10244682,4778,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46127-6296STDY10244683,4779,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46128-6296STDY10244684,4788,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46129-6296STDY10244685,4809,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46130-6296STDY10244686,4875,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,2,9.340,98.880,UKN +VBS46131-6296STDY10244687,5191_1278,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,UKN +VBS46132-6296STDY10244688,5192,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,UKN +VBS46133-6296STDY10244689,5194,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46134-6296STDY10244690,5195,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46135-6296STDY10244691,5196,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46136-6296STDY10244692,5197,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46137-6296STDY10244693,5198,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46138-6296STDY10244694,5199,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46139-6296STDY10244695,5200,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46140-6296STDY10244696,5201,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46142-6296STDY10244698,5203,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46143-6296STDY10244699,5204,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46144-6296STDY10244700,5205,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46147-6296STDY10244703,5214,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46148-6296STDY10244704,5215,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46149-6296STDY10244705,5216,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46150-6296STDY10244706,5217,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46151-6296STDY10244707,5218,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46152-6296STDY10244708,5219,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46153-6296STDY10244709,5220,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46155-6296STDY10244711,5222,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46156-6296STDY10244712,5223,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46157-6296STDY10244713,5226,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46158-6296STDY10244714,5227,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46160-6296STDY10244716,5230_1278,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46161-6296STDY10244717,5231,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46162-6296STDY10244718,5232,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46163-6296STDY10244721,5233,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46164-6296STDY10244722,5236,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46165-6296STDY10244723,5237,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46166-6296STDY10244724,5238,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46170-6296STDY10244727,5247,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,UKN +VBS46171-6296STDY10244728,5248,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,UKN +VBS46174-6296STDY10244731,5494,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46176-6296STDY10244733,5500,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46177-6296STDY10244734,5501,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46178-6296STDY10244735,5502,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46179-6296STDY10244736,5505,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46181-6296STDY10244738,5542,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46182-6296STDY10244739,5548,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46184-6296STDY10244741,5604,Kevin Kobylinski,Thailand,"Khirirat Nikhom, five, B",2019,10,9.043,98.894,UKN +VBS46185-6296STDY10244742,5609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46186-6296STDY10244743,5613,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46193-6296STDY10244749,5697,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, O",2019,10,9.076,98.868,UKN +VBS46194-6296STDY10244750,5721,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46195-6296STDY10244751,5725,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46196-6296STDY10244752,5727,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46197-6296STDY10244753,5728,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46199-6296STDY10244755,5738,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46200-6296STDY10244756,5765,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,UKN +VBS46201-6296STDY10244757,5771,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,UKN +VBS46202-6296STDY10244758,5777,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, L",2019,10,9.109,98.877,UKN +VBS46203-6296STDY10244759,5895,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, Q",2019,10,9.127,98.905,UKN +VBS46204-6296STDY10244760,5972,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,UKN +VBS46205-6296STDY10244761,6024,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,UKN +VBS46206-6296STDY10244762,6036,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,UKN +VBS46207-6296STDY10244763,6037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,UKN diff --git a/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..41e1c652b --- /dev/null +++ b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 +VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 +VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 +VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 +VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 +VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 +VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 +VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 +VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 +VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 +VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 +VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 +VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 +VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 +VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 +VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 +VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 +VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 +VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 +VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 +VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 +VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 +VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 +VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 +VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 +VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 +VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 +VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 +VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 +VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 +VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 +VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 +VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 +VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 +VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 +VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 +VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 +VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 +VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 +VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 +VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 +VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 +VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 +VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 +VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 +VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 +VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 +VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 +VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 +VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 +VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 +VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 +VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 +VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 +VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 +VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 +VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 +VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 +VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 +VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 +VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 +VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 +VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 +VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 +VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 +VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 +VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 +VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 +VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 +VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 +VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 +VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 +VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 +VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 +VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 +VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 +VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 +VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 +VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 +VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 +VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 +VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 +VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 +VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 +VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 +VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 +VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 +VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 +VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 +VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 +VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 +VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 +VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 +VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 +VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 +VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 +VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 +VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 +VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 +VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 +VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 +VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 +VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 +VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 +VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 +VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 +VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 +VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 +VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 +VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 +VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 +VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 +VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 +VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 +VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 +VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 +VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 +VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 +VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 +VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 +VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 +VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 +VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 +VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 +VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 +VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 +VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 +VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 +VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 +VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 +VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 +VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 +VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 +VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 +VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 +VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 +VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 +VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 +VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 +VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 +VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 +VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 +VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 +VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 +VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 +VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 +VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 +VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 +VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 +VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 +VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 +VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 +VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 +VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 +VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 +VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 +VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 +VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 +VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 +VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 +VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 +VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 +VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 +VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 +VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 +VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 +VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 +VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 +VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 +VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 +VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 +VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 +VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 +VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 +VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 +VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 +VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 +VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 +VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 +VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 +VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 +VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 +VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 +VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 +VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 +VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 +VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 +VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 +VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 +VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 +VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 +VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 +VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 +VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 +VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 +VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 +VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 +VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 +VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 +VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 +VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 +VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 +VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 +VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 +VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 +VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 +VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 +VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 +VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 +VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 +VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 +VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 +VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 +VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 +VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 +VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 +VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 +VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 +VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 diff --git a/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv new file mode 100644 index 000000000..cb6edee5d --- /dev/null +++ b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv @@ -0,0 +1,220 @@ +sample_id,run_ena,analysis_ena +VBS45974-6296STDY9478582,, +VBS45975-6296STDY10244530,, +VBS45976-6296STDY9478584,, +VBS45979-6296STDY9478587,, +VBS45982-6296STDY9478589,, +VBS45983-6296STDY10244537,, +VBS45984-6296STDY10244538,, +VBS45985-6296STDY10244539,, +VBS45986-6296STDY10244540,, +VBS45987-6296STDY10244541,, +VBS45988-6296STDY10244542,, +VBS45989-6296STDY10244543,, +VBS45991-6296STDY10244545,, +VBS45992-6296STDY10244546,, +VBS45993-6296STDY10244547,, +VBS45994-6296STDY10244548,, +VBS45995-6296STDY10244549,, +VBS45996-6296STDY10244550,, +VBS45997-6296STDY10244551,, +VBS45998-6296STDY10244552,, +VBS45999-6296STDY10244553,, +VBS46000-6296STDY10244554,, +VBS46001-6296STDY10244555,, +VBS46002-6296STDY10244556,, +VBS46003-6296STDY10244557,, +VBS46004-6296STDY10244558,, +VBS46005-6296STDY9478612,, +VBS46006-6296STDY10244560,, +VBS46007-6296STDY10244561,, +VBS46008-6296STDY10244562,, +VBS46009-6296STDY10244563,, +VBS46010-6296STDY10244564,, +VBS46011-6296STDY10244565,, +VBS46012-6296STDY10244566,, +VBS46013-6296STDY10244567,, +VBS46014-6296STDY10244568,, +VBS46016-6296STDY10244570,, +VBS46017-6296STDY10244571,, +VBS46019-6296STDY10244573,, +VBS46020-6296STDY10244574,, +VBS46021-6296STDY10244575,, +VBS46022-6296STDY10244576,, +VBS46025-6296STDY10244579,, +VBS46026-6296STDY10244580,, +VBS46027-6296STDY10244581,, +VBS46028-6296STDY10244582,, +VBS46029-6296STDY10244583,, +VBS46030-6296STDY10244584,, +VBS46031-6296STDY10244585,, +VBS46032-6296STDY10244586,, +VBS46033-6296STDY10244587,, +VBS46034-6296STDY10244588,, +VBS46035-6296STDY10244589,, +VBS46036-6296STDY10244590,, +VBS46037-6296STDY10244591,, +VBS46038-6296STDY10244592,, +VBS46039-6296STDY10244593,, +VBS46040-6296STDY10244594,, +VBS46041-6296STDY10244595,, +VBS46042-6296STDY9478649,, +VBS46043-6296STDY10244597,, +VBS46044-6296STDY10244598,, +VBS46045-6296STDY10244599,, +VBS46046-6296STDY10244600,, +VBS46047-6296STDY10244601,, +VBS46048-6296STDY10244602,, +VBS46049-6296STDY10244603,, +VBS46050-6296STDY9478657,, +VBS46051-6296STDY10244605,, +VBS46052-6296STDY10244606,, +VBS46053-6296STDY10244607,, +VBS46054-6296STDY10244608,, +VBS46055-6296STDY10244609,, +VBS46056-6296STDY10244610,, +VBS46057-6296STDY10244611,, +VBS46059-6296STDY9478666,, +VBS46060-6296STDY10244614,, +VBS46061-6296STDY10244615,, +VBS46063-6296STDY10244617,, +VBS46064-6296STDY10244618,, +VBS46065-6296STDY10244619,, +VBS46066-6296STDY9478673,, +VBS46067-6296STDY9478674,, +VBS46068-6296STDY10244622,, +VBS46069-6296STDY10244625,, +VBS46070-6296STDY10244626,, +VBS46071-6296STDY10244627,, +VBS46072-6296STDY10244628,, +VBS46073-6296STDY10244629,, +VBS46074-6296STDY10244630,, +VBS46075-6296STDY10244631,, +VBS46076-6296STDY10244632,, +VBS46077-6296STDY10244633,, +VBS46078-6296STDY9478687,, +VBS46079-6296STDY10244635,, +VBS46080-6296STDY10244636,, +VBS46081-6296STDY10244637,, +VBS46082-6296STDY10244638,, +VBS46083-6296STDY9478692,, +VBS46084-6296STDY9478693,, +VBS46085-6296STDY10244641,, +VBS46086-6296STDY10244642,, +VBS46087-6296STDY9478696,, +VBS46088-6296STDY9478697,, +VBS46089-6296STDY10244645,, +VBS46090-6296STDY10244646,, +VBS46091-6296STDY10244647,, +VBS46092-6296STDY10244648,, +VBS46093-6296STDY10244649,, +VBS46094-6296STDY10244650,, +VBS46095-6296STDY10244651,, +VBS46096-6296STDY10244652,, +VBS46097-6296STDY10244653,, +VBS46098-6296STDY9478707,, +VBS46099-6296STDY10244655,, +VBS46100-6296STDY10244656,, +VBS46101-6296STDY10244657,, +VBS46102-6296STDY10244658,, +VBS46103-6296STDY10244659,, +VBS46104-6296STDY10244660,, +VBS46105-6296STDY10244661,, +VBS46106-6296STDY10244662,, +VBS46107-6296STDY10244663,, +VBS46108-6296STDY10244664,, +VBS46109-6296STDY10244665,, +VBS46110-6296STDY10244666,, +VBS46111-6296STDY10244667,, +VBS46112-6296STDY10244668,, +VBS46113-6296STDY10244669,, +VBS46114-6296STDY10244670,, +VBS46115-6296STDY10244671,, +VBS46116-6296STDY10244672,, +VBS46117-6296STDY10244673,, +VBS46118-6296STDY10244674,, +VBS46119-6296STDY10244675,, +VBS46120-6296STDY10244676,, +VBS46121-6296STDY9478730,, +VBS46122-6296STDY10244678,, +VBS46123-6296STDY10244679,, +VBS46124-6296STDY10244680,, +VBS46125-6296STDY10244681,, +VBS46126-6296STDY10244682,, +VBS46127-6296STDY10244683,, +VBS46128-6296STDY10244684,, +VBS46129-6296STDY10244685,, +VBS46130-6296STDY10244686,, +VBS46131-6296STDY10244687,, +VBS46132-6296STDY10244688,, +VBS46133-6296STDY10244689,, +VBS46134-6296STDY10244690,, +VBS46135-6296STDY10244691,, +VBS46136-6296STDY10244692,, +VBS46137-6296STDY10244693,, +VBS46138-6296STDY10244694,, +VBS46139-6296STDY10244695,, +VBS46140-6296STDY10244696,, +VBS46141-6296STDY9478750,, +VBS46142-6296STDY10244698,, +VBS46143-6296STDY10244699,, +VBS46144-6296STDY10244700,, +VBS46145-6296STDY9478754,, +VBS46146-6296STDY9478755,, +VBS46147-6296STDY10244703,, +VBS46148-6296STDY10244704,, +VBS46149-6296STDY10244705,, +VBS46150-6296STDY10244706,, +VBS46151-6296STDY10244707,, +VBS46152-6296STDY10244708,, +VBS46153-6296STDY10244709,, +VBS46154-6296STDY9478763,, +VBS46155-6296STDY10244711,, +VBS46156-6296STDY10244712,, +VBS46157-6296STDY10244713,, +VBS46158-6296STDY10244714,, +VBS46160-6296STDY10244716,, +VBS46161-6296STDY10244717,, +VBS46162-6296STDY10244718,, +VBS46163-6296STDY10244721,, +VBS46164-6296STDY10244722,, +VBS46165-6296STDY10244723,, +VBS46166-6296STDY10244724,, +VBS46168-6296STDY9478779,, +VBS46170-6296STDY10244727,, +VBS46171-6296STDY10244728,, +VBS46172-6296STDY9478782,, +VBS46173-6296STDY9478783,, +VBS46174-6296STDY10244731,, +VBS46175-6296STDY9478785,, +VBS46176-6296STDY10244733,, +VBS46177-6296STDY10244734,, +VBS46178-6296STDY10244735,, +VBS46179-6296STDY10244736,, +VBS46180-6296STDY9478790,, +VBS46181-6296STDY10244738,, +VBS46182-6296STDY10244739,, +VBS46183-6296STDY9478793,, +VBS46184-6296STDY10244741,, +VBS46185-6296STDY10244742,, +VBS46186-6296STDY10244743,, +VBS46187-6296STDY9478797,, +VBS46188-6296STDY9478798,, +VBS46189-6296STDY9478799,, +VBS46190-6296STDY9478800,, +VBS46192-6296STDY9478801,, +VBS46193-6296STDY10244749,, +VBS46194-6296STDY10244750,, +VBS46195-6296STDY10244751,, +VBS46196-6296STDY10244752,, +VBS46197-6296STDY10244753,, +VBS46198-6296STDY9478807,, +VBS46199-6296STDY10244755,, +VBS46200-6296STDY10244756,, +VBS46201-6296STDY10244757,, +VBS46202-6296STDY10244758,, +VBS46203-6296STDY10244759,, +VBS46204-6296STDY10244760,, +VBS46205-6296STDY10244761,, +VBS46206-6296STDY10244762,, +VBS46207-6296STDY10244763,, diff --git a/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv new file mode 100644 index 000000000..8f116bb46 --- /dev/null +++ b/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv @@ -0,0 +1,220 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45974-6296STDY9478582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.bam,1adeaa92579eed7a46af285f3ba77859,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.vcf.gz,f3a02b70a2043b08169a20c0411d6018,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.zarr.zip,d20d2ee334391c43ff9e9004da373d4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45976-6296STDY9478584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.bam,3a214cc9548bfd24f3515b91d5dcd590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.vcf.gz,5996c86ad1476d61bd0c9deedb636ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.zarr.zip,d4feb50e9c6f7f5479d3dec2b3dbb99d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45979-6296STDY9478587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.bam,0395178efb2f000e752318f986ed6927,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.vcf.gz,7d15cf6fc8021ea1050058675495856b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.zarr.zip,6689ace401a860f5caf447d59993ede5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45982-6296STDY9478589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.bam,4d02af58ac5e6dd0c1ddfab6710aa357,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.vcf.gz,1af5733ecd9b08a3a6fa19d2bed18a63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.zarr.zip,af844acd11c529e064b49167845126d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46005-6296STDY9478612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.bam,7e33faf1a9061754b100779eb2257659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.vcf.gz,df0ad585f0aa8524272dc0226e08cb69,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.zarr.zip,91fe787e239cdbedaaf91492279cd595,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46042-6296STDY9478649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.bam,21335991a81b36db69da82f14100bbb8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.vcf.gz,c92c9aae6e8b0d09d631fe6b0b9132c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.zarr.zip,67f02bea13baac2a10a447cdcf33622c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46050-6296STDY9478657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.bam,5c0436449c775a41a79d4d0ce030ce2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.vcf.gz,eec32038bb540477c07728ad58b3cd5a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.zarr.zip,78ee08e463b1ff7cbd0ff4800368a744,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46059-6296STDY9478666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.bam,25b60f4cee9ff401abead3f6c2af10d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.vcf.gz,22bc13ad852ace523e765fb5114cf109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.zarr.zip,87801a969352d5ec457c556aa1be4662,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46066-6296STDY9478673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.bam,f9beda9cc872f58f64feb422ddd7ca9c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.vcf.gz,d00ed911cf21cfbd9f0a5fe06e54c4a2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.zarr.zip,94b89991d9f14a88b4e2107e83e1206c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46067-6296STDY9478674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.bam,44c74b2f55b233c88147ad52204b7037,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.vcf.gz,db41bc5aae5eb6cea0ee0833a2cee348,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.zarr.zip,b3681d5c32af45757c44ff2e49e17d2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46078-6296STDY9478687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.bam,84c865d418d575d1aed5a74c661ef35a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.vcf.gz,13836660fee30b5727279fe34c50f16f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.zarr.zip,19a415504831694c40c0caf93434db97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46083-6296STDY9478692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.bam,c1abdfe0f4f8ead6e0b54e5cc1149f63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.vcf.gz,ec168a0a10a4a07ce00642b94d6f7ffb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.zarr.zip,2148d715f5668cbbc76a40cd8f13db22,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46084-6296STDY9478693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.bam,305b52fa3fd9a4d8ab205b58835c68bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.vcf.gz,82bca00babe534261e72b14e41c1a5c4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.zarr.zip,7f0d2ef0abd84315d8359ee7cb634343,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46087-6296STDY9478696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.bam,e2d265e27606b8d1d9bfbc213bc20daf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.vcf.gz,32cf8d4ed2ee3c1064ccc9f58d2ad8be,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.zarr.zip,8cda96e768f8e1eb74efe9afa44c9fcb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46088-6296STDY9478697,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.bam,ea8599f6d144cdfc81255abe2baa3156,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.vcf.gz,a58cdbf4c289c29611fed3f4477e1fb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.zarr.zip,95f9aa9f9e611e07c8ae352827a00c26,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46098-6296STDY9478707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.bam,968507ed9d40062caa67b95d71e531e5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.vcf.gz,9ea661e83011159fb67ad90653090e4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.zarr.zip,3d67f677899e0d2c471c41bd0c0801c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46121-6296STDY9478730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.bam,2231d7041de087be11e3dcccfdeb52ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.vcf.gz,366b958fbf56f0a1320bae070d13992a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.zarr.zip,f0aa5221b5171f3de3b4f8a7d9b94b7c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46141-6296STDY9478750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.bam,963a424e97947791cdd405a8618804f5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.vcf.gz,242b3ebbea0c6b5d01d9e4e8cbb69753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.zarr.zip,1a8a6651c7e8e4dbfd02cd9407ab78ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46145-6296STDY9478754,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.bam,a026da64d66ff1bf913bcdc59b294922,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.vcf.gz,01c3a14223910d945e6135a62ba211d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.zarr.zip,95d1b74f79e3b2a89a0b9e0e1b43efb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46146-6296STDY9478755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.bam,0a3996860f3d1243f88c3e08c6661c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.vcf.gz,663c5a08f4278b78e9234cbccbcd576a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.zarr.zip,3b98341aff8b64e5960177d426a60ad6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46154-6296STDY9478763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.bam,258219833ee54ccef96f6f75c1efd50f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.vcf.gz,16eebf76a5124af1dbc1913c415f5a84,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.zarr.zip,1e0914e5d1c12b6fadc2123e7b718c1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46168-6296STDY9478779,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.bam,a343d02c32262c066d1fdce2003ff8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.vcf.gz,2651bf48845498f208b36fe621e0c065,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.zarr.zip,d51383e84748673faef91371138efc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46172-6296STDY9478782,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.bam,3dfa83ce8e2b31d0861f4a06259e6e2b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.vcf.gz,e537c0ef1f1c71a05ec0d2f31367c82a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.zarr.zip,293b89848694fdd6cda6a33fcf62fa05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46173-6296STDY9478783,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.bam,32bae64a174d1a9df7e993568484ab2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.vcf.gz,02f56d6d9c3620255915581e707e0482,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.zarr.zip,7d5809643e2f2cfcb178671fd8de9a1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46175-6296STDY9478785,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.bam,f044830fca980a27e5a96f1d82fb1d37,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.vcf.gz,5fcfbdea8dab556be5ebd12f9fd1499b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.zarr.zip,2e92bd07fd3fb828c6379af847673677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46180-6296STDY9478790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.bam,4d238a2c54a2d60b7ae55746f4c51d34,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.vcf.gz,4a5608f0c0cd7248b231e6a95632bea7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.zarr.zip,0bd1a2ab96accbc3e47fcd137d674a50,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46183-6296STDY9478793,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.bam,f7a95a1db5e72da55a3641094849676b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.vcf.gz,b1bf4ac5540b4b8de0212315f86cd8db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.zarr.zip,260f86ebc46b30c94ad42edb4da49e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46187-6296STDY9478797,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.bam,2d98c03922311288e119f04e925404e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.vcf.gz,2fccb4846a4ff85031d14f154b01a649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.zarr.zip,b0ed215b31e78a6cde2073b00d20f209,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46188-6296STDY9478798,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.bam,87b9799d4642d3de3ab321cae47b3511,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.vcf.gz,ed413a3ed2a545ef6a15b9acfed2b654,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.zarr.zip,fc4f4554ba3bfdaa4ea98679c0e5d8d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46189-6296STDY9478799,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.bam,1e43a918403e744c5a815c6387a598a0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.vcf.gz,dec13ae54bcf9cf9fb0557ce64222c64,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.zarr.zip,de48db73ee90637e43ea8d9a8ec2be86,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46190-6296STDY9478800,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.bam,6f040b3345d413939503e990f713d41c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.vcf.gz,d91f787500bff57431438e52521674a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.zarr.zip,f50570fb35f929ceaa7335e7284e13f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46192-6296STDY9478801,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.bam,c81c633bf20dd74694550fc456329856,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.vcf.gz,944b81f182d99db2db8d49e9d8149c8b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.zarr.zip,171f045e21e8b88e7b10b98a2fa21f58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46198-6296STDY9478807,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.bam,6f719336e35e6d59bebce4806ccc3632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.vcf.gz,bcceb7dad61871574a0527a352456165,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.zarr.zip,9cca5d5a8e3a9704856fc287a1505c1f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45975-6296STDY10244530,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.bam,01ed72736fae6222ea0ae33336aabd5b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.vcf.gz,4b9ceeeac80acd1c9e7b29951655bf27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.zarr.zip,025fe17418a680c7c29fd5fc024d104a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45983-6296STDY10244537,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.bam,e6c458494cbe16079c40f992be33e71d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.vcf.gz,998faf9865cd6cfd5de0a34722b53506,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.zarr.zip,325c09ab594b3f3e8d7886ae7f2f292e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45984-6296STDY10244538,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.bam,23eae2b6d67855e8379cd69b7b016362,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.vcf.gz,5b01c6a1a7e5a3f98bf6059787990c2e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.zarr.zip,02a99ed3559da50c96317a44cbac229b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45985-6296STDY10244539,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.bam,6d3c0664801718b6bae4791157a35fdc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.vcf.gz,3a450eefd745d8cf8ce036b7f26c2557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.zarr.zip,a427288b87b90f3229f87c9b2b4931ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45986-6296STDY10244540,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.bam,bbd152c795c31bfa349abd679fe6146f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.vcf.gz,cb5bb6eb27c53ee6fa418ab3d569c345,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.zarr.zip,cdec6a387e43a7cb6d76c51d1d9e3b8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45987-6296STDY10244541,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.bam,eac2c5d9f5d49fd9778da84b3d7ba9bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.vcf.gz,6f77953b84c9a1f16ea6b5ab85168504,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.zarr.zip,37447b939e8ee11be146932d8390cc0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45988-6296STDY10244542,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.bam,c8f457a1a1ce42b6cd9bbeed55902f6a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.vcf.gz,ef62036560f811ad5c4c6b3c71984bc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.zarr.zip,17d8d23c80bae57a949586be1f422fb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45989-6296STDY10244543,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.bam,a0a6d605bd2a84ec54d27090dbf66244,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.vcf.gz,70f57972ab4d9a308d97424b85e8e8d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.zarr.zip,35929dedba06b17349c493d2ceb6762e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45991-6296STDY10244545,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.bam,1e86dbe5181c080d8204ffa09835b476,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.vcf.gz,9ff61da1403a79afcb32b8eec23dda8d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.zarr.zip,82afdc12f5099cf736a26e272098f3df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45992-6296STDY10244546,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.bam,486c3b6a18c7d7bfc3ef5557aef6b49c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.vcf.gz,a04c8a183a1f48c5dbc1402c06556bc2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.zarr.zip,bf21f913f4664277110dbef60536c29a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45993-6296STDY10244547,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.bam,ec3e094cbc586d4546245c644dcb0979,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.vcf.gz,81ae875b80fa9249d05af6dcf1c8817a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.zarr.zip,f0ac97108a1c4ea6193ecdebe6cbd46f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45994-6296STDY10244548,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.bam,03ff6b7380ed456cad3d107bbe3720db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.vcf.gz,9ca2391360683df349abd04fac2348f8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.zarr.zip,59c336a0967e3c1db34bf4f192d5c4dc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45995-6296STDY10244549,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.bam,4c3af011f9205f7151c8bd704859ac92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.vcf.gz,c1602d2c9af464d33514186ec5ce3093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.zarr.zip,d83f20202ae4c015f2e49f58cec9feea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45996-6296STDY10244550,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.bam,4e9204d1a6996f429527956c10e2d205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.vcf.gz,4abd4aaa70d61a4efd8ec38154ffeadb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.zarr.zip,346f0b2271deb5c5d94d33e4817af482,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45997-6296STDY10244551,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.bam,f9f0fe13e4593802fb3a2fbacabca7a5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.vcf.gz,7171eab810766ca302e722babbc098a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.zarr.zip,6028c9684dea6a0199a7325868b7c431,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45998-6296STDY10244552,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.bam,5ca56658951de4fb9b5c4c4e4573e0e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.vcf.gz,6010e7a53a1edeaed9f23f5e7182d580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.zarr.zip,f01603abdc969c04d8b18965a0e616c7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45999-6296STDY10244553,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.bam,eabcad7b011215524b4099eced0010e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.vcf.gz,d9584c08dc4befbd82b791bbb1c3cf93,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.zarr.zip,5b722bcc859ff89fb614923b1ae73fde,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46000-6296STDY10244554,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.bam,e7ba9e5776be244712f3a7ae6b62f36a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.vcf.gz,7ce8aca66df72a3b488a643f170dc8e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.zarr.zip,0599cc7d901f9941ab7795a95756efe6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46001-6296STDY10244555,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.bam,d95c68b19360a3e56294b30caf592d60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.vcf.gz,495ad5c42cca7e710093d89c9439e079,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.zarr.zip,6e265f442d56a7e90c08001c9296d5ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46002-6296STDY10244556,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.bam,0367ae00fd1a156afd030f1bdfe99974,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.vcf.gz,da332581d123035688653d127a845a75,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.zarr.zip,35f249b90539b701c7ed234524b2190a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46003-6296STDY10244557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.bam,9fa806b25e3142e0c82d74da34d76e3c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.vcf.gz,993a16d28c3d150205dbf9a0cec99c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.zarr.zip,5ab6c289b0d60a05295760bd90d9afe2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46004-6296STDY10244558,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.bam,da3cce7b0749e59b5f94cdf9a0ce3d8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.vcf.gz,052c1ed5dff469a4cb907b7589fa7699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.zarr.zip,bd7a2c8d11b8877ceeb653985e016a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46006-6296STDY10244560,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.bam,3dd011695c202fe8249e759654b69eae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.vcf.gz,6e00cfe3be3e5c9d0e596a7f3b87ca4e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.zarr.zip,b43101ecc7a422056c6344137edce68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46007-6296STDY10244561,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.bam,9aaf6e17ae34fe9071454a0828ead469,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.vcf.gz,6e35954c0f8aaf6a46bb335eea490701,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.zarr.zip,9735cb5f15b43251fb12f27d2851ff5f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46008-6296STDY10244562,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.bam,ee9bf4eeb2c09ce01aca79e68a577ec5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.vcf.gz,405aa3884de5136627aa5455edf058a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.zarr.zip,d758b40ba43d7808a3b77759ca006af3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46009-6296STDY10244563,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.bam,331cb057671007f7c9cc309d7c966f27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.vcf.gz,5c61f5ced277e130472f7655ea9b4dc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.zarr.zip,b4d2260c92b3f669235848a59abae2c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46010-6296STDY10244564,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.bam,95cc423120f92231afdedc34a6dc75d8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.vcf.gz,20899c4284f6fcb220d7871a3ea2365c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.zarr.zip,11c71c19eee57f7ffd293a50e2022274,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46011-6296STDY10244565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.bam,ffd528115f6068295d8431c639e7866e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.vcf.gz,4a98b2e4c8da327725bc8997c23a5f6c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.zarr.zip,3b94bee91110caf260938a6ce1c09eb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46012-6296STDY10244566,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.bam,993132fe81587808ffd032dad270e350,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.vcf.gz,0f3c8614cb541484886593c0d0299a42,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.zarr.zip,f0cd73faba322ca838a9ef7b5a1a371d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46013-6296STDY10244567,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.bam,c3776d5f4b835b46f306f02a280c07a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.vcf.gz,b1a7cedc46c5069311703c12f00e12bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.zarr.zip,3c580907fca7fd2402d54d18c7e8807d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46014-6296STDY10244568,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.bam,adff7ba53b32410b85383258bfd20a72,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.vcf.gz,da922c98ff87bce6cbbd6c5bf0c49c9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.zarr.zip,227b82fe06c972c2d4507ff7fc7f5e27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46016-6296STDY10244570,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.bam,14af267ce9d8247d4bcf290a240c536d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.vcf.gz,cd05b31daf2133a37d70acfaf2d5c4ea,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.zarr.zip,4027a9537bd50c018f4f44a586b7d4a1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46017-6296STDY10244571,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.bam,8f4b56440f0341ad832233af34f1c846,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.vcf.gz,438f37c6e2de15785bc59eaf7676982f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.zarr.zip,cd7531a1f66a2422408a9425434bd029,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46019-6296STDY10244573,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.bam,05389f92ca2d7d8881a9488211a37612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.vcf.gz,2ef311e1a28d9bff6bc542fced5e11f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.zarr.zip,3e3cbc161c82903c7d6ffa412c0ad1dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46020-6296STDY10244574,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.bam,cd3d15db53d9e424a656840a326d2fa7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.vcf.gz,f84a0e72ae9b803342aca2d12931b98b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.zarr.zip,68d2c5a6d5c3c9775303d6eafaef034e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46021-6296STDY10244575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.bam,ac9927695d61dd0444930df568bc4a9b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.vcf.gz,945f777a0f527b78517f294b6ba24790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.zarr.zip,af5e42d900d4f3b248b3c4c024fe0761,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46022-6296STDY10244576,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.bam,7708d2be875a3ba0fd96c8037b0b85dc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.vcf.gz,a22e08132e67de01dfd57320d2325fb3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.zarr.zip,f5e161031994aa42f712d26f6a981f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46025-6296STDY10244579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.bam,05658c98dbeb01d6e7dfbd0fa28572e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.vcf.gz,8c318d07dca53a716466f2b8352300ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.zarr.zip,cb653d8b6f9e78b2c4e76d2687b33643,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46026-6296STDY10244580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.bam,cf666c8f9ce046164cfdb5b35e7e7412,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.vcf.gz,b84392047d4b4579e06e4bbc59a2603c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.zarr.zip,0605db737accdfe7b3ba67f684cbb82c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46027-6296STDY10244581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.bam,b439cd9fca2649107cd2044d36056964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.vcf.gz,a9b060abbe3e466f6e17bcb3a6c626c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.zarr.zip,db276b523a1b43416f18174138de5b77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46028-6296STDY10244582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.bam,a3b90d5ce1f2fc7442ff2c9802b8c6b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.vcf.gz,73206e66a5cdc75efbbee7324f3484b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.zarr.zip,ae824aba549c7d52d0cf8064458ddb9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46029-6296STDY10244583,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.bam,f923b1cdeb1596d23f378ccc007d242b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.vcf.gz,696ddb5bdd303c419c71989fa249faa6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.zarr.zip,3550d38605cd4fd00e17191df898d2ec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46030-6296STDY10244584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.bam,17afca0cc241f6301f7ca18c197271e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.vcf.gz,3bf0d684ebc52a268758b51370b7a3c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.zarr.zip,e6fbeb7187838887eac2b4147b576a42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46031-6296STDY10244585,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.bam,575646acfafe61748bbb503ecc843f01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.vcf.gz,63967f16c4eba0f9b8b3f5a95ff20bc7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.zarr.zip,2a30b596a8ff767ff6b68a37d71dba82,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46032-6296STDY10244586,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.bam,c1facc098169cd18295ccbf712672496,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.vcf.gz,add1589df9f9091f685188330d4e21d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.zarr.zip,f29964c9549b7e782fbcf8a7e0b4ec89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46033-6296STDY10244587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.bam,612a46f9668699989a10ed9d831c2ac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.vcf.gz,8e0826a9a3a0c6572bd6c2e620a03606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.zarr.zip,9943e55b74409b9bf601cd32ce4397a3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46034-6296STDY10244588,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.bam,1d438bda644a213fd5b466591f7eb69a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.vcf.gz,6b8c1b26b20734aa171affe077d51991,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.zarr.zip,0993006e725d81b05d91d835573bac9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46035-6296STDY10244589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.bam,e020d9e75fb1cd7a42b33c620607900e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.vcf.gz,3108713a82176c0ac66faf801d7768e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.zarr.zip,497a690e443ec0a9f808a82f20a4998d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46036-6296STDY10244590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.bam,e670490d1f9db31cdb1bd1cc93b599b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.vcf.gz,18306a98ed7810115f2511de952e0964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.zarr.zip,811a669d35eb7bc4db77cd1d929de374,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46037-6296STDY10244591,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.bam,c3147d54ef6d7a5c8759bf1d8f0cad09,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.vcf.gz,1793fb81a1b8dcde14d7c5f43063684a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.zarr.zip,e9f0a1cca0e9957574fc996303e438e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46038-6296STDY10244592,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.bam,e9655fc12a36d8665c84cec279e8cd65,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.vcf.gz,5aa95030e82d633c291860313eab7f8e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.zarr.zip,578f564ca333a45b3e06299f7116dc8c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46039-6296STDY10244593,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.bam,56510e534656281020afc4835d81b82e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.vcf.gz,02610e4b04bf2820f09b1422cf76e3fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.zarr.zip,80ffac68cd23540ea337c8cd4788624b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46040-6296STDY10244594,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.bam,9d1510cf7308af23e85b95746d6f18c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.vcf.gz,1b7acea660ebcdc62c6d7525e799d612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.zarr.zip,409aacbf7aef07eedd16798fd9d59c8d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46041-6296STDY10244595,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.bam,937208cbf075af93ada10f7518e22e3d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.vcf.gz,ea427016babca9a86f60bb9ce7ab248d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.zarr.zip,ff853352eb520aa71df0dee893bdd200,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46043-6296STDY10244597,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.bam,e27ec39bdef518d506ca83778efbc9e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.vcf.gz,1e068d2c749acd9c6c9a17d5bf27b1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.zarr.zip,994ae24e18976fa55f123b9bdd1f154e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46044-6296STDY10244598,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.bam,9bd6ead7548bde4a691394413569b96f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.vcf.gz,6e59775db52422e811d64bdd50963608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.zarr.zip,f13f384975d02e15d4bddfcf97107ab8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46045-6296STDY10244599,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.bam,56e665b021c3656fd92bbecad792fcff,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.vcf.gz,cec23c7e2cacdc0ada49ccb714cc6115,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.zarr.zip,facf422ec9f62380c64f1fed64350008,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46046-6296STDY10244600,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.bam,3dfd1b2fe73d998aa909a9f7e9de5e06,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.vcf.gz,fd73b34eb4e06e91031fa6339f649ee9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.zarr.zip,9e351d5255e9b3378443a81be9565fdb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46047-6296STDY10244601,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.bam,e5b4dd76297b2985e82484eb3cd08b17,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.vcf.gz,ddcadf2d9eb911094ae34c4763cd4cc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.zarr.zip,2039ba6828fa664781e417a4cb129057,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46048-6296STDY10244602,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.bam,0ca181b5e2e093c590595e5b6b8d0b60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.vcf.gz,aa8ff39402686765b13ee4e4bb30e0cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.zarr.zip,38ac9e5a6d69161fd5b87e8448765060,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46049-6296STDY10244603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.bam,1b2dfda57496438ced03b19bbeed30c5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.vcf.gz,66bf251210144cde55b2ab423cbf677a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.zarr.zip,f3f35870be00195f669a5b5fdff12123,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46051-6296STDY10244605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.bam,f6d43a71deed42b671e3fa104909dfce,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.vcf.gz,9036c6ec2e9e63d11ca9a44ed5f4f0bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.zarr.zip,d8231701a83305388dd655772f8777e5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46052-6296STDY10244606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.bam,64559e295ad39faaae3e237802bf95b6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.vcf.gz,e6302b321dff324283390595d9b9f744,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.zarr.zip,7a3d8e0fb8f0748986c824e75821ad31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46053-6296STDY10244607,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.bam,3f5a92e277a1f80f3d893d0dca19017e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.vcf.gz,53d9d56d88e12c0b651eb5dbef02cdc0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.zarr.zip,bcbbfcbf138e8273f5c84c0f3ddc5f0a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46054-6296STDY10244608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.bam,38c24bb390ad874670c12a60abae477a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.vcf.gz,253f09f88889115c2e26911c5a083d52,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.zarr.zip,2690a2d0e6fe9b59c58cf60f46492472,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46055-6296STDY10244609,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.bam,d7680eb95f954164d966869b7548fac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.vcf.gz,044b7d845796952c9e4223713a6c1fd3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.zarr.zip,79cd8a70e6a56827e0effaddee3ad25e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46056-6296STDY10244610,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.bam,e7e995ffe3a25308ac9994955d5ab16a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.vcf.gz,78263eee27b6d580054d5a002d133565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.zarr.zip,f700c3f12528158195ccffc6b98ea050,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46057-6296STDY10244611,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.bam,983de20e05e6ce69daf8c9af2d8a1890,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.vcf.gz,9de1cdb6915b3ad5d963175ea61cba76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.zarr.zip,b1630fe8d6962e22a180e98c94bf6e89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46060-6296STDY10244614,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.bam,c4101f05ee89b99ee9c0f5866701e9ef,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.vcf.gz,159c742b6588f40112c8d23c6558a397,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.zarr.zip,a49017de47878d6d2e4cacb35393b5a7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46061-6296STDY10244615,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.bam,1e7bd1066fccde110c836fc24b126eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.vcf.gz,5738f1e43e82eff0b0708ac43250390f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.zarr.zip,51b873c236d4cc7a64514d8007f620af,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46063-6296STDY10244617,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.bam,c5235cc932300c02b3ef94fafd4fb28c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.vcf.gz,6e752c0715aa4de989cd231766e1c7ba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.zarr.zip,9f93ead5253aa6618c5f5ee864e01909,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46064-6296STDY10244618,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.bam,326320cec2ba7173d4323c42bee6c8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.vcf.gz,065a2bc8be81975bda4a18302df14e47,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.zarr.zip,f162809e72bbe79fd4cb80017796ad85,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46065-6296STDY10244619,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.bam,e37995cebe508f201f4f9a2a023db0d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.vcf.gz,905aec9e3d01c4d91c5029579aed93d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.zarr.zip,f567bd12cacd672a731870ea1978fd63,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46068-6296STDY10244622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.bam,88d49a34d648fb44378672f74634c2b3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.vcf.gz,27b481808db5119bc9b1c757604e2776,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.zarr.zip,507570fdfe21e28a4818782fd8dc5371,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46069-6296STDY10244625,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.bam,d3e787f3f8c9f7ee81b48b38697a5658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.vcf.gz,f1969fb9eb53ee63a06a1ccc3a8305e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.zarr.zip,acee34d8ccf69acb35bb886044b420ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46070-6296STDY10244626,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.bam,9a99b5851037e13352d33c6a54b9884b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.vcf.gz,c0d78d0c54c2dcdbd41ed36d7caabbba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.zarr.zip,5821cc4028b4b5d07c4f05534609131a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46071-6296STDY10244627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.bam,9817a2eb4f3988959a7d3368d7fa1a95,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.vcf.gz,c1aaf3b6278acca92bda9955acef22b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.zarr.zip,97bd1f0d511d75acba63eb8a50a4bc18,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46072-6296STDY10244628,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.bam,ffab700b4bea33596a9d739e35185dc9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.vcf.gz,66fe83bda16095defb8a20b9c7cebfca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.zarr.zip,eace5bc90ae795f3870428c23e4baaa6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46073-6296STDY10244629,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.bam,fc76e803cf086bcfb2acb668ca5c7688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.vcf.gz,f314bf31e9ad16b33e3568218cfa90c0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.zarr.zip,8acbb037ceba2f256dad346a004e53b5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46074-6296STDY10244630,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.bam,60b889ec6915c59f67471b8728c0659d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.vcf.gz,3da9920df9c339390a594e9a9aeb17b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.zarr.zip,78ed65683b9e76ff2895fd27f704b832,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46075-6296STDY10244631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.bam,e96c1718e3ab736bb27085facbb17bda,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.vcf.gz,380308638092e69edf993136e9a3f63b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.zarr.zip,cc3d1230621e1948d4907387b75d6c11,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46076-6296STDY10244632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.bam,4afa84a46ac7b18c7111caa332c362ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.vcf.gz,0fe220ef062acf81a4dc3aaaba9e45ac,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.zarr.zip,cffc70fce3686e8bb994c4ed2178cd83,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46077-6296STDY10244633,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.bam,0c94e44ce93f8ec7f58b621913e01a78,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.vcf.gz,5723d487f2c3b7a912d1842f9cc1a95e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.zarr.zip,edaa589c2ded2a736bb8ebe28bc7bd12,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46079-6296STDY10244635,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.bam,5651a7ee7dd0fe9a0d2d43f76b7dec9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.vcf.gz,3f49c8792ad156cbc0667beec8e3fd57,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.zarr.zip,0b04ad3185d80d37253669a6796b418a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46080-6296STDY10244636,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.bam,7c619ce3e8bf9afe039c3fc900de746b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.vcf.gz,18b828ebdc48b5f49959e95bfa0aa056,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.zarr.zip,0908bdd2e1113e085688080010d9c575,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46081-6296STDY10244637,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.bam,fabc10edb900c7963a0e574c168e053f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.vcf.gz,6d2d6c223e4ad7071dc46a963981c472,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.zarr.zip,862ffac3f8b7332064af417a52d0c926,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46082-6296STDY10244638,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.bam,44e785256d94d9a3136910ecf1aa16b7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.vcf.gz,723b36003192db50d6bc09c1000523d4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.zarr.zip,e358a83176335add62daaae3069f6813,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46085-6296STDY10244641,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.bam,0763186f8740b265f728916a83047ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.vcf.gz,ef2920b39f6d26f0d2ed40b70cbe4b2d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.zarr.zip,2b79df54a9c6986ca3ac5526f2e3f835,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46086-6296STDY10244642,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.bam,7076efedb5b3571bc3e477d7a0e8150f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.vcf.gz,201a259f3438f0c6c828803bf3b27df2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.zarr.zip,ab767d757dadb3d29768d9a683fe4e1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46089-6296STDY10244645,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.bam,301db4f53172020b34785811d2bdcd5d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.vcf.gz,d089fb93a50ccc3a8200e9c7f9effbbc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.zarr.zip,316f18192bbb6cd75bae2cd1595cd040,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46090-6296STDY10244646,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.bam,ac09d1534c9c1213e3f34472f698f98c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.vcf.gz,57abf91fdaab79128b4214eab0cdfbf8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.zarr.zip,e0bbd3c2845daf322f747662ad01e257,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46091-6296STDY10244647,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.bam,f58f809898be1124be0a75828d17db30,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.vcf.gz,724f5f4ae4e10778c3bcd434b66b2a81,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.zarr.zip,c13d15f93d20787dd4f1c33fef2e0cb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46092-6296STDY10244648,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.bam,e5c160ba2997d28168842ccf2c3717b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.vcf.gz,9928773ad9a4713e9168d39f8079ceaa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.zarr.zip,cffdb8b3366dd3bb75ae1af875a5bf10,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46093-6296STDY10244649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.bam,2e40e3d858b15924dad9f8decbebf12d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.vcf.gz,41b22a186ebcb2726e93323c87f5e944,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.zarr.zip,e5e8c3e9ae3174289635ca345703fdcf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46094-6296STDY10244650,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.bam,a372d4621244b81e4a565d78f4d08fa0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.vcf.gz,5e50aead63697522902fd31caa5fb298,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.zarr.zip,fd4a34a3968bb41956a53cd189b5a33e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46095-6296STDY10244651,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.bam,571ac49f46ab3bfe875bbaf45c1bc713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.vcf.gz,50685b6768cd829b306ce77b97a5d268,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.zarr.zip,6083c3f2b206a38324e0362422368d4c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46096-6296STDY10244652,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.bam,11fccdbfed57786680838fcc1e21c22d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.vcf.gz,06fd37fdcaebef95f89cd1dd26223c08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.zarr.zip,3fb29c1101c284c8d267c70c40333a44,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46097-6296STDY10244653,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.bam,146bc98625e9de8e8c18e3b0655c1613,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.vcf.gz,cc0cafc676be171054104e9a1fd844aa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.zarr.zip,fca2312d74cec77c8f832dd6f8168490,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46099-6296STDY10244655,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.bam,7d9ee2393352d00e54a5dbd93093790c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.vcf.gz,dd9c428faff08546842c943f9cdb1709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.zarr.zip,dcf39e7cfd7a3393b6e0e6198f5a03a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46100-6296STDY10244656,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.bam,17dfd4a0f0f9a33f103872bae83c2103,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.vcf.gz,66a909f21e3b76233285400465878e38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.zarr.zip,f79b9f16662746fde5a7fb4bba0cb426,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46101-6296STDY10244657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.bam,799a27898d026a6691ec5e412fcbc1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.vcf.gz,03df5dfbd082d1dcaf23b50ddac7cbe2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.zarr.zip,5e2b47dcfac2dd7e050884ea2f10f677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46102-6296STDY10244658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.bam,10fb36c8a678e7506bb62d9d39685b7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.vcf.gz,8528117ddbc126be7d16995a760cbf97,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.zarr.zip,9cdc5184f05a2fa57daa620920f989c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46103-6296STDY10244659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.bam,2021a696721431f1d72100c0b2b628fd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.vcf.gz,afafe645d9c66c5027ac065bab57b02c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.zarr.zip,e1cbcb4eb08d9ade5176a185b4975412,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46104-6296STDY10244660,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.bam,e6e7779768e8856bb361eaa6424958fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.vcf.gz,80df687f9b93b9c56335fc888ef16977,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.zarr.zip,17e6fe272d7760cc23cf66bacc45961b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46105-6296STDY10244661,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.bam,d74b9824663e2d1bc29dcbcc26e86577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.vcf.gz,ee28f65d079fd03931703cfc0237761f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.zarr.zip,0924f785a031937fa712433f3f15a1e4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46106-6296STDY10244662,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.bam,9153ccac305e1b1947640435a4e72dab,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.vcf.gz,937038eace346e24d248cc3b8d97bb4b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.zarr.zip,e38500fe58e1ce2578547cdc46ee4b28,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46107-6296STDY10244663,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.bam,a41f35062057f501aa0f35625d51b2d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.vcf.gz,619a5a31165f60a9abc99d4b76655d90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.zarr.zip,c50b311a7aa9a0a9c963922137369cd1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46108-6296STDY10244664,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.bam,e845c7294d565d7b7d60e18df7df4a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.vcf.gz,17640788657fc74df34cdf04287f7997,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.zarr.zip,6633c7fc97cf45f9a708ed0d98e8da4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46109-6296STDY10244665,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.bam,2391faa681cd1c6a07f68ddcf72fb2d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.vcf.gz,4d44ab3a838fd237993ec3988c735f22,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.zarr.zip,fe8b8928e028a4b49ee81c744abb2762,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46110-6296STDY10244666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.bam,b439f6fcbd8ccfb0c5e0c24177ecb9d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.vcf.gz,689433211da8f7c6745ede98e73a1c87,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.zarr.zip,bf7d4d3e69b596e3f379aac2046bb797,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46111-6296STDY10244667,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.bam,c68ef2eb103e2817f6a0fec0dd10ff6e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.vcf.gz,6c1f129b5eb981742e6735072edf8eb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.zarr.zip,90176b6262d6b0d78caf7114c3e7f555,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46112-6296STDY10244668,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.bam,0022f35363daafd25e6449946b4d1105,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.vcf.gz,e2c972a08dd980b4b9dc256a59cf6b01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.zarr.zip,f74150f8495a12b35b60c175305128be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46113-6296STDY10244669,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.bam,e902e6edb14ad33ed3bae8fbcd520454,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.vcf.gz,485d4adf4f888b14bb569a514a72d134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.zarr.zip,744e9ae6fa4030159e33cee8166e4364,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46114-6296STDY10244670,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.bam,dbb641160a8bc9f642bd12fe15d98b13,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.vcf.gz,ef9591c7fbcf836476b18610e73d3f3f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.zarr.zip,b5ee5701b6578588ef8d39afff1f92ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46115-6296STDY10244671,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.bam,74a9b024eb3e14feaeda4772623bb575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.vcf.gz,b3b0bd269afc5fb9ee70106bc85ab47c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.zarr.zip,82b169c34ebff1d8fa5e0c9653357e58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46116-6296STDY10244672,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.bam,771ce1e0215a2e89a47d46bd7b73b1fe,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.vcf.gz,1ac171b818e3e26748051e7b11f36b90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.zarr.zip,bb896bf3dba7a5650d575a88840c3637,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46117-6296STDY10244673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.bam,1470a757d2a3859a413784dcba5fb316,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.vcf.gz,32908172a8c75a477a16f095ac05056b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.zarr.zip,d3951c6e4d1747d4ff04e988837c963f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46118-6296STDY10244674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.bam,366910128041adefad0f6caffdcb5da0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.vcf.gz,a7baf0aa263a054bc03f286b55a851bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.zarr.zip,3061b1ec62b2689965399cda81fd209c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46119-6296STDY10244675,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.bam,d64ba73aa7a30734a5dd16501eadc3f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.vcf.gz,dd6ee745f391b0c2140cdb70d07a68db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.zarr.zip,d4210ed1eca458d3a4ca263046e85023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46120-6296STDY10244676,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.bam,fa5d21986218b7b574d3bc410a7e28d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.vcf.gz,c2f37eb3838bf465b933727fc67ec127,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.zarr.zip,2e8f06e36ce8ece662be5109c94b40a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46122-6296STDY10244678,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.bam,db2c5278bb3945c54ccc8e9279d50622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.vcf.gz,066bc119de5d2fab7a10e37561f0198a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.zarr.zip,7ce1155050c452daf27c78c67015f40b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46123-6296STDY10244679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.bam,8f22ba6a8e70d634a05277cfd9caf55b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.vcf.gz,0a49b6215f41f629cb894949419c6225,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.zarr.zip,8a110f4e9499a1d91bb19b71d3717ab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46124-6296STDY10244680,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.bam,a4c60e332d07e87493a8de8c1987dc9d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.vcf.gz,b5cd476461a938d8c2f0c44302628249,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.zarr.zip,f1bb177f63e46215f88d94cc6446648f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46125-6296STDY10244681,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.bam,710d39c6336c2b727955a472d841eec6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.vcf.gz,1b5d5a038a87d661c7b23e5ab7f70833,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.zarr.zip,ec268451a7e403e7012f930d235777c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46126-6296STDY10244682,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.bam,9017782fd7cb24d7352d94a8653b371d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.vcf.gz,a2687baafe9ff71cfcabaa7be9c80109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.zarr.zip,d02258bd20a681c9f88a018b08223723,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46127-6296STDY10244683,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.bam,4abe8438c7bb0818cfe6279e4af63ee4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.vcf.gz,4a3f7a557c27a7bf3b11903f82fe1c8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.zarr.zip,2788ea16ef1d3925d6b16e4f3f63bf05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46128-6296STDY10244684,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.bam,a1b050c7b4b460414ee4d4af0f5f550d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.vcf.gz,efd0a09b216390bf97a01cc64015a2c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.zarr.zip,0f28fb7db62edf59ff4e139db881db0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46129-6296STDY10244685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.bam,7db2f0c07d0f1734c93cc66b6c7d9631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.vcf.gz,62575ca298a7565bbb97651bdf0b9ebd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.zarr.zip,3e437d0b009b63a7b4281a1ac5d17f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46130-6296STDY10244686,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.bam,81de5de97c273a2d8a8348e43bf0b40b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.vcf.gz,141e96c60423306a9ed8c7d47841560a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.zarr.zip,4048b08ee5f26e1633e7e7995a4b0b56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46131-6296STDY10244687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.bam,181a57d461caca71137e8d0ba00da3a7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.vcf.gz,03fe541e393fe9c70e04153005eb44e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.zarr.zip,a7c5820aed1136836bcdca6b5c4d5b9e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46132-6296STDY10244688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.bam,c7103015a053cd9a49677fc0540900ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.vcf.gz,77e40b3a05cde15bb9a97ec817ac9715,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.zarr.zip,dd9b19d3f910da1b71063792a3c104df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46133-6296STDY10244689,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.bam,9813945a73dcead8f778dd79c0c09fae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.vcf.gz,c44ff1b9281df3672209818c0fdebe08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.zarr.zip,a7d75a97d12b00eed8ab7e77bfbe27b3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46134-6296STDY10244690,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.bam,fef8f09188ced5657c4d903919aacb26,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.vcf.gz,83d50ec3d3cb09c3255d8a7e76181e9a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.zarr.zip,808fb1cdca655c456aa9edd0c5cec5ac,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46135-6296STDY10244691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.bam,308db16ffd476479f8e552d3c2c79c7c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.vcf.gz,1992cccb91a26822dcf0bdf093b10ee0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.zarr.zip,0ebe5eb7ef03b89905ea6dac8f1eb9d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46136-6296STDY10244692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.bam,c8c9fe06dc7a189fd48cf262dab01f82,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.vcf.gz,b24cb86c6a57668e9205937953336181,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.zarr.zip,252866e1e45e1de20d6e87d8eab6832a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46137-6296STDY10244693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.bam,72263420016a6358e0d297c8129c96e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.vcf.gz,ed3dc3b02ef462180ff1f09adaf53a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.zarr.zip,e9f5938b0627a80387f1065e59b37301,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46138-6296STDY10244694,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.bam,672b166fcf67daa726a75565f44c5205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.vcf.gz,b06ccc0294ff92a140d6d163fa665ec2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.zarr.zip,d330294ad2d9a1d4d59a7dd5a3122d4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46139-6296STDY10244695,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.bam,bb1fb7093884e3bb0a6c208b784ffac4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.vcf.gz,0551c93b94eed118bff210914254dff5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.zarr.zip,15ef619350e945a6dbce59b969f9d8ef,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46140-6296STDY10244696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.bam,94f23659ee39233bf368670209c6cc99,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.vcf.gz,1323ea577cd9bebb7bf6ed420ce43134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.zarr.zip,b616a193e86d1213fcd5dd4213983124,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46142-6296STDY10244698,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.bam,b66c0b9f6b3f71ce6566d6adf788433f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.vcf.gz,a9ae8f1908dd0f0cce27e698d2b4d581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.zarr.zip,555350ae704b3c8d9a1db0df35c1f226,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46143-6296STDY10244699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.bam,17dcff75bd9aae8e8609da5b55286577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.vcf.gz,fa9c08f21cfb0e0ac790663ad2ddcb79,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.zarr.zip,5f66a0c304e73d8b6427eaad715fcbb2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46144-6296STDY10244700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.bam,fcd09d043b04a2422728a372388ef603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.vcf.gz,b64f0a6016f0fe316e12ffd9b05c714f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.zarr.zip,d70051b71d83a2c5d20c481a622ade55,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46147-6296STDY10244703,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.bam,ff4e6f2983b5e93a59f83b1b925836a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.vcf.gz,fda6b5d81dd1f0c69f538b23c57d6627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.zarr.zip,09e92b51445a729d917962e15bb3c1f7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46148-6296STDY10244704,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.bam,6a909c17f40150cc2547ceddda30610c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.vcf.gz,8e6eaea206b9aaf88cd479841b87c2ca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.zarr.zip,62e1c13b45d15d68dca0bfae4781c88f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46149-6296STDY10244705,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.bam,9c1b2c0942c2d2cc97578b5e0584faa4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.vcf.gz,bb411986e6447eaab2bcc81f1bc3e228,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.zarr.zip,5bc727fba006f6f3b3963b75ea867002,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46150-6296STDY10244706,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.bam,42362b69f9cb357aa163615d4e3c2f86,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.vcf.gz,f76a923a286e9b0699a80d002e12824a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.zarr.zip,b5afcc81c9b6c34c5bcd5ee974461b98,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46151-6296STDY10244707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.bam,36365734ce6fa33deebdc84d95c1f1da,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.vcf.gz,ea1effdd7390605a2857b13f74d9f63c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.zarr.zip,1bfe7297f325433b89cb775e90f64da7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46152-6296STDY10244708,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.bam,bad12b6eee4d739f97a955703c398f4d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.vcf.gz,635f6538207e9651ec1b856f9f605046,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.zarr.zip,5db5a08ea1cbc1bde9809884c9094d5e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46153-6296STDY10244709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.bam,edb49735d204a0907dd497ee9055a478,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.vcf.gz,c43aea13db62ece38fd1d31976647c92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.zarr.zip,f009d0edfd24bee3ac36f4dfa53d26d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46155-6296STDY10244711,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.bam,53f5050f0956971eed6672572c9b662c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.vcf.gz,16fc4a9cadcd3561d2f9744901181605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.zarr.zip,3040fcea89d997b80958c9f7dbb3dd64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46156-6296STDY10244712,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.bam,86ba812d131d5fea2be42af1d4782cbf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.vcf.gz,4ce1c80b19a13f265563c38584266f9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.zarr.zip,5bd8aa5624f1c63ec61412126abd9845,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46157-6296STDY10244713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.bam,61220d017ea23e047b0178a9921c61d3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.vcf.gz,b783275c36ff12d14902be0c8c1e39c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.zarr.zip,57021a8eca7d07c4f9d7dad0fa062f74,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46158-6296STDY10244714,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.bam,25b74c9f9583017caaf7e19ec021d0a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.vcf.gz,8d6931c2553c8ed375b05dac8bcbeafc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.zarr.zip,52ffc8fa39bac8c89bf898e1103a2ec5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46160-6296STDY10244716,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.bam,7314c560398fc491a6c84389560deb7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.vcf.gz,1d5d41c13fa0a5115810df9e6d263700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.zarr.zip,ff1c09d4456bc00158565467adb1f05d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46161-6296STDY10244717,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.bam,48f8743ef68292fde0d6c175a93543b2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.vcf.gz,95c6bd8ec26da87330667e4856205691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.zarr.zip,b76043c150b635dc8b797c709e0ba742,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46162-6296STDY10244718,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.bam,30a4d28a800ffcd199d43d63e8a7b291,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.vcf.gz,dcb0c80168d38aae0b70edc33634249b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.zarr.zip,1bd38cf556bb88a69edddb94ef64ada7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46163-6296STDY10244721,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.bam,95a3241fe1053ff881dc853f474a5762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.vcf.gz,b87f5280c441e0ef2cd6757d2d58c29c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.zarr.zip,0d218a7ac1cd8506207a93c21a766a9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46164-6296STDY10244722,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.bam,848104688f551af6584d9be8d6a6c9bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.vcf.gz,a218379a0fcd6a63da2d4d5dcd179d38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.zarr.zip,42b35107f445f4a2bafc8c4bbab9595c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46165-6296STDY10244723,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.bam,7ec9c15383d2a1caedc47b056de4997b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.vcf.gz,4234bb0bbf6212081f27a10d70b4220e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.zarr.zip,fb981a1d8249d954b9c86a11d15edf38,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46166-6296STDY10244724,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.bam,2116f107cf69fe30a5722ead2f24d093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.vcf.gz,80e561e424c036325a68022e06691d01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.zarr.zip,56211a74fdd85dc2f07adfbd9dcfa148,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46170-6296STDY10244727,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.bam,e3d8e0f04b45359891714e462e295d28,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.vcf.gz,b7213a21ee8e0bc864c6fda177b36c53,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.zarr.zip,5fdbed7aea5a97ffd1523858902b1a30,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46171-6296STDY10244728,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.bam,3316ba7c54b5b5361e804709df3ec1bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.vcf.gz,3d7ad375274aa09b369b6cbdb294f1bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.zarr.zip,814094360a82f5f9c1a759ddc2ccaef8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46174-6296STDY10244731,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.bam,c756a0db0530e0f881561ee08f2bdd1f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.vcf.gz,c994aadd8228c54faa554d6825c5455a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.zarr.zip,1063a6cd18000c0101c8a8d35b200196,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46176-6296STDY10244733,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.bam,a35cd5b4fb13632b16db475e7e2b1bc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.vcf.gz,024ad98abfafbb87752999edfdbb0eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.zarr.zip,95d85adec667a2f2f0add4198b05640a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46177-6296STDY10244734,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.bam,19f6634f151330c4f14891ea80961b6d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.vcf.gz,af2a10603340fdd3e9393f25d3131331,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.zarr.zip,03d879c9a5454960ed6f626ffc1781d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46178-6296STDY10244735,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.bam,adc1763a34d0e0613507b753babfcadf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.vcf.gz,d6e323a7be1cbbaff31c0daa736cdb45,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.zarr.zip,138fc45253bf169c66a738664e7b0612,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46179-6296STDY10244736,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.bam,12fee4ccb7ef5628a4bfa869adbf667d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.vcf.gz,be756ca129991e7a836e879aedb1766a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.zarr.zip,740a4d3cb40631e6143455ff3f8acb6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46181-6296STDY10244738,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.bam,1499f5ca5e056874bea9dfe1257dc6c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.vcf.gz,3329c612bc1169ace9f6fdf80471b21e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.zarr.zip,fc4574e2d95c70c069bf771170b12949,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46182-6296STDY10244739,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.bam,573eb24bb0ecfdbcf0dd1a5d1d7240b4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.vcf.gz,2ecbedd26b40708becbcaa014dd54685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.zarr.zip,f64b06e936fa5b905528f496c38e8179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46184-6296STDY10244741,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.bam,2101b496021d75704163de3ff43b5d83,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.vcf.gz,bf3c5fd872cb0be4def60331c2df24ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.zarr.zip,96cebeda2fe3fec555853d340633eb1b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46185-6296STDY10244742,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.bam,2d57e4c1fe777c4f4a61fa22e2a44fad,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.vcf.gz,0adc862279fc8eefaca763cd2fde3384,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.zarr.zip,90297811c9422c827336f0fe9af73bd4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46186-6296STDY10244743,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.bam,ef57766adb637f83c425c11539a36e25,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.vcf.gz,0f571f7acb25c77ecd693e46e70c3606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.zarr.zip,7b69a02639dc8c4f0ab19ee461dbdc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46193-6296STDY10244749,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.bam,78709560feaa69be12f210bd1a290deb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.vcf.gz,92a4756a2f262b95c0cd010ef6f73c77,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.zarr.zip,cd5ed5878ec116dd66ecaf17a1294467,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46194-6296STDY10244750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.bam,0d38b2ee1805e9d2247997eefaa37d9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.vcf.gz,98a65c01377b0a1c843987727bfdb36d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.zarr.zip,736ffa8b99c6cbfe0788ed3981690c71,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46195-6296STDY10244751,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.bam,3317d75a20e8108d146a262025d3e373,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.vcf.gz,62ba7e89fd3421fa7a0575b04b534f56,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.zarr.zip,302c682ed385ac6bd29f7b8ba486a5d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46196-6296STDY10244752,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.bam,e171145dcff2ebfedf0e7630b4f685d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.vcf.gz,6c88a263400342d57d73e63dc751f901,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.zarr.zip,d52a51ae8c2d5e582f5c72f704239d27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46197-6296STDY10244753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.bam,a2ae69924541dec1b05d51f15d1cb579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.vcf.gz,2b481c427a11e1b07067428549da727b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.zarr.zip,e2996f26ec1872e116613c97e407fa72,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46199-6296STDY10244755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.bam,5afd956b2b4b7ad5cf78b99a535c1627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.vcf.gz,8e03b3645d6cccd0598cd885e77a065f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.zarr.zip,7635ded796422974ada61f2779917b33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46200-6296STDY10244756,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.bam,9aa621ac0c7d795c7cac7dba819f2b18,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.vcf.gz,1b8d9f3cd4a06f12a50dc21528da721b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.zarr.zip,969bf551c8f3180893949e71a6151564,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46201-6296STDY10244757,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.bam,47493446d43054f545fb0313afdda23f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.vcf.gz,3e6673cab726d90cd6ce58d4b46b5b63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.zarr.zip,75984eb4885fb69e2df054fe05f20b9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46202-6296STDY10244758,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.bam,4ccf10f7cdf07ebf2b39abf62958a7b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.vcf.gz,b2568e1051464118fe3aadb93547c730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.zarr.zip,3fe052930152b21cfa7bddad122cdbb9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46203-6296STDY10244759,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.bam,537a94ee8f982a13e545c6133445154b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.vcf.gz,20bd14fac661d14dd6eec4e444d84b89,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.zarr.zip,6c98d7818a986f1262652b8a44f18004,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46204-6296STDY10244760,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.bam,00725c2ff497bb0ddf82846300cd5f4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.vcf.gz,83d45de9a858ee511963c07b5a37d679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.zarr.zip,17e3347ad5759a78a11989e4d49fcee8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46205-6296STDY10244761,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.bam,1f092c286023577d2e9bd97ad3d1fc76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.vcf.gz,d51b9ad825fa1ca1255a7f6928867753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.zarr.zip,a1f655b455f6986112c4a2803a030a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46206-6296STDY10244762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.bam,eeaf7e7ef3b1e32b99219cc65791edaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.vcf.gz,55aa7ef2d601ca4a26261b0705af4b73,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.zarr.zip,41dfc76ae8b0446d76cf784b8b1e10c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46207-6296STDY10244763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.bam,6c585941c0a346f7416c1030e4f5c1d7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.vcf.gz,ce007ea36a96461338412d7d7402f425,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.zarr.zip,b088bb1fc8c71c2595691792618ea3b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/conftest.py b/tests/anoph/conftest.py index 743191806..b650e5996 100644 --- a/tests/anoph/conftest.py +++ b/tests/anoph/conftest.py @@ -2371,7 +2371,7 @@ def __init__(self, fixture_dir): bucket="vo_adir_release_master_us_central1", releases=("1.0",), has_aims=False, - has_cohorts_by_quarter=False, + has_cohorts_by_quarter=True, has_sequence_qc=True, ) diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv index 8cc1f9da5..817953edc 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -1,48 +1,48 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS46299-6321STDY9453299,41.69,42,43,42.02,42,43,41.69,42,42,43.08,43,43,39.73,40,41,41.48,42,42,0.957,0.03433 -1,VBS46300-6321STDY9453300,52.55,53,54,53.0,54,54,52.56,53,54,54.34,55,55,49.91,51,52,52.35,53,53,0.957,0.03436 -2,VBS46301-6321STDY9453301,67.77,69,70,68.26,69,70,67.76,69,69,70.22,71,71,64.45,66,68,67.48,69,70,0.957,0.03442 -3,VBS46302-6321STDY9453302,62.53,63,64,63.09,64,64,62.5,63,64,64.97,65,65,59.1,61,62,62.21,63,64,0.958,0.03441 -4,VBS46303-6321STDY9453303,44.29,45,45,44.67,45,45,44.25,45,45,45.88,46,46,42.03,43,44,44.14,45,45,0.959,0.03424 -5,VBS46304-6321STDY9453304,63.22,64,65,63.72,64,65,63.19,64,65,65.51,66,66,59.98,61,63,63.0,64,65,0.958,0.03448 -6,VBS46305-6321STDY9453305,66.57,68,68,67.22,68,68,66.65,68,67,69.32,70,69,62.55,64,66,66.17,67,68,0.957,0.03441 -7,VBS46306-6321STDY9453306,55.32,56,57,55.87,56,57,55.26,56,57,57.67,58,58,52.19,54,55,54.9,56,57,0.957,0.03434 -8,VBS46307-6321STDY9453307,47.91,48,49,48.35,49,49,47.96,48,49,49.81,50,49,45.08,46,48,47.73,48,49,0.958,0.03415 -9,VBS46308-6321STDY9453308,60.89,62,62,61.42,62,63,60.85,62,62,63.53,64,63,57.36,59,60,60.56,62,62,0.958,0.03438 -10,VBS46309-6321STDY9453309,56.93,58,58,57.43,58,58,56.96,58,58,58.55,59,59,54.33,56,57,56.72,58,58,0.959,0.03429 -11,VBS46310-6321STDY9453310,63.49,64,64,63.85,64,64,63.43,64,65,64.99,65,65,61.5,63,63,63.23,64,64,0.958,0.03447 -12,VBS46311-6321STDY9453311,61.87,63,63,62.59,63,64,61.86,63,63,64.63,65,65,57.85,59,61,61.49,62,62,0.958,0.03439 -13,VBS46312-6321STDY9453312,73.44,75,76,73.98,75,76,73.41,75,76,75.79,76,76,69.98,72,74,73.31,75,75,0.959,0.0345 -14,VBS46313-6321STDY9453313,53.08,54,54,53.62,54,54,53.13,54,54,55.22,55,55,49.87,51,53,52.85,54,53,0.959,0.03427 -15,VBS46314-6321STDY9453314,46.94,48,48,47.42,48,48,46.97,47,48,48.91,49,49,43.98,45,46,46.76,47,48,0.959,0.03424 -16,VBS46315-6321STDY9453315,40.19,40,40,40.49,41,41,40.18,40,40,41.62,41,41,38.19,39,39,40.06,40,40,0.956,0.03426 -17,VBS46316-6321STDY9453316,50.42,51,51,50.86,51,52,50.34,51,51,52.46,53,53,47.63,49,50,50.25,51,51,0.957,0.03433 -18,VBS46317-6321STDY9453317,56.41,57,58,56.99,58,58,56.45,57,57,58.84,59,59,52.81,54,56,56.17,57,57,0.959,0.0343 -19,VBS46318-6321STDY9453318,60.31,61,62,60.96,62,62,60.39,61,61,62.89,63,63,56.35,58,59,60.12,61,62,0.961,0.03434 -20,VBS46319-6321STDY9453319,55.85,57,57,56.41,57,57,55.8,56,57,58.31,58,58,52.45,54,55,55.54,56,56,0.957,0.03435 -21,VBS46320-6321STDY9453320,53.39,54,55,53.77,54,55,53.38,54,55,55.44,56,55,50.6,52,53,53.18,54,55,0.957,0.03434 -22,VBS46321-6321STDY9453321,69.25,70,71,70.16,71,72,69.19,70,71,72.5,73,73,64.38,67,69,68.95,70,71,0.96,0.03429 -23,VBS46322-6321STDY9453322,76.33,78,78,77.0,78,79,76.25,78,78,79.39,80,80,72.09,75,76,76.0,78,78,0.958,0.03438 -24,VBS46323-6321STDY9453323,50.47,51,52,50.99,52,52,50.51,51,51,52.64,53,53,47.38,49,50,50.14,51,51,0.959,0.03426 -25,VBS46324-6321STDY9453324,47.33,48,48,47.78,48,49,47.28,48,48,49.09,49,49,44.91,46,47,47.01,48,48,0.957,0.0343 -26,VBS46325-6321STDY9453325,64.46,65,66,65.24,66,66,64.38,65,66,67.53,68,68,60.2,62,63,63.97,65,65,0.958,0.03439 -27,VBS46326-6321STDY9453326,57.67,58,59,58.34,59,59,57.73,58,58,60.27,60,60,53.65,55,57,57.48,58,59,0.96,0.03432 -28,VBS46327-6321STDY9453327,63.05,64,64,63.63,64,65,62.97,64,64,65.63,66,66,59.43,61,63,62.83,64,64,0.958,0.0344 -29,VBS46328-6321STDY9453328,56.21,57,57,56.79,57,58,56.29,57,58,58.57,59,59,52.63,54,55,55.95,57,57,0.959,0.03423 -30,VBS46329-6321STDY9453329,62.43,63,64,62.99,64,64,62.48,63,64,64.93,65,65,58.89,61,62,62.05,63,63,0.958,0.03439 -31,VBS46330-6321STDY9453330,67.2,68,69,67.98,69,69,67.11,68,68,70.18,70,70,62.79,64,66,66.97,68,69,0.958,0.03445 -32,VBS46331-6321STDY9453331,53.05,54,54,53.73,54,54,53.12,54,54,55.63,56,55,49.1,50,51,52.74,53,54,0.959,0.03424 -33,VBS46332-6321STDY9453332,32.34,32,32,32.43,32,32,32.3,32,32,33.45,33,33,30.72,31,32,32.62,33,33,0.958,0.03412 -34,VBS46333-6321STDY9453333,59.06,59,59,59.92,60,59,58.94,59,59,61.85,62,61,54.62,55,56,58.97,59,59,0.957,0.03442 -35,VBS46334-6321STDY9453334,59.96,61,61,60.67,61,61,59.99,61,61,62.7,63,63,55.97,57,58,59.49,60,61,0.958,0.0343 -36,VBS46335-6321STDY9453335,66.27,67,68,67.01,68,69,66.31,67,68,69.36,70,70,61.73,64,66,65.94,67,68,0.961,0.03436 -37,VBS46336-6321STDY9453336,54.48,55,55,55.03,56,56,54.46,55,55,56.94,57,57,51.12,52,53,54.09,55,55,0.958,0.03428 -38,VBS46337-6321STDY9453337,46.2,47,47,46.67,47,47,46.16,46,47,47.99,48,47,43.58,44,46,45.98,46,47,0.957,0.03426 -39,VBS46338-6321STDY9453338,49.41,50,50,49.9,50,51,49.54,50,50,51.4,51,51,46.42,48,48,49.09,50,50,0.959,0.03421 -40,VBS46339-6321STDY9453339,58.79,59,59,59.58,60,60,58.66,59,59,61.93,62,61,54.38,55,57,58.41,59,59,0.957,0.03436 -41,VBS46340-6321STDY9453340,55.71,56,57,56.39,57,57,55.77,56,56,58.7,59,58,51.33,53,53,55.44,56,56,0.959,0.0343 -42,VBS46341-6321STDY9453341,50.85,51,51,51.53,52,52,50.85,51,51,53.54,53,53,46.94,48,49,50.45,51,51,0.957,0.03431 -43,VBS46342-6321STDY9453342,64.95,66,66,65.69,66,66,64.93,66,66,68.1,68,68,60.45,62,63,64.55,66,66,0.96,0.03433 -44,VBS46343-6321STDY9453343,53.7,54,54,54.3,55,55,53.54,54,53,56.01,56,55,49.93,51,52,54.05,55,54,0.958,0.03425 -45,VBS46344-6321STDY9453344,40.85,41,41,41.28,41,41,40.87,41,41,42.55,42,42,38.45,39,40,40.49,41,41,0.956,0.03424 -46,VBS46345-6321STDY9453345,68.49,70,70,69.4,70,71,68.49,69,70,71.95,72,72,63.35,65,66,68.14,69,70,0.96,0.03438 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence,contam_pct,contam_LLR +VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,41.69,42,42,43.08,43,43,0.946,0.03433,, +VBS46300-6321STDY9453300,52.17,53,53,53.0,54,54,52.56,53,54,54.34,55,55,0.946,0.03436,, +VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,67.76,69,69,70.22,71,71,0.948,0.03442,, +VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,62.5,63,64,64.97,65,65,0.947,0.03441,, +VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,44.25,45,45,45.88,46,46,0.947,0.03424,, +VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,63.19,64,65,65.51,66,66,0.948,0.03448,, +VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,66.65,68,67,69.32,70,69,0.947,0.03441,, +VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,55.26,56,57,57.67,58,58,0.946,0.03434,, +VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,47.96,48,49,49.81,50,49,0.947,0.03415,, +VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,60.85,62,62,63.53,64,63,0.947,0.03438,, +VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,56.96,58,58,58.55,59,59,0.949,0.03429,, +VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.43,64,65,64.99,65,65,0.948,0.03447,, +VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,61.86,63,63,64.63,65,65,0.947,0.03439,, +VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,73.41,75,76,75.79,76,76,0.949,0.0345,, +VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,53.13,54,54,55.22,55,55,0.947,0.03427,, +VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,46.97,47,48,48.91,49,49,0.947,0.03424,, +VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,40.18,40,40,41.62,41,41,0.946,0.03426,, +VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,50.34,51,51,52.46,53,53,0.946,0.03433,, +VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,56.45,57,57,58.84,59,59,0.947,0.0343,, +VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,60.39,61,61,62.89,63,63,0.95,0.03434,, +VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,55.8,56,57,58.31,58,58,0.947,0.03435,, +VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,53.38,54,55,55.44,56,55,0.947,0.03434,, +VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,69.19,70,71,72.5,73,73,0.949,0.03429,, +VBS46322-6321STDY9453322,75.5,77,78,77.0,78,79,76.25,78,78,79.39,80,80,0.948,0.03438,, +VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,50.51,51,51,52.64,53,53,0.947,0.03426,, +VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,47.28,48,48,49.09,49,49,0.946,0.0343,, +VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,64.38,65,66,67.53,68,68,0.947,0.03439,, +VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,57.73,58,58,60.27,60,60,0.948,0.03432,, +VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,62.97,64,64,65.63,66,66,0.948,0.0344,, +VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,56.29,57,58,58.57,59,59,0.948,0.03423,, +VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,62.48,63,64,64.93,65,65,0.947,0.03439,, +VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,67.11,68,68,70.18,70,70,0.947,0.03445,, +VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,53.12,54,54,55.63,56,55,0.948,0.03424,, +VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,32.3,32,32,33.45,33,33,0.946,0.03412,, +VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,58.94,59,59,61.85,62,61,0.947,0.03442,, +VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,59.99,61,61,62.7,63,63,0.948,0.0343,, +VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,66.31,67,68,69.36,70,70,0.95,0.03436,, +VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,54.46,55,55,56.94,57,57,0.948,0.03428,, +VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,46.16,46,47,47.99,48,47,0.946,0.03426,, +VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,49.54,50,50,51.4,51,51,0.948,0.03421,, +VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,58.66,59,59,61.93,62,61,0.946,0.03436,, +VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,55.77,56,56,58.7,59,58,0.948,0.0343,, +VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,50.85,51,51,53.54,53,53,0.947,0.03431,, +VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,64.93,66,66,68.1,68,68,0.95,0.03433,, +VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,53.54,54,53,56.01,56,55,0.946,0.03425,, +VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,40.87,41,41,42.55,42,42,0.945,0.03424,, +VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,68.49,69,70,71.95,72,72,0.948,0.03438,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv index fa5b7c3ea..a8191fed0 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -1,27 +1,27 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 -1,VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 -2,VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 -3,VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 -4,VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 -5,VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 -8,VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 -9,VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 -12,VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 -13,VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 -14,VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 -15,VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 -17,VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 -18,VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 -19,VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 -20,VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 -21,VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 -22,VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 -23,VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 -24,VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 -25,VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 -26,VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 -27,VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 -28,VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 -29,VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 -30,VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence,contam_pct,contam_LLR +VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,0.983,0.01374,, +VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,0.984,0.01378,, +VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,0.984,0.01378,, +VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,0.984,0.01377,, +VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,0.984,0.01377,, +VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,0.983,0.01377,, +VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,0.981,0.01546,, +VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,0.981,0.01543,, +VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,0.981,0.01538,, +VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,0.98,0.01539,, +VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,0.982,0.01536,, +VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,0.983,0.01382,, +VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,0.984,0.01375,, +VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,0.984,0.01387,, +VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,0.984,0.0138,, +VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,0.984,0.01373,, +VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,0.984,0.01378,, +VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,0.984,0.0138,, +VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,0.984,0.01379,, +VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,0.984,0.01378,, +VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,0.984,0.01379,, +VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,0.984,0.01378,, +VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,0.984,0.01376,, +VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,0.984,0.01376,, +VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,0.984,0.01376,, +VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,0.984,0.01381,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv index 6618ab19d..0506665c9 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -1,249 +1,249 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 -1,VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 -2,VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 -3,VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 -4,VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 -5,VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 -6,VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 -8,VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 -9,VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 -10,VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 -11,VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 -12,VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 -13,VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 -14,VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 -15,VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 -16,VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 -17,VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 -19,VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 -20,VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 -21,VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 -22,VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 -23,VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 -24,VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 -25,VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 -26,VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 -27,VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 -28,VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 -29,VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 -30,VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 -31,VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 -32,VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 -33,VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 -34,VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 -35,VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 -36,VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 -37,VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 -38,VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 -39,VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 -40,VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 -41,VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 -42,VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 -43,VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 -44,VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 -45,VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 -46,VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 -47,VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 -48,VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 -49,VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 -50,VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 -51,VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 -52,VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 -53,VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 -54,VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 -56,VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 -57,VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 -58,VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 -59,VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 -60,VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 -61,VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 -62,VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 -63,VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 -64,VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 -65,VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 -66,VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 -67,VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 -68,VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 -69,VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 -70,VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 -71,VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 -72,VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 -73,VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 -74,VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 -75,VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 -76,VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 -77,VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 -79,VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 -80,VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 -81,VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 -82,VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 -83,VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 -84,VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 -85,VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 -86,VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 -87,VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 -88,VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 -89,VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 -90,VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 -91,VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 -92,VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 -93,VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 -94,VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 -95,VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 -96,VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 -97,VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 -98,VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 -99,VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 -100,VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 -101,VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 -102,VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 -103,VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 -104,VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 -105,VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 -106,VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 -107,VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 -108,VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 -109,VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 -110,VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 -111,VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 -112,VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 -113,VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 -114,VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 -115,VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 -116,VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 -117,VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 -118,VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 -119,VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 -120,VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 -121,VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 -122,VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 -123,VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 -124,VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 -125,VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 -126,VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 -127,VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 -128,VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 -129,VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 -130,VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 -131,VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 -132,VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 -133,VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 -134,VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 -135,VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 -136,VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 -137,VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 -138,VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 -139,VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 -140,VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 -141,VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 -142,VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 -143,VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 -144,VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 -145,VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 -146,VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 -147,VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 -148,VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 -149,VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 -150,VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 -151,VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 -152,VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 -153,VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 -154,VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 -155,VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 -156,VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 -157,VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 -158,VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 -159,VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 -160,VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 -161,VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 -162,VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 -163,VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 -164,VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 -165,VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 -166,VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 -167,VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 -168,VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 -169,VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 -170,VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 -171,VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 -172,VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 -173,VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 -174,VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 -175,VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 -176,VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 -177,VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 -178,VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 -179,VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 -180,VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 -181,VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 -182,VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 -183,VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 -184,VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 -185,VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 -186,VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 -187,VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 -188,VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 -189,VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 -190,VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 -191,VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 -192,VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 -193,VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 -194,VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 -195,VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 -196,VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 -197,VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 -198,VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 -199,VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 -200,VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 -201,VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 -202,VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 -203,VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 -204,VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 -205,VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 -206,VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 -207,VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 -208,VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 -209,VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 -210,VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 -211,VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 -212,VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 -213,VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 -214,VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 -215,VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 -216,VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 -217,VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 -218,VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 -219,VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 -220,VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 -221,VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 -222,VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 -223,VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 -224,VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 -225,VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 -226,VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 -227,VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 -228,VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 -229,VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 -230,VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 -231,VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 -232,VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 -233,VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 -234,VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 -235,VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 -236,VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 -237,VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 -238,VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 -239,VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 -240,VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 -241,VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 -242,VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 -243,VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 -244,VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 -245,VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 -246,VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 -247,VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 -248,VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 -249,VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 -250,VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 -251,VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence,contam_pct,contam_LLR +VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,0.982,0.01406,, +VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,0.983,0.01392,, +VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,0.982,0.0143,, +VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,0.976,0.01665,, +VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,0.982,0.01416,, +VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,0.982,0.01417,, +VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,0.978,0.01598,, +VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,0.983,0.01387,, +VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,0.983,0.01393,, +VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,0.983,0.01379,, +VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,0.983,0.01377,, +VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,0.984,0.01377,, +VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,0.983,0.01379,, +VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,0.981,0.01793,, +VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,0.983,0.01394,, +VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,0.981,0.01532,, +VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,0.983,0.01378,, +VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,0.982,0.01402,, +VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,0.982,0.01468,, +VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,0.983,0.01383,, +VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,0.983,0.01393,, +VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,0.983,0.01381,, +VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,0.982,0.01433,, +VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,0.983,0.01384,, +VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,0.981,0.01738,, +VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,0.981,0.01615,, +VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,0.982,0.01476,, +VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,0.981,0.01622,, +VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,0.983,0.01386,, +VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,0.983,0.01378,, +VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,0.983,0.01382,, +VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,0.981,0.01644,, +VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,0.982,0.01476,, +VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,0.982,0.01442,, +VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,0.981,0.01679,, +VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,0.982,0.01496,, +VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,0.982,0.0154,, +VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,0.982,0.01467,, +VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,0.982,0.01413,, +VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,0.982,0.01552,, +VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,0.982,0.01448,, +VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,0.983,0.01384,, +VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,0.982,0.01453,, +VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,0.983,0.01378,, +VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,0.983,0.01396,, +VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,0.983,0.01386,, +VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,0.983,0.01388,, +VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,0.983,0.01381,, +VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,0.983,0.01376,, +VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,0.985,0.01378,, +VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,0.984,0.01377,, +VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,0.985,0.01374,, +VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,0.982,0.01404,, +VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,0.981,0.01549,, +VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,0.984,0.0138,, +VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,0.984,0.01377,, +VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,0.985,0.01374,, +VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,0.984,0.01374,, +VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,0.983,0.01384,, +VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,0.983,0.01401,, +VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,0.983,0.01377,, +VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,0.983,0.01388,, +VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,0.982,0.01405,, +VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,0.983,0.0139,, +VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,0.982,0.01456,, +VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,0.983,0.01405,, +VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,0.979,0.01477,, +VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,0.983,0.01398,, +VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,0.983,0.01384,, +VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,0.982,0.01428,, +VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,0.958,0.03367,, +VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,0.982,0.01398,, +VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,0.983,0.01381,, +VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,0.979,0.01493,, +VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,0.982,0.01427,, +VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,0.983,0.01379,, +VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,0.979,0.01483,, +VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,0.981,0.01462,, +VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,0.981,0.01466,, +VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,0.982,0.01419,, +VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,0.983,0.0138,, +VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,0.982,0.01395,, +VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,0.981,0.01464,, +VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,0.983,0.01383,, +VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,0.983,0.01379,, +VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,0.983,0.01398,, +VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,0.956,0.03347,, +VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,0.983,0.01387,, +VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,0.983,0.0139,, +VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,0.983,0.01396,, +VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,0.981,0.01493,, +VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,0.983,0.01381,, +VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,0.956,0.03349,, +VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,0.957,0.03355,, +VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,0.984,0.01376,, +VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,0.983,0.01378,, +VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,0.984,0.01376,, +VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,0.984,0.01378,, +VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,0.984,0.01375,, +VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,0.984,0.01378,, +VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,0.984,0.01377,, +VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,0.984,0.01379,, +VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,0.984,0.01442,, +VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,0.983,0.0138,, +VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,0.984,0.0138,, +VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,0.983,0.01378,, +VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,0.984,0.01377,, +VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,0.983,0.01379,, +VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,0.983,0.01383,, +VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,0.984,0.01375,, +VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,0.984,0.0138,, +VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,0.983,0.01392,, +VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,0.984,0.01378,, +VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,0.983,0.01375,, +VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,0.983,0.01391,, +VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,0.984,0.01397,, +VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,0.983,0.01378,, +VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,0.983,0.01383,, +VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,0.983,0.0139,, +VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,0.983,0.01376,, +VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,0.981,0.01484,, +VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,0.984,0.01376,, +VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,0.983,0.01401,, +VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,0.983,0.01381,, +VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,0.982,0.01407,, +VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,0.984,0.01378,, +VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,0.983,0.01383,, +VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,0.983,0.01381,, +VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,0.982,0.01422,, +VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,0.983,0.01379,, +VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,0.984,0.0138,, +VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,0.984,0.01373,, +VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,0.983,0.01379,, +VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,0.983,0.01379,, +VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,0.983,0.01378,, +VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,0.984,0.01374,, +VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,0.984,0.01376,, +VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,0.983,0.01371,, +VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,0.983,0.01378,, +VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,0.984,0.01381,, +VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,0.983,0.01379,, +VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,0.984,0.01375,, +VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,0.983,0.01381,, +VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,0.983,0.01378,, +VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,0.984,0.01378,, +VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,0.976,0.01475,, +VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,0.984,0.01377,, +VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,0.984,0.01376,, +VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,0.984,0.01376,, +VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,0.984,0.01377,, +VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,0.983,0.01381,, +VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,0.984,0.01377,, +VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,0.984,0.01378,, +VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,0.983,0.01376,, +VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,0.983,0.01378,, +VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,0.984,0.0138,, +VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,0.984,0.01373,, +VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,0.983,0.01375,, +VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,0.983,0.01377,, +VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,0.983,0.01382,, +VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,0.983,0.01375,, +VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,0.983,0.01385,, +VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,0.983,0.01385,, +VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,0.984,0.01413,, +VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,0.983,0.01389,, +VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,0.983,0.01378,, +VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,0.983,0.01375,, +VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,0.982,0.01384,, +VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,0.983,0.01381,, +VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,0.984,0.01386,, +VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,0.983,0.01379,, +VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,0.984,0.0138,, +VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,0.984,0.01376,, +VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,0.983,0.01378,, +VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,0.983,0.01377,, +VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,0.983,0.01381,, +VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,0.983,0.01379,, +VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,0.983,0.01378,, +VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,0.984,0.01377,, +VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,0.983,0.01376,, +VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,0.983,0.01375,, +VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,0.984,0.01375,, +VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,0.984,0.01375,, +VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,0.983,0.01375,, +VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,0.984,0.01373,, +VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,0.984,0.01379,, +VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,0.984,0.01377,, +VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,0.984,0.01378,, +VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,0.984,0.01373,, +VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,0.983,0.01374,, +VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,0.983,0.01381,, +VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,0.984,0.01387,, +VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,0.984,0.01378,, +VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,0.983,0.01382,, +VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,0.983,0.01539,, +VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,0.984,0.01375,, +VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,0.984,0.01375,, +VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,0.983,0.01374,, +VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,0.983,0.01374,, +VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,0.983,0.01376,, +VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,0.984,0.01379,, +VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,0.983,0.01378,, +VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,0.984,0.01375,, +VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,0.984,0.01375,, +VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,0.984,0.01375,, +VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,0.983,0.01381,, +VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,0.984,0.0138,, +VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,0.984,0.01378,, +VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,0.984,0.01378,, +VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,0.984,0.01375,, +VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,0.984,0.01377,, +VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,0.984,0.01372,, +VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,0.982,0.01453,, +VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,0.984,0.0138,, +VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,0.984,0.01373,, +VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,0.984,0.01377,, +VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,0.983,0.01374,, +VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,0.984,0.01374,, +VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,0.984,0.01378,, +VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,0.984,0.01377,, +VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,0.983,0.01377,, +VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,0.984,0.01375,, +VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,0.983,0.01382,, +VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,0.984,0.01379,, +VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,0.984,0.01372,, +VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,0.984,0.01376,, +VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,0.984,0.01376,, +VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,0.983,0.01382,, +VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,0.984,0.01374,, +VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,0.984,0.01375,, +VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,0.984,0.01383,, +VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,0.983,0.0138,, +VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,0.984,0.01379,, +VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,0.984,0.01375,, +VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,0.983,0.0138,, +VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,0.984,0.01379,, +VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,0.983,0.01379,, +VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,0.984,0.0138,, +VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,0.983,0.01377,, +VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,0.983,0.01382,, +VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,0.983,0.01377,, +VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,0.984,0.01374,, +VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,0.984,0.01377,, +VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,0.984,0.01378,, +VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,0.984,0.01378,, +VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,0.984,0.01374,, +VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,0.984,0.01378,, +VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,0.984,0.01378,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv index d6c6cebde..bdccdd345 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/curation/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -1,220 +1,220 @@ -,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -0,VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 -1,VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 -2,VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 -3,VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 -5,VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 -6,VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 -7,VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 -8,VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 -9,VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 -10,VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 -11,VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 -12,VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 -13,VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 -14,VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 -15,VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 -16,VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 -17,VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 -18,VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 -19,VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 -20,VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 -21,VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 -22,VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 -23,VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 -24,VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 -25,VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 -26,VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 -27,VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 -28,VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 -29,VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 -30,VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 -31,VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 -32,VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 -33,VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 -34,VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 -35,VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 -36,VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 -37,VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 -38,VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 -39,VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 -40,VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 -41,VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 -42,VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 -43,VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 -44,VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 -45,VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 -46,VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 -47,VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 -48,VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 -49,VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 -50,VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 -51,VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 -52,VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 -53,VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 -54,VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 -55,VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 -56,VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 -57,VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 -58,VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 -59,VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 -60,VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 -61,VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 -62,VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 -63,VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 -64,VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 -65,VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 -66,VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 -67,VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 -68,VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 -69,VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 -70,VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 -71,VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 -72,VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 -73,VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 -74,VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 -75,VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 -77,VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 -78,VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 -79,VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 -81,VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 -82,VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 -83,VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 -84,VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 -85,VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 -86,VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 -87,VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 -88,VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 -89,VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 -90,VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 -91,VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 -92,VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 -93,VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 -94,VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 -95,VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 -96,VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 -97,VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 -98,VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 -99,VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 -100,VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 -101,VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 -102,VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 -103,VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 -104,VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 -105,VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 -106,VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 -107,VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 -108,VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 -109,VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 -110,VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 -111,VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 -112,VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 -113,VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 -114,VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 -115,VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 -116,VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 -117,VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 -118,VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 -119,VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 -120,VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 -121,VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 -122,VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 -123,VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 -124,VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 -125,VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 -126,VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 -127,VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 -128,VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 -129,VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 -130,VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 -131,VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 -132,VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 -133,VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 -134,VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 -135,VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 -136,VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 -137,VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 -138,VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 -139,VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 -140,VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 -141,VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 -142,VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 -143,VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 -144,VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 -145,VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 -146,VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 -147,VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 -148,VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 -149,VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 -150,VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 -151,VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 -152,VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 -153,VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 -154,VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 -155,VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 -156,VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 -157,VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 -158,VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 -159,VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 -160,VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 -161,VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 -162,VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 -163,VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 -164,VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 -165,VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 -166,VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 -167,VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 -168,VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 -169,VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 -170,VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 -171,VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 -172,VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 -173,VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 -174,VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 -175,VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 -176,VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 -178,VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 -179,VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 -180,VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 -181,VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 -182,VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 -183,VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 -184,VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 -185,VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 -186,VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 -187,VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 -188,VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 -189,VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 -190,VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 -191,VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 -192,VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 -193,VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 -194,VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 -195,VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 -196,VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 -197,VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 -198,VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 -199,VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 -200,VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 -201,VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 -202,VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 -203,VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 -204,VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 -205,VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 -206,VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 -207,VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 -208,VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 -209,VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 -210,VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 -211,VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 -212,VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 -213,VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 -214,VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 -215,VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 -216,VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 -217,VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 -218,VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 -219,VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 -220,VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 -221,VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 -222,VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,frac_gen_cov,divergence,contam_pct,contam_LLR +VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,0.952,0.03652,, +VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,0.959,0.03382,, +VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,0.952,0.03517,, +VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,0.954,0.03525,, +VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,0.955,0.03414,, +VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,0.955,0.03482,, +VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,0.957,0.03366,, +VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,0.957,0.03361,, +VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,0.956,0.03393,, +VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,0.957,0.03383,, +VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,0.958,0.03386,, +VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,0.957,0.03365,, +VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,0.958,0.03387,, +VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,0.957,0.03359,, +VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,0.957,0.03362,, +VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,0.957,0.03363,, +VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,0.955,0.03396,, +VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,0.957,0.0336,, +VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,0.959,0.03383,, +VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,0.959,0.03395,, +VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,0.958,0.03387,, +VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,0.959,0.03382,, +VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,0.957,0.03358,, +VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,0.957,0.03366,, +VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,0.957,0.03363,, +VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,0.958,0.03388,, +VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,0.955,0.0338,, +VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,0.957,0.03363,, +VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,0.958,0.03385,, +VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,0.957,0.03369,, +VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,0.957,0.03363,, +VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,0.957,0.03363,, +VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,0.958,0.03362,, +VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,0.958,0.03389,, +VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,0.959,0.03389,, +VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,0.958,0.03375,, +VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,0.958,0.03383,, +VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,0.956,0.03361,, +VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,0.957,0.03365,, +VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,0.958,0.03382,, +VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,0.957,0.03365,, +VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,0.956,0.03397,, +VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,0.957,0.03357,, +VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,0.956,0.03364,, +VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,0.956,0.03361,, +VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,0.958,0.03385,, +VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,0.956,0.03355,, +VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,0.955,0.0337,, +VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,0.957,0.03365,, +VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,0.956,0.03359,, +VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,0.957,0.03364,, +VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,0.956,0.03359,, +VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,0.956,0.03361,, +VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,0.958,0.03384,, +VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,0.956,0.03383,, +VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,0.958,0.03385,, +VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,0.958,0.03386,, +VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,0.958,0.03385,, +VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,0.957,0.03379,, +VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,0.957,0.03381,, +VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,0.958,0.03379,, +VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,0.959,0.03395,, +VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,0.957,0.03372,, +VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,0.958,0.03371,, +VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,0.958,0.03371,, +VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,0.955,0.03376,, +VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,0.958,0.03383,, +VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,0.951,0.03565,, +VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,0.959,0.03397,, +VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,0.958,0.03385,, +VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,0.958,0.03372,, +VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,0.958,0.03372,, +VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,0.957,0.03365,, +VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,0.956,0.03358,, +VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,0.956,0.03396,, +VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,0.952,0.03534,, +VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,0.956,0.03361,, +VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,0.958,0.0338,, +VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,0.957,0.03364,, +VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,0.958,0.03388,, +VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,0.958,0.0339,, +VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,0.955,0.03359,, +VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,0.952,0.03507,, +VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,0.959,0.03395,, +VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,0.957,0.03378,, +VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,0.955,0.03388,, +VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,0.957,0.03381,, +VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,0.957,0.03376,, +VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,0.958,0.0338,, +VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,0.958,0.03387,, +VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,0.957,0.03379,, +VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,0.958,0.0338,, +VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,0.956,0.03358,, +VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,0.956,0.03397,, +VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,0.958,0.0338,, +VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,0.956,0.03387,, +VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,0.957,0.03379,, +VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,0.956,0.03363,, +VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,0.955,0.03352,, +VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,0.957,0.03382,, +VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,0.957,0.0338,, +VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,0.957,0.03378,, +VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,0.957,0.03378,, +VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,0.957,0.03358,, +VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,0.956,0.03359,, +VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,0.956,0.03365,, +VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,0.956,0.03394,, +VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,0.957,0.03365,, +VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,0.952,0.03478,, +VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,0.957,0.03359,, +VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,0.957,0.03378,, +VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,0.958,0.03386,, +VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,0.958,0.03587,, +VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,0.957,0.03378,, +VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,0.956,0.03357,, +VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,0.955,0.03362,, +VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,0.958,0.03379,, +VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,0.957,0.03364,, +VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,0.957,0.03377,, +VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,0.956,0.03358,, +VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,0.957,0.03384,, +VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,0.956,0.03359,, +VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,0.956,0.03361,, +VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,0.958,0.03386,, +VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,0.956,0.03398,, +VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,0.957,0.03366,, +VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,0.956,0.03383,, +VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,0.957,0.03361,, +VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,0.957,0.03362,, +VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,0.957,0.03387,, +VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,0.956,0.03397,, +VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,0.958,0.03375,, +VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,0.958,0.03387,, +VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,0.958,0.03383,, +VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,0.957,0.0338,, +VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,0.955,0.03391,, +VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,0.957,0.03357,, +VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,0.957,0.03379,, +VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,0.956,0.0339,, +VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,0.957,0.03365,, +VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,0.955,0.03396,, +VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,0.956,0.03358,, +VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,0.958,0.03382,, +VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,0.956,0.03385,, +VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,0.957,0.03382,, +VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,0.956,0.03359,, +VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,0.957,0.0338,, +VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,0.957,0.0338,, +VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,0.956,0.0336,, +VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,0.956,0.03355,, +VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,0.956,0.03361,, +VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,0.955,0.03387,, +VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,0.957,0.03383,, +VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,0.957,0.03381,, +VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,0.958,0.03387,, +VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,0.958,0.03377,, +VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,0.955,0.03437,, +VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,0.957,0.03385,, +VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,0.957,0.03378,, +VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,0.957,0.03379,, +VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,0.953,0.03403,, +VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,0.957,0.03381,, +VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,0.956,0.03354,, +VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,0.957,0.03377,, +VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,0.957,0.03379,, +VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,0.956,0.03391,, +VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,0.955,0.0336,, +VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,0.956,0.03356,, +VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,0.956,0.03359,, +VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,0.956,0.03394,, +VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,0.956,0.03396,, +VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,0.961,0.03411,, +VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,0.957,0.03381,, +VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,0.95,0.03358,, +VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,0.956,0.0336,, +VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,0.957,0.03361,, +VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,0.957,0.03379,, +VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,0.957,0.03376,, +VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,0.957,0.03358,, +VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,0.957,0.03367,, +VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,0.955,0.03352,, +VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,0.954,0.03396,, +VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,0.956,0.03363,, +VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,0.957,0.03378,, +VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,0.955,0.03366,, +VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,0.956,0.034,, +VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,0.957,0.03362,, +VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,0.956,0.03414,, +VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,0.957,0.0337,, +VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,0.956,0.03355,, +VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,0.957,0.03378,, +VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,0.958,0.03383,, +VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,0.955,0.03357,, +VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,0.956,0.0336,, +VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,0.958,0.03393,, +VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,0.954,0.03397,, +VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,0.957,0.03364,, +VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,0.957,0.03361,, +VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,0.957,0.03366,, +VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,0.958,0.0338,, +VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,0.958,0.03381,, +VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,0.954,0.03431,, +VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,0.956,0.03355,, +VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,0.954,0.03387,, +VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,0.957,0.03377,, +VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,0.956,0.03359,, +VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,0.956,0.03356,, +VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,0.959,0.03387,, +VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,0.958,0.03387,, +VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,0.958,0.03386,, +VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,0.958,0.03382,, +VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,0.957,0.03363,, +VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,0.958,0.03384,, +VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,0.955,0.03393,, +VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,0.958,0.03386,, +VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,0.957,0.03363,, +VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,0.957,0.03365,, +VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,0.958,0.03385,, +VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,0.956,0.03361,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/samples.meta.csv new file mode 100644 index 000000000..13623bc96 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/samples.meta.csv @@ -0,0 +1,303 @@ +sample_id,derived_sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude +VBS09378-4248STDY7308980,VBS09378-4248STDY7308980,CB-2-00264,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09382-4248STDY7308981,VBS09382-4248STDY7308981,CB-2-00258,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09397-4248STDY7308982,VBS09397-4248STDY7308982,CB-2-00384,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09460-4248STDY7308986,VBS09460-4248STDY7308986,CB-2-02960,Brandy St. Laurent,Cambodia,Preah Kleang,2016,6,13.667,104.982 +VBS09466-4248STDY7308989,VBS09466-4248STDY7308989,CB-2-04070,Brandy St. Laurent,Cambodia,Preah Kleang,2016,11,13.667,104.982 +VBS09467-4248STDY7308990,VBS09467-4248STDY7308990,CB-2-04121,Brandy St. Laurent,Cambodia,Preah Kleang,2016,11,13.667,104.982 +VBS09477-4248STDY7308994,VBS09477-4248STDY7308994,CB-2-05011,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09482-4248STDY7308996,VBS09482-4248STDY7308996,CB-2-05167,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09483-4248STDY7308997,VBS09483-4248STDY7308997,CB-2-03873,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09489-4248STDY7308999,VBS09489-4248STDY7308999,CB-2-03851,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09511-4248STDY7309002,VBS09511-4248STDY7309002,CB-2-05051,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09535-4248STDY7309003,VBS09535-4248STDY7309003,KV-22-00709,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09540-4248STDY7309004,VBS09540-4248STDY7309004,KV-22-00499,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09541-4248STDY7309005,VBS09541-4248STDY7309005,KV-22-00097,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09542-4248STDY7309006,VBS09542-4248STDY7309006,KV-22-00687,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09545-4248STDY7309007,VBS09545-4248STDY7309007,KV-22-00557,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09546-4248STDY7309008,VBS09546-4248STDY7309008,KV-22-00105,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09547-4248STDY7309009,VBS09547-4248STDY7309009,KV-22-00495,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09549-4248STDY7309010,VBS09549-4248STDY7309010,KV-22-00700,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09551-4248STDY7309011,VBS09551-4248STDY7309011,KV-22-00050,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09552-4248STDY7309012,VBS09552-4248STDY7309012,KV-22-00486,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09553-4248STDY7309013,VBS09553-4248STDY7309013,KV-22-00686,Brandy St. Laurent,Cambodia,Preah Kleang,2014,3,13.667,104.982 +VBS09555-4248STDY7309015,VBS09555-4248STDY7309015,KV-21-01436,Brandy St. Laurent,Cambodia,Chean Mok,2014,4,13.770,104.920 +VBS09558-4248STDY7309017,VBS09558-4248STDY7309017,KV-21-00871,Brandy St. Laurent,Cambodia,Chean Mok,2014,4,13.770,104.920 +VBS09570-4248STDY7309020,VBS09570-4248STDY7309020,KV-22-00231,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS09571-4248STDY7309021,VBS09571-4248STDY7309021,KV-22-00179,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS09572-4248STDY7309022,VBS09572-4248STDY7309022,KV-22-00340,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS09575-4248STDY7309023,VBS09575-4248STDY7309023,KV-21-01419,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09579-4248STDY7309025,VBS09579-4248STDY7309025,KV-21-01288,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09580-4248STDY7309026,VBS09580-4248STDY7309026,KV-21-01472,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09581-4248STDY7309027,VBS09581-4248STDY7309027,KV-21-01456,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09582-4248STDY7309028,VBS09582-4248STDY7309028,KV-21-01748,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09583-4248STDY7309029,VBS09583-4248STDY7309029,KV-21-01460,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09590-4248STDY7309030,VBS09590-4248STDY7309030,KV-21-01705,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09593-4248STDY7309031,VBS09593-4248STDY7309031,KV-21-00992,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09639-4248STDY7309033,VBS09639-4248STDY7309033,KV-21-02733,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09644-4248STDY7309035,VBS09644-4248STDY7309035,KV-21-02520,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09648-4248STDY7309037,VBS09648-4248STDY7309037,KV-21-02599,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09649-4248STDY7309038,VBS09649-4248STDY7309038,KV-21-02632,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09650-4248STDY7309039,VBS09650-4248STDY7309039,KV-21-02658,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09651-4248STDY7309040,VBS09651-4248STDY7309040,KV-22-01945,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09652-4248STDY7309041,VBS09652-4248STDY7309041,KV-22-00838,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09654-4248STDY7309042,VBS09654-4248STDY7309042,KV-22-01031,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09655-4248STDY7309043,VBS09655-4248STDY7309043,KV-22-00846,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09656-4248STDY7309044,VBS09656-4248STDY7309044,KV-22-01046,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09657-4248STDY7309045,VBS09657-4248STDY7309045,KV-22-01950,Brandy St. Laurent,Cambodia,Preah Kleang,2014,9,13.667,104.982 +VBS09660-4248STDY7309047,VBS09660-4248STDY7309047,KV-21-02473,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09661-4248STDY7309048,VBS09661-4248STDY7309048,KV-21-02381,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09662-4248STDY7309049,VBS09662-4248STDY7309049,KV-21-03163,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09663-4248STDY7309050,VBS09663-4248STDY7309050,KV-21-02412,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09672-4248STDY7309051,VBS09672-4248STDY7309051,KV-21-02464,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09673-4248STDY7309052,VBS09673-4248STDY7309052,KV-21-02430,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09674-4248STDY7309053,VBS09674-4248STDY7309053,KV-22-01576,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09675-4248STDY7309054,VBS09675-4248STDY7309054,KV-22-01646,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09677-4248STDY7309056,VBS09677-4248STDY7309056,KV-22-01583,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09681-4248STDY7309058,VBS09681-4248STDY7309058,KV-22-00811,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09685-4248STDY7309059,VBS09685-4248STDY7309059,KV-22-01001,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09686-4248STDY7309060,VBS09686-4248STDY7309060,KV-22-00981,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09689-4248STDY7309061,VBS09689-4248STDY7309061,KV-22-00314,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09695-4248STDY7309062,VBS09695-4248STDY7309062,KV-21-03694,Brandy St. Laurent,Cambodia,Chean Mok,2014,12,13.770,104.920 +VBS09699-4248STDY7309063,VBS09699-4248STDY7309063,KV-21-03771,Brandy St. Laurent,Cambodia,Chean Mok,2014,12,13.770,104.920 +VBS09712-4248STDY7309064,VBS09712-4248STDY7309064,KV-21-03629,Brandy St. Laurent,Cambodia,Chean Mok,2014,12,13.770,104.920 +VBS09713-4248STDY7309065,VBS09713-4248STDY7309065,KV-21-03397,Brandy St. Laurent,Cambodia,Chean Mok,2014,12,13.770,104.920 +VBS09730-4248STDY7309066,VBS09730-4248STDY7309066,KV-21-03898,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09734-4248STDY7309067,VBS09734-4248STDY7309067,KV-21-02983,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09738-4248STDY7309069,VBS09738-4248STDY7309069,KV-21-02218,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09744-4248STDY7309072,VBS09744-4248STDY7309072,KV-21-02985,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09747-4248STDY7309076,VBS09747-4248STDY7309076,KV-22-00907,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09765-4248STDY7309077,VBS09765-4248STDY7309077,KV-31-03653,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09778-4248STDY7309079,VBS09778-4248STDY7309079,KV-32-04546,Brandy St. Laurent,Cambodia,Sayas,2015,1,13.548,107.025 +VBS09790-4248STDY7309081,VBS09790-4248STDY7309081,KV-31-00552,Brandy St. Laurent,Cambodia,Chamkar San,2014,3,13.595,106.995 +VBS09802-4248STDY7309083,VBS09802-4248STDY7309083,KV-32-01581,Brandy St. Laurent,Cambodia,Sayas,2014,3,13.548,107.025 +VBS09815-4248STDY7309084,VBS09815-4248STDY7309084,KV-31-00581,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09817-4248STDY7309085,VBS09817-4248STDY7309085,KV-31-00599,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09829-4248STDY7309086,VBS09829-4248STDY7309086,KV-31-00631,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09832-4248STDY7309087,VBS09832-4248STDY7309087,KV-32-01436,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS09833-4248STDY7309088,VBS09833-4248STDY7309088,KV-32-01430,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS09836-4248STDY7309089,VBS09836-4248STDY7309089,KV-32-01611,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS09839-4248STDY7309090,VBS09839-4248STDY7309090,KV-32-01464,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS09843-4248STDY7309091,VBS09843-4248STDY7309091,KV-32-01387,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS09851-4248STDY7309092,VBS09851-4248STDY7309092,KV-31-01313,Brandy St. Laurent,Cambodia,Chamkar San,2014,6,13.595,106.995 +VBS09852-4248STDY7309093,VBS09852-4248STDY7309093,KV-31-01315,Brandy St. Laurent,Cambodia,Chamkar San,2014,6,13.595,106.995 +VBS09858-4248STDY7309094,VBS09858-4248STDY7309094,KV-31-01336,Brandy St. Laurent,Cambodia,Chamkar San,2014,6,13.595,106.995 +VBS09861-4248STDY7309095,VBS09861-4248STDY7309095,KV-31-01277,Brandy St. Laurent,Cambodia,Chamkar San,2014,6,13.595,106.995 +VBS09871-4248STDY7309097,VBS09871-4248STDY7309097,KV-31-01412,Brandy St. Laurent,Cambodia,Chamkar San,2014,6,13.595,106.995 +VBS09917-4248STDY7309098,VBS09917-4248STDY7309098,KV-31-02129,Brandy St. Laurent,Cambodia,Chamkar San,2014,9,13.595,106.995 +VBS09921-4248STDY7309100,VBS09921-4248STDY7309100,KV-32-04634,Brandy St. Laurent,Cambodia,Sayas,2014,9,13.548,107.025 +VBS09957-4248STDY7309104,VBS09957-4248STDY7309104,KV-32-03883,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09963-4248STDY7309105,VBS09963-4248STDY7309105,KV-32-04246,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09966-4248STDY7309106,VBS09966-4248STDY7309106,KV-32-04479,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09967-4248STDY7309107,VBS09967-4248STDY7309107,KV-32-04323,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09971-4248STDY7309108,VBS09971-4248STDY7309108,KV-32-04207,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09979-4248STDY7309109,VBS09979-4248STDY7309109,KV-31-03418,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS10021-4248STDY7309112,VBS10021-4248STDY7309112,15908,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10022-4248STDY7309113,VBS10022-4248STDY7309113,14716,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10025-4248STDY7309114,VBS10025-4248STDY7309114,15914,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10026-4248STDY7309115,VBS10026-4248STDY7309115,15038,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10027-4248STDY7309116,VBS10027-4248STDY7309116,15021,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10028-4248STDY7309117,VBS10028-4248STDY7309117,14608,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10029-4248STDY7309118,VBS10029-4248STDY7309118,14770,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10032-4248STDY7309119,VBS10032-4248STDY7309119,14964,Brandy St. Laurent,Cambodia,Thmar Da,2011,4,12.155,102.735 +VBS10033-4248STDY7309120,VBS10033-4248STDY7309120,15142,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10034-4248STDY7309121,VBS10034-4248STDY7309121,15848,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10035-4248STDY7309122,VBS10035-4248STDY7309122,14600,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10036-4248STDY7309123,VBS10036-4248STDY7309123,15300,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10038-4248STDY7309124,VBS10038-4248STDY7309124,14930,Brandy St. Laurent,Cambodia,Thmar Da,2011,4,12.155,102.735 +VBS10039-4248STDY7309125,VBS10039-4248STDY7309125,14748,Brandy St. Laurent,Cambodia,Thmar Da,2010,12,12.155,102.735 +VBS10040-4248STDY7309126,VBS10040-4248STDY7309126,15928,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10042-4248STDY7309127,VBS10042-4248STDY7309127,15930,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10043-4248STDY7309128,VBS10043-4248STDY7309128,15810,Brandy St. Laurent,Cambodia,Thmar Da,2011,2,12.155,102.735 +VBS10044-4248STDY7309129,VBS10044-4248STDY7309129,9309,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10049-4248STDY7309130,VBS10049-4248STDY7309130,14842,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10052-4248STDY7309131,VBS10052-4248STDY7309131,15167,Brandy St. Laurent,Cambodia,Thmar Da,2011,2,12.155,102.735 +VBS10055-4248STDY7309132,VBS10055-4248STDY7309132,14892,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS10062-4248STDY7309133,VBS10062-4248STDY7309133,16042,Brandy St. Laurent,Cambodia,Thmar Da,2011,4,12.155,102.735 +VBS10064-4248STDY7309134,VBS10064-4248STDY7309134,14857,Brandy St. Laurent,Cambodia,Thmar Da,2011,3,12.155,102.735 +VBS16552-4248STDY7309135,VBS16552-4248STDY7309135,KV-21-00482,Brandy St. Laurent,Cambodia,Chean Mok,2014,3,13.770,104.920 +VBS16553-4248STDY7309136,VBS16553-4248STDY7309136,KV-21-00281,Brandy St. Laurent,Cambodia,Chean Mok,2014,3,13.770,104.920 +VBS16555-4248STDY7309137,VBS16555-4248STDY7309137,KV-21-00759,Brandy St. Laurent,Cambodia,Chean Mok,2014,3,13.770,104.920 +VBS16558-4248STDY7309138,VBS16558-4248STDY7309138,KV-21-00805,Brandy St. Laurent,Cambodia,Chean Mok,2014,3,13.770,104.920 +VBS16559-4248STDY7309139,VBS16559-4248STDY7309139,KV-21-00776,Brandy St. Laurent,Cambodia,Chean Mok,2014,3,13.770,104.920 +VBS16592-4248STDY7309143,VBS16592-4248STDY7309143,KV-21-02137,Brandy St. Laurent,Cambodia,Chean Mok,2014,7,13.770,104.920 +VBS16604-4248STDY7309145,VBS16604-4248STDY7309145,KV-22-01026,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS16619-4248STDY7309146,VBS16619-4248STDY7309146,KV-32-00513,Brandy St. Laurent,Cambodia,Sayas,2014,2,13.548,107.025 +VBS16627-4248STDY7309147,VBS16627-4248STDY7309147,KV-32-01364,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS16631-4248STDY7309148,VBS16631-4248STDY7309148,KV-32-03516,Brandy St. Laurent,Cambodia,Sayas,2014,9,13.548,107.025 +VBS16646-4248STDY7309149,VBS16646-4248STDY7309149,1635,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16648-4248STDY7309150,VBS16648-4248STDY7309150,1649,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16649-4248STDY7309151,VBS16649-4248STDY7309151,1652,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16650-4248STDY7309152,VBS16650-4248STDY7309152,1658,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16651-4248STDY7309153,VBS16651-4248STDY7309153,1721,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16652-4248STDY7309154,VBS16652-4248STDY7309154,1740,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16654-4248STDY7309155,VBS16654-4248STDY7309155,1972,Brandy St. Laurent,Cambodia,Thmar Da,2010,1,12.155,102.735 +VBS16664-4248STDY7309156,VBS16664-4248STDY7309156,3897,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16686-4248STDY7309158,VBS16686-4248STDY7309158,4191,Brandy St. Laurent,Cambodia,Thmar Da,2010,2,12.155,102.735 +VBS16694-4248STDY7309160,VBS16694-4248STDY7309160,4399,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16695-4248STDY7309161,VBS16695-4248STDY7309161,4409,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16698-4248STDY7309162,VBS16698-4248STDY7309162,4418,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16703-4248STDY7309163,VBS16703-4248STDY7309163,4626,Brandy St. Laurent,Cambodia,Thmar Da,2010,2,12.155,102.735 +VBS16707-4248STDY7309164,VBS16707-4248STDY7309164,4883,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16713-4248STDY7309165,VBS16713-4248STDY7309165,4932,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16724-4248STDY7309166,VBS16724-4248STDY7309166,5051,Brandy St. Laurent,Cambodia,Thmar Da,2010,3,12.155,102.735 +VBS16732-4248STDY7309167,VBS16732-4248STDY7309167,5440,Brandy St. Laurent,Cambodia,Thmar Da,2010,2,12.155,102.735 +VBS16736-4248STDY7309168,VBS16736-4248STDY7309168,5506,Brandy St. Laurent,Cambodia,Thmar Da,2010,2,12.155,102.735 +VBS09376-4248STDY7918389,VBS09376-4248STDY7918389,CB-2-00373,Brandy St. Laurent,Cambodia,Preah Kleang,2016,9,13.667,104.982 +VBS09377-4248STDY7918390,VBS09377-4248STDY7918390,CB-2-00328,Brandy St. Laurent,Cambodia,Preah Kleang,2016,9,13.667,104.982 +VBS09380-4248STDY7918392,VBS09380-4248STDY7918392,CB-2-00466,Brandy St. Laurent,Cambodia,Preah Kleang,2016,9,13.667,104.982 +VBS09381-4248STDY7918393,VBS09381-4248STDY7918393,CB-2-00268,Brandy St. Laurent,Cambodia,Preah Kleang,2016,9,13.667,104.982 +VBS09385-4248STDY7918394,VBS09385-4248STDY7918394,CB-2-00280,Brandy St. Laurent,Cambodia,Preah Kleang,2016,9,13.667,104.982 +VBS09386-4248STDY7918395,VBS09386-4248STDY7918395,CB-2-00372,Brandy St. Laurent,Cambodia,Preah Kleang,2016,10,13.667,104.982 +VBS09389-3429STDY7351727,VBS09389-3429STDY7351727,CB-2-00416,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09390-3429STDY7351728,VBS09390-3429STDY7351728,CB-2-00431,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09392-4248STDY7918396,VBS09392-4248STDY7918396,CB-2-00474,Brandy St. Laurent,Cambodia,Preah Kleang,2016,11,13.667,104.982 +VBS09393-4248STDY7918397,VBS09393-4248STDY7918397,CB-2-00371,Brandy St. Laurent,Cambodia,Preah Kleang,2016,12,13.667,104.982 +VBS09394-4248STDY7918398,VBS09394-4248STDY7918398,CB-2-00453,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09395-4248STDY7918399,VBS09395-4248STDY7918399,CB-2-00036,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09396-4248STDY7918400,VBS09396-4248STDY7918400,CB-2-00357,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09401-4248STDY7918401,VBS09401-4248STDY7918401,CB-2-00362,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09402-4248STDY7918402,VBS09402-4248STDY7918402,CB-2-00374,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09403-3429STDY7351725,VBS09403-3429STDY7351725,CB-2-00212,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09404-4248STDY7918405,VBS09404-4248STDY7918405,CB-2-00472,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09405-4248STDY7918406,VBS09405-4248STDY7918406,CB-2-00283,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09406-4248STDY7918407,VBS09406-4248STDY7918407,CB-2-00116,Brandy St. Laurent,Cambodia,Preah Kleang,2016,3,13.667,104.982 +VBS09449-4248STDY7918414,VBS09449-4248STDY7918414,CB-2-00908,Brandy St. Laurent,Cambodia,Preah Kleang,2016,6,13.667,104.982 +VBS09486-4248STDY7918429,VBS09486-4248STDY7918429,CB-2-03806,Brandy St. Laurent,Cambodia,Preah Kleang,2016,2,13.667,104.982 +VBS09510-4248STDY7918433,VBS09510-4248STDY7918433,CB-2-05191,Brandy St. Laurent,Cambodia,Preah Kleang,2016,1,13.667,104.982 +VBS09512-4248STDY7918434,VBS09512-4248STDY7918434,CB-2-05084,Brandy St. Laurent,Cambodia,Preah Kleang,2016,2,13.667,104.982 +VBS09522-4248STDY7918438,VBS09522-4248STDY7918438,CB-2-05467,Brandy St. Laurent,Cambodia,Preah Kleang,2016,4,13.667,104.982 +VBS09523-4248STDY7918439,VBS09523-4248STDY7918439,CB-2-05257,Brandy St. Laurent,Cambodia,Preah Kleang,2016,4,13.667,104.982 +VBS09526-4248STDY7918440,VBS09526-4248STDY7918440,KV-21-01130,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09530-4248STDY7918441,VBS09530-4248STDY7918441,KV-21-00533,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09533-4248STDY7918442,VBS09533-4248STDY7918442,KV-21-01077,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09543-4248STDY7918445,VBS09543-4248STDY7918445,KV-22-00580,Brandy St. Laurent,Cambodia,Preah Kleang,2014,6,13.667,104.982 +VBS09544-4248STDY7918446,VBS09544-4248STDY7918446,KV-22-00035,Brandy St. Laurent,Cambodia,Preah Kleang,2014,6,13.667,104.982 +VBS09550-4248STDY7918447,VBS09550-4248STDY7918447,KV-22-00489,Brandy St. Laurent,Cambodia,Preah Kleang,2014,7,13.667,104.982 +VBS09578-4248STDY7918455,VBS09578-4248STDY7918455,KV-21-01491,Brandy St. Laurent,Cambodia,Chean Mok,2014,8,13.770,104.920 +VBS09584-3429STDY7351712,VBS09584-3429STDY7351712,KV-21-01465,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS09592-4248STDY7918457,VBS09592-4248STDY7918457,KV-21-01645,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09594-4248STDY7918458,VBS09594-4248STDY7918458,KV-21-00860,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09604-4248STDY7918460,VBS09604-4248STDY7918460,KV-22-00648,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS09664-4248STDY7918477,VBS09664-4248STDY7918477,KV-21-02326,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09665-4248STDY7918478,VBS09665-4248STDY7918478,KV-21-02352,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09667-4248STDY7918480,VBS09667-4248STDY7918480,KV-21-02332,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09668-4248STDY7918481,VBS09668-4248STDY7918481,KV-21-02375,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09669-4248STDY7918482,VBS09669-4248STDY7918482,KV-21-02396,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09670-4248STDY7918483,VBS09670-4248STDY7918483,KV-21-02446,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09671-4248STDY7918484,VBS09671-4248STDY7918484,KV-21-02382,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS09682-4248STDY7918485,VBS09682-4248STDY7918485,KV-22-00470,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS09683-4248STDY7918486,VBS09683-4248STDY7918486,KV-22-01667,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS09688-4248STDY7918489,VBS09688-4248STDY7918489,KV-22-01141,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS09700-4248STDY7918492,VBS09700-4248STDY7918492,KV-21-02947,Brandy St. Laurent,Cambodia,Chean Mok,2014,11,13.770,104.920 +VBS09706-4248STDY7918495,VBS09706-4248STDY7918495,KV-21-03577,Brandy St. Laurent,Cambodia,Chean Mok,2014,12,13.770,104.920 +VBS09732-4248STDY7918503,VBS09732-4248STDY7918503,KV-21-02974,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09733-4248STDY7918504,VBS09733-4248STDY7918504,KV-21-03830,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09742-4248STDY7918506,VBS09742-4248STDY7918506,KV-21-02796,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS09749-4248STDY7918510,VBS09749-4248STDY7918510,KV-22-00873,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09750-4248STDY7918512,VBS09750-4248STDY7918512,KV-22-00988,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09751-4248STDY7918513,VBS09751-4248STDY7918513,KV-22-01139,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09752-4248STDY7918514,VBS09752-4248STDY7918514,KV-22-01532,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09753-4248STDY7918515,VBS09753-4248STDY7918515,KV-22-01120,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09754-4248STDY7918516,VBS09754-4248STDY7918516,KV-22-01641,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS09755-4248STDY7918517,VBS09755-4248STDY7918517,KV-21-00276,Brandy St. Laurent,Cambodia,Chean Mok,2014,8,13.770,104.920 +VBS09757-4248STDY7918518,VBS09757-4248STDY7918518,KV-21-00230,Brandy St. Laurent,Cambodia,Chean Mok,2014,8,13.770,104.920 +VBS09763-4248STDY7918519,VBS09763-4248STDY7918519,KV-21-00757,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09764-4248STDY7918520,VBS09764-4248STDY7918520,KV-21-01172,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS09766-4248STDY7918521,VBS09766-4248STDY7918521,KV-31-03722,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09767-4248STDY7918522,VBS09767-4248STDY7918522,KV-31-03654,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09774-4248STDY7918524,VBS09774-4248STDY7918524,KV-31-04664,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09779-4248STDY7918526,VBS09779-4248STDY7918526,KV-32-04581,Brandy St. Laurent,Cambodia,Sayas,2015,1,13.548,107.025 +VBS09780-4248STDY7918527,VBS09780-4248STDY7918527,KV-32-04572,Brandy St. Laurent,Cambodia,Sayas,2015,1,13.548,107.025 +VBS09784-4248STDY7918528,VBS09784-4248STDY7918528,KV-31-04653,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09788-4248STDY7918530,VBS09788-4248STDY7918530,KV-31-04789,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09789-4248STDY7918531,VBS09789-4248STDY7918531,KV-32-04537,Brandy St. Laurent,Cambodia,Sayas,2015,1,13.548,107.025 +VBS09793-4248STDY7918532,VBS09793-4248STDY7918532,KV-32-01098,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09796-4248STDY7918534,VBS09796-4248STDY7918534,KV-32-01327,Brandy St. Laurent,Cambodia,Sayas,2014,7,13.548,107.025 +VBS09804-3429STDY7351716,VBS09804-3429STDY7351716,KV-31-00536,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09805-4248STDY7918537,VBS09805-4248STDY7918537,KV-31-00248,Brandy St. Laurent,Cambodia,Chamkar San,2014,2,13.595,106.995 +VBS09806-4248STDY7918538,VBS09806-4248STDY7918538,KV-31-00208,Brandy St. Laurent,Cambodia,Chamkar San,2014,2,13.595,106.995 +VBS09813-4248STDY7918539,VBS09813-4248STDY7918539,KV-31-00505,Brandy St. Laurent,Cambodia,Chamkar San,2014,3,13.595,106.995 +VBS09820-4248STDY7918542,VBS09820-4248STDY7918542,KV-31-00848,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09822-3429STDY7351713,VBS09822-3429STDY7351713,KV-31-00730,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09824-3429STDY7351714,VBS09824-3429STDY7351714,KV-31-00852,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09825-3429STDY7351715,VBS09825-3429STDY7351715,KV-31-00624,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09826-4248STDY7918544,VBS09826-4248STDY7918544,KV-31-00872,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09828-4248STDY7918545,VBS09828-4248STDY7918545,KV-31-00691,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09830-4248STDY7918546,VBS09830-4248STDY7918546,KV-31-00888,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09831-4248STDY7918547,VBS09831-4248STDY7918547,KV-32-01357,Brandy St. Laurent,Cambodia,Sayas,2014,5,13.548,107.025 +VBS09834-4248STDY7918548,VBS09834-4248STDY7918548,KV-32-01423,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09835-4248STDY7918549,VBS09835-4248STDY7918549,KV-32-01545,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09837-4248STDY7918550,VBS09837-4248STDY7918550,KV-32-01550,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09838-4248STDY7918551,VBS09838-4248STDY7918551,KV-32-01360,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09840-4248STDY7918552,VBS09840-4248STDY7918552,KV-32-01406,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09841-4248STDY7918553,VBS09841-4248STDY7918553,KV-32-01405,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09842-4248STDY7918554,VBS09842-4248STDY7918554,KV-32-01384,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS09844-4248STDY7918555,VBS09844-4248STDY7918555,KV-32-01858,Brandy St. Laurent,Cambodia,Sayas,2014,7,13.548,107.025 +VBS09847-4248STDY7918558,VBS09847-4248STDY7918558,KV-32-01864,Brandy St. Laurent,Cambodia,Sayas,2014,7,13.548,107.025 +VBS09849-4248STDY7918560,VBS09849-4248STDY7918560,KV-32-01873,Brandy St. Laurent,Cambodia,Sayas,2014,7,13.548,107.025 +VBS09853-4248STDY7918561,VBS09853-4248STDY7918561,KV-31-01264,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09855-4248STDY7918562,VBS09855-4248STDY7918562,KV-31-01330,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09857-4248STDY7918564,VBS09857-4248STDY7918564,KV-31-01373,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09862-4248STDY7918566,VBS09862-4248STDY7918566,KV-31-01239,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09865-4248STDY7918569,VBS09865-4248STDY7918569,KV-31-01258,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09872-4248STDY7918571,VBS09872-4248STDY7918571,KV-31-01346,Brandy St. Laurent,Cambodia,Chamkar San,2014,11,13.595,106.995 +VBS09874-4248STDY7918572,VBS09874-4248STDY7918572,KV-31-01462,Brandy St. Laurent,Cambodia,Chamkar San,2014,12,13.595,106.995 +VBS09875-4248STDY7918573,VBS09875-4248STDY7918573,KV-31-01573,Brandy St. Laurent,Cambodia,Chamkar San,2014,12,13.595,106.995 +VBS09878-4248STDY7918575,VBS09878-4248STDY7918575,KV-31-01461,Brandy St. Laurent,Cambodia,Chamkar San,2014,12,13.595,106.995 +VBS09898-4248STDY7918582,VBS09898-4248STDY7918582,KV-31-01807,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS09912-4248STDY7918589,VBS09912-4248STDY7918589,KV-31-02263,Brandy St. Laurent,Cambodia,Chamkar San,2014,7,13.595,106.995 +VBS09914-3429STDY7351719,VBS09914-3429STDY7351719,KV-31-02166,Brandy St. Laurent,Cambodia,Chamkar San,2014,9,13.595,106.995 +VBS09927-3429STDY7351720,VBS09927-3429STDY7351720,KV-31-02522,Brandy St. Laurent,Cambodia,Chamkar San,2014,10,13.595,106.995 +VBS09932-3429STDY7351721,VBS09932-3429STDY7351721,KV-32-05072,Brandy St. Laurent,Cambodia,Sayas,2014,10,13.548,107.025 +VBS09950-4248STDY7918611,VBS09950-4248STDY7918611,KV-31-03177,Brandy St. Laurent,Cambodia,Chamkar San,2014,8,13.595,106.995 +VBS09951-4248STDY7918612,VBS09951-4248STDY7918612,KV-31-03267,Brandy St. Laurent,Cambodia,Chamkar San,2014,8,13.595,106.995 +VBS09954-4248STDY7918613,VBS09954-4248STDY7918613,KV-32-04036,Brandy St. Laurent,Cambodia,Sayas,2014,10,13.548,107.025 +VBS09956-4248STDY7918614,VBS09956-4248STDY7918614,KV-32-03876,Brandy St. Laurent,Cambodia,Sayas,2014,10,13.548,107.025 +VBS09959-4248STDY7918615,VBS09959-4248STDY7918615,KV-32-03844,Brandy St. Laurent,Cambodia,Sayas,2014,10,13.548,107.025 +VBS09968-4248STDY7918619,VBS09968-4248STDY7918619,KV-32-04372,Brandy St. Laurent,Cambodia,Sayas,2014,12,13.548,107.025 +VBS09976-4248STDY7918620,VBS09976-4248STDY7918620,KV-31-03352,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09978-4248STDY7918622,VBS09978-4248STDY7918622,KV-31-03602,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09980-4248STDY7918623,VBS09980-4248STDY7918623,KV-31-03536,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09982-4248STDY7918625,VBS09982-4248STDY7918625,KV-31-03479,Brandy St. Laurent,Cambodia,Chamkar San,2015,1,13.595,106.995 +VBS09983-4248STDY7918626,VBS09983-4248STDY7918626,KV-31-01500,Brandy St. Laurent,Cambodia,Chamkar San,2014,11,13.595,106.995 +VBS16554-4248STDY7918627,VBS16554-4248STDY7918627,KV-21-00426,Brandy St. Laurent,Cambodia,Chean Mok,2014,8,13.770,104.920 +VBS16556-4248STDY7918628,VBS16556-4248STDY7918628,KV-21-00539,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS16563-4248STDY7918631,VBS16563-4248STDY7918631,KV-21-01094,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16568-4248STDY7918632,VBS16568-4248STDY7918632,KV-21-01815,Brandy St. Laurent,Cambodia,Chean Mok,2014,11,13.770,104.920 +VBS16569-4248STDY7918633,VBS16569-4248STDY7918633,KV-21-01792,Brandy St. Laurent,Cambodia,Chean Mok,2014,11,13.770,104.920 +VBS16570-4248STDY7918634,VBS16570-4248STDY7918634,KV-22-00430,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS16571-4248STDY7918635,VBS16571-4248STDY7918635,KV-22-00723,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS16574-4248STDY7918636,VBS16574-4248STDY7918636,KV-22-00449,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS16575-4248STDY7918637,VBS16575-4248STDY7918637,KV-22-00395,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS16576-4248STDY7918638,VBS16576-4248STDY7918638,KV-22-00299,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS16577-4248STDY7918639,VBS16577-4248STDY7918639,KV-22-00321,Brandy St. Laurent,Cambodia,Preah Kleang,2014,4,13.667,104.982 +VBS16580-4248STDY7918641,VBS16580-4248STDY7918641,KV-21-00843,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS16581-4248STDY7918642,VBS16581-4248STDY7918642,KV-21-01613,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS16582-4248STDY7918643,VBS16582-4248STDY7918643,KV-21-00874,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16583-3429STDY7351710,VBS16583-3429STDY7351710,KV-21-01750,Brandy St. Laurent,Cambodia,Chean Mok,2014,6,13.770,104.920 +VBS16584-4248STDY7918644,VBS16584-4248STDY7918644,KV-21-00620,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16586-4248STDY7918645,VBS16586-4248STDY7918645,KV-21-01091,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16587-4248STDY7918646,VBS16587-4248STDY7918646,KV-21-00903,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16591-4248STDY7918648,VBS16591-4248STDY7918648,KV-22-01008,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS16593-4248STDY7918649,VBS16593-4248STDY7918649,KV-21-03231,Brandy St. Laurent,Cambodia,Chean Mok,2014,9,13.770,104.920 +VBS16600-4248STDY7918650,VBS16600-4248STDY7918650,KV-21-02455,Brandy St. Laurent,Cambodia,Chean Mok,2014,10,13.770,104.920 +VBS16601-4248STDY7918651,VBS16601-4248STDY7918651,KV-22-01563,Brandy St. Laurent,Cambodia,Preah Kleang,2014,11,13.667,104.982 +VBS16602-4248STDY7918652,VBS16602-4248STDY7918652,KV-22-01581,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS16603-4248STDY7918653,VBS16603-4248STDY7918653,KV-22-01168,Brandy St. Laurent,Cambodia,Preah Kleang,2014,12,13.667,104.982 +VBS16606-4248STDY7918654,VBS16606-4248STDY7918654,KV-22-00922,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS16607-4248STDY7918655,VBS16607-4248STDY7918655,KV-22-00858,Brandy St. Laurent,Cambodia,Preah Kleang,2014,10,13.667,104.982 +VBS16608-4248STDY7918656,VBS16608-4248STDY7918656,KV-21-03339,Brandy St. Laurent,Cambodia,Chean Mok,2014,11,13.770,104.920 +VBS16610-4248STDY7918658,VBS16610-4248STDY7918658,KV-21-02098,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS16611-4248STDY7918659,VBS16611-4248STDY7918659,KV-21-03895,Brandy St. Laurent,Cambodia,Chean Mok,2015,1,13.770,104.920 +VBS16616-4248STDY7918661,VBS16616-4248STDY7918661,KV-22-00222,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS16617-4248STDY7918662,VBS16617-4248STDY7918662,KV-22-01135,Brandy St. Laurent,Cambodia,Preah Kleang,2015,1,13.667,104.982 +VBS16618-4248STDY7918663,VBS16618-4248STDY7918663,KV-32-00305,Brandy St. Laurent,Cambodia,Sayas,2014,4,13.548,107.025 +VBS16620-4248STDY7918664,VBS16620-4248STDY7918664,KV-31-00737,Brandy St. Laurent,Cambodia,Chamkar San,2014,3,13.595,106.995 +VBS16621-4248STDY7918665,VBS16621-4248STDY7918665,KV-32-01225,Brandy St. Laurent,Cambodia,Sayas,2014,7,13.548,107.025 +VBS16622-4248STDY7918666,VBS16622-4248STDY7918666,KV-31-00682,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 +VBS16624-4248STDY7918667,VBS16624-4248STDY7918667,KV-32-01591,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS16625-4248STDY7918668,VBS16625-4248STDY7918668,KV-32-01499,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS16626-4248STDY7918669,VBS16626-4248STDY7918669,KV-32-01465,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS16628-4248STDY7918670,VBS16628-4248STDY7918670,KV-32-01454,Brandy St. Laurent,Cambodia,Sayas,2014,6,13.548,107.025 +VBS16630-4248STDY7918671,VBS16630-4248STDY7918671,KV-31-01949,Brandy St. Laurent,Cambodia,Chamkar San,2014,4,13.595,106.995 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/sequence_qc_stats.csv new file mode 100644 index 000000000..30d6dbedc --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/sequence_qc_stats.csv @@ -0,0 +1,303 @@ +,sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB663610,median_cov_KB663610,mode_cov_KB663610,mean_cov_KB663721,median_cov_KB663721,mode_cov_KB663721,mean_cov_KB663832,median_cov_KB663832,mode_cov_KB663832,mean_cov_KB663943,median_cov_KB663943,mode_cov_KB663943,mean_cov_KB664054,median_cov_KB664054,mode_cov_KB664054,frac_gen_cov,divergence,contam_pct,contam_LLR +0,VBS09378-4248STDY7308980,45.31,45,45,46.0,46,46,45.33,45,45,44.16,44,44,45.34,45,45,45.02,45,45,0.984,0.017,1.923,2985.036 +1,VBS09382-4248STDY7308981,39.66,39,39,40.34,40,40,39.58,39,39,38.61,38,38,39.55,39,39,39.65,39,39,0.984,0.017,2.848,4527.874 +2,VBS09397-4248STDY7308982,44.95,44,44,46.06,46,45,44.64,44,44,43.13,42,42,44.55,44,43,45.63,45,44,0.984,0.017,2.694,4603.611 +6,VBS09460-4248STDY7308986,37.24,37,35,38.37,38,37,36.8,36,35,35.44,35,33,36.89,36,35,37.99,37,35,0.984,0.017,2.195,2679.245 +9,VBS09466-4248STDY7308989,38.79,38,37,39.85,39,39,38.48,38,37,37.1,36,36,38.47,38,37,39.26,38,38,0.984,0.017,2.018,2556.379 +10,VBS09467-4248STDY7308990,37.31,37,36,38.39,38,38,36.94,37,36,35.7,35,34,37.08,37,36,37.65,37,36,0.984,0.017,2.719,3997.331 +14,VBS09477-4248STDY7308994,35.17,35,34,36.1,36,35,34.81,34,33,33.84,33,33,34.9,34,34,35.54,35,34,0.984,0.017,1.921,2308.875 +16,VBS09482-4248STDY7308996,37.47,37,37,38.42,38,38,37.18,37,37,35.99,35,35,37.2,37,36,37.87,37,36,0.984,0.017,2.182,2826.487 +17,VBS09483-4248STDY7308997,46.96,45,43,49.08,48,46,46.34,45,43,43.41,41,38,46.45,45,42,48.08,46,45,0.984,0.017,1.987,3068.332 +19,VBS09489-4248STDY7308999,35.52,35,34,36.47,36,35,35.18,35,34,34.08,33,33,35.3,35,34,35.95,35,34,0.984,0.017,2.474,2885.976 +22,VBS09511-4248STDY7309002,40.42,40,40,41.39,41,40,40.15,40,39,38.94,39,38,40.21,40,39,40.69,40,39,0.984,0.017,2.365,3435.056 +23,VBS09535-4248STDY7309003,38.64,38,38,39.71,39,39,38.31,38,38,36.97,36,36,38.33,38,37,39.13,38,37,0.984,0.018,3.147,5700.932 +24,VBS09540-4248STDY7309004,59.41,56,49,61.76,59,55,58.5,55,49,55.21,51,41,58.33,55,49,62.06,58,51,0.984,0.017,1.425,2115.483 +25,VBS09541-4248STDY7309005,42.99,42,41,44.55,44,42,42.47,42,40,40.33,39,38,42.49,41,41,44.15,43,42,0.984,0.017,1.815,2540.393 +26,VBS09542-4248STDY7309006,35.73,35,34,37.02,36,36,35.29,35,33,33.78,33,32,35.39,35,34,36.26,35,34,0.984,0.017,2.513,3167.23 +27,VBS09545-4248STDY7309007,36.08,36,35,36.87,37,36,35.88,36,35,34.67,34,34,35.91,36,35,36.5,36,35,0.984,0.017,2.33,2828.396 +28,VBS09546-4248STDY7309008,31.14,31,30,32.05,32,31,30.89,30,30,29.68,29,28,30.86,30,30,31.58,31,30,0.984,0.017,2.942,3757.173 +29,VBS09547-4248STDY7309009,51.82,51,51,53.1,53,53,51.43,51,51,49.75,49,49,51.56,51,50,52.34,52,51,0.984,0.017,1.908,3168.616 +30,VBS09549-4248STDY7309010,37.95,37,36,39.12,39,38,37.59,37,36,36.03,35,35,37.55,37,36,38.72,38,37,0.984,0.017,2.778,4077.416 +31,VBS09551-4248STDY7309011,42.16,41,39,43.81,43,41,41.63,41,39,39.34,38,36,41.38,40,39,43.69,42,41,0.984,0.017,2.17,3225.56 +32,VBS09552-4248STDY7309012,30.41,30,28,31.61,31,30,29.95,29,28,28.63,28,26,29.97,29,28,31.11,30,29,0.983,0.017,2.366,2572.631 +33,VBS09553-4248STDY7309013,40.08,40,39,41.37,41,40,39.71,39,39,38.19,38,37,39.74,39,38,40.4,40,38,0.984,0.017,2.325,3377.131 +35,VBS09555-4248STDY7309015,40.56,40,39,41.66,41,41,40.31,40,39,38.74,38,37,40.28,40,39,41.03,40,39,0.984,0.017,1.81,2361.649 +37,VBS09558-4248STDY7309017,36.01,35,34,37.19,37,36,35.7,35,34,34.25,34,33,35.67,35,34,36.31,35,34,0.984,0.017,2.42,3059.231 +40,VBS09570-4248STDY7309020,25.58,25,25,26.17,26,25,25.47,25,25,24.64,24,24,25.36,25,25,25.84,25,25,0.983,0.018,3.263,3409.58 +41,VBS09571-4248STDY7309021,33.77,33,33,34.64,34,34,33.55,33,33,32.51,32,32,33.53,33,33,33.99,33,32,0.984,0.017,2.755,3655.926 +42,VBS09572-4248STDY7309022,39.52,39,38,40.74,40,39,39.08,38,38,37.55,37,35,39.21,38,37,40.24,39,38,0.984,0.017,2.483,3600.917 +43,VBS09575-4248STDY7309023,31.9,31,31,32.76,32,32,31.62,31,31,30.54,30,30,31.7,31,30,32.26,32,31,0.984,0.017,2.738,3364.031 +45,VBS09579-4248STDY7309025,48.63,48,48,49.69,50,49,48.45,48,48,46.96,47,46,48.36,48,48,48.81,48,48,0.985,0.017,2.711,5803.981 +46,VBS09580-4248STDY7309026,41.29,41,41,42.05,42,42,41.17,41,40,39.99,40,40,41.08,41,41,41.58,41,40,0.984,0.017,2.864,5038.697 +47,VBS09581-4248STDY7309027,37.75,38,37,38.37,38,38,37.62,37,37,36.63,36,36,37.63,37,37,38.07,38,37,0.984,0.017,2.332,2913.467 +48,VBS09582-4248STDY7309028,37.61,37,37,38.42,38,38,37.47,37,37,36.26,36,36,37.4,37,37,37.85,37,37,0.984,0.017,2.497,3431.834 +49,VBS09583-4248STDY7309029,36.48,36,36,37.45,37,37,36.25,36,35,35.06,35,34,36.27,36,35,36.61,36,35,0.984,0.017,2.544,3405.507 +50,VBS09590-4248STDY7309030,40.64,40,40,41.37,41,41,40.6,40,40,39.1,39,38,40.44,40,39,41.19,41,40,0.985,0.017,3.552,6824.95 +51,VBS09593-4248STDY7309031,46.87,46,46,47.97,48,47,46.61,46,45,44.96,44,44,46.6,46,45,47.44,47,45,0.984,0.017,2.211,3717.181 +53,VBS09639-4248STDY7309033,56.72,56,55,58.67,58,57,56.09,55,55,53.74,53,52,56.13,55,55,57.59,56,55,0.986,0.017,3.715,13079.771 +55,VBS09644-4248STDY7309035,53.22,52,49,55.06,54,51,52.91,52,50,49.8,48,46,52.71,51,49,54.38,53,50,0.986,0.017,3.861,12282.078 +57,VBS09648-4248STDY7309037,46.2,46,45,47.72,47,47,45.77,45,44,43.98,43,43,45.76,45,44,46.62,46,45,0.985,0.017,3.093,7138.944 +58,VBS09649-4248STDY7309038,42.79,43,42,43.72,44,43,42.53,42,42,41.42,41,41,42.6,42,42,42.97,42,42,0.985,0.017,3.952,9897.481 +59,VBS09650-4248STDY7309039,41.84,41,39,43.44,43,41,41.32,40,39,39.32,38,36,41.44,40,39,42.59,41,39,0.984,0.017,2.312,3291.479 +60,VBS09651-4248STDY7309040,42.92,42,42,44.01,44,43,42.65,42,42,41.13,41,40,42.65,42,41,43.41,43,42,0.984,0.017,2.516,4097.289 +61,VBS09652-4248STDY7309041,51.57,51,50,52.99,52,52,51.16,51,50,49.2,48,47,51.11,50,50,52.44,52,50,0.984,0.017,1.972,3284.821 +62,VBS09654-4248STDY7309042,36.84,36,35,38.26,37,36,36.36,35,34,34.58,33,32,36.34,35,34,37.77,36,36,0.984,0.017,2.836,3833.553 +63,VBS09655-4248STDY7309043,42.0,42,41,42.89,43,42,41.87,42,41,40.51,40,40,41.79,42,42,42.19,42,41,0.984,0.017,2.07,2699.257 +64,VBS09656-4248STDY7309044,32.25,31,30,33.36,33,32,31.89,31,30,30.48,29,28,32.0,31,30,32.73,32,30,0.984,0.017,2.671,3197.513 +65,VBS09657-4248STDY7309045,45.32,43,40,47.42,45,42,44.44,42,40,42.01,39,36,44.51,42,40,47.02,44,40,0.984,0.017,1.782,2624.554 +67,VBS09660-4248STDY7309047,40.64,40,40,41.58,41,41,40.41,40,40,39.17,39,38,40.44,40,40,40.85,40,40,0.984,0.017,1.823,2298.417 +68,VBS09661-4248STDY7309048,29.86,29,28,30.81,30,29,29.51,29,28,28.45,28,27,29.6,29,28,30.26,29,28,0.983,0.017,2.576,2847.156 +69,VBS09662-4248STDY7309049,31.75,31,31,32.55,32,32,31.58,31,31,30.54,30,30,31.63,31,31,31.81,31,31,0.984,0.017,2.635,3237.564 +70,VBS09663-4248STDY7309050,53.97,53,53,55.61,55,54,53.54,53,52,51.41,51,50,53.51,53,53,54.56,54,53,0.984,0.017,1.963,3722.655 +71,VBS09672-4248STDY7309051,47.49,47,46,48.85,49,48,47.16,47,46,45.42,45,44,47.18,47,46,47.79,47,46,0.984,0.017,2.207,3915.348 +72,VBS09673-4248STDY7309052,38.09,38,37,39.08,39,38,37.84,37,37,36.63,36,36,37.79,37,37,38.35,38,37,0.984,0.017,1.943,2404.557 +73,VBS09674-4248STDY7309053,43.04,43,43,43.71,44,43,43.02,43,43,41.76,42,41,42.83,43,43,43.33,43,43,0.985,0.017,2.852,4906.765 +74,VBS09675-4248STDY7309054,35.61,35,35,36.24,36,36,35.46,35,35,34.46,34,34,35.5,35,35,35.93,35,35,0.984,0.017,2.581,3217.736 +76,VBS09677-4248STDY7309056,28.84,28,28,29.56,29,29,28.7,28,28,27.57,27,27,28.55,28,27,29.28,29,28,0.983,0.017,2.505,2426.183 +78,VBS09681-4248STDY7309058,42.75,43,42,43.41,43,43,42.74,43,42,41.25,41,41,42.64,42,42,43.21,43,43,0.984,0.017,2.172,2824.79 +79,VBS09685-4248STDY7309059,30.62,30,30,31.4,31,30,30.36,30,29,29.37,29,28,30.44,30,29,31.02,30,29,0.984,0.017,3.176,3832.934 +80,VBS09686-4248STDY7309060,37.71,37,37,38.49,38,38,37.49,37,37,36.42,36,36,37.6,37,37,38.02,38,37,0.984,0.017,2.18,2695.109 +81,VBS09689-4248STDY7309061,31.74,31,31,32.62,32,32,31.51,31,30,30.35,30,29,31.46,31,30,32.09,31,31,0.984,0.017,2.397,2526.372 +82,VBS09695-4248STDY7309062,35.44,35,35,36.12,36,35,35.29,35,35,34.34,34,34,35.21,35,35,35.71,35,35,0.984,0.017,2.259,2807.338 +83,VBS09699-4248STDY7309063,29.77,29,29,30.57,30,29,29.47,29,28,28.49,28,27,29.48,29,29,30.37,30,29,0.983,0.017,3.195,3531.887 +84,VBS09712-4248STDY7309064,27.58,27,25,28.61,28,27,27.2,26,25,25.86,25,23,27.3,26,25,28.32,27,25,0.983,0.017,3.491,3263.33 +85,VBS09713-4248STDY7309065,38.4,38,37,39.36,39,39,38.22,38,37,36.89,36,36,38.11,38,37,38.69,38,37,0.984,0.017,2.486,3299.713 +86,VBS09730-4248STDY7309066,43.68,42,40,45.44,44,42,43.03,42,40,40.66,39,36,43.18,42,39,45.06,43,40,0.983,0.018,2.014,3430.467 +87,VBS09734-4248STDY7309067,26.32,26,24,27.27,27,25,25.99,25,24,24.67,24,22,25.95,25,24,27.17,26,25,0.983,0.017,2.447,2228.986 +89,VBS09738-4248STDY7309069,32.87,32,31,33.89,33,33,32.61,32,31,31.08,30,29,32.52,32,31,33.53,33,31,0.984,0.017,2.46,2842.198 +92,VBS09744-4248STDY7309072,36.77,36,35,37.86,37,37,36.51,36,35,35.1,34,34,36.51,36,35,37.02,36,35,0.984,0.017,3.213,5490.283 +94,VBS09747-4248STDY7309076,41.53,39,36,43.17,41,37,41.06,39,36,38.69,36,31,40.86,39,37,42.88,40,38,0.984,0.017,1.807,2287.416 +95,VBS09765-4248STDY7309077,47.78,46,45,49.04,48,46,47.66,46,45,45.37,44,42,47.59,46,45,48.28,47,45,0.983,0.018,2.067,3674.349 +97,VBS09778-4248STDY7309079,41.72,41,39,42.86,42,41,41.36,40,39,39.52,38,37,41.41,40,38,42.8,41,40,0.984,0.017,2.623,4210.464 +98,VBS09790-4248STDY7309081,38.17,38,38,38.72,39,38,38.04,38,38,37.13,37,37,38.18,38,37,38.43,38,38,0.984,0.017,2.246,2944.072 +100,VBS09802-4248STDY7309083,26.92,26,26,27.47,27,26,26.75,26,26,25.89,25,25,26.81,26,25,27.33,27,26,0.983,0.017,3.067,2779.335 +101,VBS09815-4248STDY7309084,26.75,26,25,27.57,27,26,26.47,26,26,25.4,25,24,26.5,26,25,27.32,26,25,0.983,0.017,2.279,2379.015 +102,VBS09817-4248STDY7309085,31.56,31,30,32.31,32,31,31.29,31,30,30.18,30,29,31.44,31,30,32.14,31,30,0.984,0.017,1.839,1939.531 +103,VBS09829-4248STDY7309086,30.94,30,29,31.74,31,30,30.58,30,29,29.52,29,28,30.73,30,29,31.7,31,30,0.983,0.017,2.358,2423.001 +104,VBS09832-4248STDY7309087,32.65,31,30,33.89,33,31,32.11,31,30,30.67,29,28,32.32,31,30,33.54,32,30,0.983,0.017,3.272,4233.871 +105,VBS09833-4248STDY7309088,34.56,34,32,35.84,35,34,34.1,33,32,32.55,31,30,34.22,33,32,35.2,34,33,0.983,0.017,3.101,4386.574 +106,VBS09836-4248STDY7309089,33.71,33,32,34.83,34,33,33.36,33,32,31.9,31,30,33.41,33,32,34.28,33,32,0.983,0.018,1.814,1996.802 +107,VBS09839-4248STDY7309090,29.68,29,28,30.6,30,29,29.3,29,28,28.3,27,26,29.39,29,28,30.21,29,28,0.984,0.017,2.283,2394.637 +108,VBS09843-4248STDY7309091,49.24,48,47,50.65,50,49,48.8,48,47,46.7,45,44,48.92,48,47,50.2,49,47,0.984,0.018,2.181,4150.759 +109,VBS09851-4248STDY7309092,52.24,51,49,53.85,52,51,51.82,50,49,49.16,47,45,51.82,50,49,53.55,51,49,0.984,0.017,1.928,3267.79 +110,VBS09852-4248STDY7309093,37.46,36,35,38.33,37,36,37.36,37,36,35.71,35,33,37.4,36,35,37.88,37,36,0.983,0.017,1.764,2321.597 +111,VBS09858-4248STDY7309094,40.09,39,38,41.22,40,40,39.73,39,38,38.0,37,36,39.72,39,38,41.14,40,38,0.983,0.018,2.275,3511.486 +112,VBS09861-4248STDY7309095,32.53,32,31,33.29,33,32,32.23,32,31,31.06,30,29,32.43,32,31,33.25,32,31,0.983,0.017,1.758,1947.365 +114,VBS09871-4248STDY7309097,33.6,33,32,34.34,34,33,33.46,33,32,32.17,31,30,33.6,33,32,33.9,33,33,0.984,0.017,2.746,3925.441 +115,VBS09917-4248STDY7309098,46.9,45,42,48.48,47,44,46.51,45,42,44.06,42,37,46.33,44,42,48.12,45,42,0.984,0.017,2.62,5210.992 +117,VBS09921-4248STDY7309100,32.91,32,32,33.66,33,33,32.65,32,31,31.61,31,30,32.74,32,32,33.42,33,31,0.983,0.018,1.892,2153.977 +121,VBS09957-4248STDY7309104,37.91,37,37,38.82,38,38,37.57,37,36,36.3,36,35,37.75,37,37,38.57,38,37,0.983,0.018,1.747,2372.085 +122,VBS09963-4248STDY7309105,46.17,45,43,47.6,47,45,45.6,45,44,43.6,42,40,45.77,45,44,47.48,46,45,0.984,0.017,2.839,5972.503 +123,VBS09966-4248STDY7309106,33.28,33,32,33.78,33,33,33.2,33,32,32.24,32,31,33.23,33,33,33.62,33,33,0.984,0.017,1.731,1931.046 +124,VBS09967-4248STDY7309107,38.4,38,37,39.3,39,39,38.17,38,37,36.79,36,36,38.25,38,37,38.87,38,38,0.983,0.018,2.118,3078.935 +125,VBS09971-4248STDY7309108,46.52,45,44,47.93,47,46,46.09,45,45,44.09,43,41,46.2,45,44,47.4,46,44,0.983,0.018,2.132,3388.179 +126,VBS09979-4248STDY7309109,36.56,36,36,37.16,37,37,36.49,36,36,35.36,35,35,36.47,36,36,36.93,36,36,0.983,0.018,2.313,3044.556 +129,VBS10021-4248STDY7309112,11.45,11,9,11.84,11,10,11.27,11,9,10.82,10,9,11.25,11,10,11.87,11,10,0.98,0.018,4.467,2274.657 +130,VBS10022-4248STDY7309113,31.44,31,30,32.4,32,31,31.05,30,29,29.9,29,28,31.14,30,30,32.13,31,30,0.984,0.017,2.203,2199.408 +131,VBS10025-4248STDY7309114,43.74,41,38,45.32,43,39,43.24,41,37,40.83,38,34,43.0,41,37,45.41,42,38,0.984,0.017,2.992,6038.455 +132,VBS10026-4248STDY7309115,77.75,75,72,80.33,78,77,77.21,75,72,73.2,70,65,77.14,75,71,79.0,76,75,0.984,0.017,1.718,4081.473 +133,VBS10027-4248STDY7309116,40.29,39,37,41.57,40,39,40.12,39,38,38.0,36,35,39.99,39,37,40.78,39,37,0.984,0.017,1.843,2375.676 +134,VBS10028-4248STDY7309117,42.83,41,39,44.38,43,41,42.28,41,37,40.03,38,35,42.25,40,38,44.38,42,40,0.984,0.017,2.581,3805.054 +135,VBS10029-4248STDY7309118,35.32,34,32,36.55,35,34,34.86,34,32,33.28,32,30,34.9,34,32,36.23,35,32,0.984,0.017,4.247,8013.267 +136,VBS10032-4248STDY7309119,36.47,35,33,37.72,37,35,35.93,35,33,34.43,33,31,36.0,35,33,37.57,36,33,0.984,0.017,1.948,2339.636 +137,VBS10033-4248STDY7309120,43.52,42,41,44.77,44,42,43.21,42,41,41.26,40,39,43.12,42,40,44.4,43,42,0.984,0.017,1.736,2321.753 +138,VBS10034-4248STDY7309121,38.7,38,36,39.89,39,38,38.25,37,36,36.76,35,34,38.29,37,36,39.59,38,36,0.984,0.017,2.143,2668.17 +139,VBS10035-4248STDY7309122,40.22,39,38,41.57,41,40,39.86,39,38,37.95,37,36,39.72,39,38,41.08,40,38,0.984,0.017,2.11,3049.235 +140,VBS10036-4248STDY7309123,50.2,49,47,51.96,51,49,49.55,48,47,47.21,45,43,49.67,48,47,51.54,49,47,0.984,0.017,2.527,4624.257 +141,VBS10038-4248STDY7309124,32.04,31,30,32.91,32,32,31.72,31,30,30.61,30,29,31.81,31,30,32.57,32,30,0.984,0.017,1.937,2069.938 +142,VBS10039-4248STDY7309125,60.24,58,54,62.3,60,57,59.7,57,55,56.44,53,49,59.54,57,53,61.94,58,52,0.984,0.017,2.068,4567.255 +143,VBS10040-4248STDY7309126,39.24,39,38,40.15,40,39,39.04,38,37,37.67,37,36,38.94,38,37,39.76,39,39,0.984,0.017,2.266,2925.498 +144,VBS10042-4248STDY7309127,33.21,32,31,34.36,33,32,32.81,32,30,31.31,30,29,32.83,32,30,34.05,33,31,0.983,0.017,1.957,1876.005 +145,VBS10043-4248STDY7309128,48.79,46,43,50.47,48,45,48.24,46,43,45.74,43,38,47.99,46,43,50.58,47,43,0.984,0.017,2.465,5060.718 +146,VBS10044-4248STDY7309129,38.61,37,36,39.71,39,38,38.25,37,36,36.94,36,33,38.06,37,37,39.41,38,37,0.984,0.017,2.601,3424.587 +147,VBS10049-4248STDY7309130,27.64,27,26,28.38,28,27,27.37,27,26,26.33,26,25,27.42,27,26,28.24,27,27,0.983,0.017,2.5,2455.932 +148,VBS10052-4248STDY7309131,38.31,37,36,39.74,39,37,37.77,37,35,36.02,34,33,37.79,37,35,39.41,38,36,0.984,0.017,1.944,2497.402 +149,VBS10055-4248STDY7309132,31.53,30,27,32.66,31,28,31.12,29,27,29.51,27,23,31.06,29,27,32.7,30,26,0.984,0.017,4.216,7227.712 +150,VBS10062-4248STDY7309133,42.76,41,40,43.98,43,41,42.21,41,40,40.57,39,37,42.34,41,40,44.13,42,41,0.984,0.017,2.534,4029.316 +151,VBS10064-4248STDY7309134,31.9,31,29,32.8,32,30,31.61,30,28,30.16,29,27,31.64,30,29,32.78,31,29,0.983,0.017,1.997,2099.873 +152,VBS16552-4248STDY7309135,38.1,38,38,37.7,38,37,38.74,39,38,37.56,37,37,37.66,37,37,39.25,39,38,0.984,0.017,2.314,3055.269 +153,VBS16553-4248STDY7309136,32.99,33,33,32.55,32,32,33.57,33,33,32.57,32,33,32.62,32,32,34.11,34,34,0.984,0.017,2.629,3025.568 +154,VBS16555-4248STDY7309137,33.82,33,33,33.53,33,33,34.54,34,34,32.59,32,32,33.28,33,33,35.66,35,35,0.984,0.017,2.502,2717.16 +155,VBS16558-4248STDY7309138,43.37,43,43,43.32,43,43,43.64,44,43,42.95,43,43,43.24,43,43,43.75,44,43,0.984,0.017,1.844,2389.969 +156,VBS16559-4248STDY7309139,43.33,43,43,43.25,43,43,43.52,43,43,42.84,43,43,43.26,43,43,43.96,44,43,0.984,0.017,1.932,3009.805 +160,VBS16592-4248STDY7309143,40.64,40,40,40.9,41,40,41.12,41,40,40.42,40,40,40.3,40,40,39.84,39,39,0.984,0.017,2.317,3884.074 +162,VBS16604-4248STDY7309145,22.56,22,22,22.27,22,21,23.31,23,22,21.54,21,21,21.72,21,21,24.38,24,23,0.983,0.017,3.27,2685.142 +163,VBS16619-4248STDY7309146,32.5,32,32,32.54,32,32,32.49,32,32,32.19,32,32,32.63,33,33,32.66,32,32,0.983,0.018,1.469,1376.913 +164,VBS16627-4248STDY7309147,34.14,34,34,34.19,34,34,33.92,34,34,33.94,34,34,34.17,34,34,34.62,34,34,0.984,0.017,1.778,1818.396 +165,VBS16631-4248STDY7309148,34.42,34,34,34.47,34,34,34.51,34,34,33.94,34,33,34.68,34,34,34.48,34,33,0.983,0.018,2.616,3635.472 +166,VBS16646-4248STDY7309149,34.86,35,35,34.81,35,35,34.94,35,35,34.82,35,35,34.82,35,34,34.92,35,34,0.985,0.017,3.792,6781.418 +167,VBS16648-4248STDY7309150,30.41,30,30,30.54,30,30,30.42,30,30,30.13,30,30,30.35,30,30,30.49,30,30,0.984,0.017,2.091,1948.2 +168,VBS16649-4248STDY7309151,35.28,35,35,35.24,35,35,35.3,35,35,35.21,35,35,35.28,35,35,35.46,35,35,0.984,0.017,1.709,1776.172 +169,VBS16650-4248STDY7309152,36.2,36,36,36.17,36,36,36.32,36,36,36.01,36,36,36.16,36,36,36.39,36,36,0.984,0.017,1.622,1828.736 +170,VBS16651-4248STDY7309153,37.96,38,38,38.13,38,38,37.96,38,38,37.8,38,38,38.05,38,38,37.62,37,37,0.984,0.017,2.122,2775.691 +171,VBS16652-4248STDY7309154,35.69,36,35,35.63,36,35,35.73,36,36,35.7,36,36,35.79,36,36,35.61,35,35,0.984,0.017,1.57,1702.637 +172,VBS16654-4248STDY7309155,37.21,37,37,37.17,37,37,37.24,37,37,37.06,37,37,37.26,37,37,37.41,37,37,0.984,0.017,1.678,1900.321 +173,VBS16664-4248STDY7309156,39.3,39,39,39.25,39,39,39.4,39,39,39.13,39,39,39.27,39,39,39.5,39,39,0.984,0.017,1.677,1922.941 +175,VBS16686-4248STDY7309158,35.18,35,35,35.25,35,35,35.21,35,35,34.94,35,35,35.24,35,35,35.23,35,35,0.984,0.017,1.684,1802.907 +177,VBS16694-4248STDY7309160,35.97,36,36,35.83,36,36,36.02,36,36,35.98,36,36,36.05,36,36,36.15,36,36,0.984,0.017,1.645,1806.809 +178,VBS16695-4248STDY7309161,39.74,40,40,39.64,40,39,39.84,40,40,39.71,40,40,39.77,40,40,39.78,40,39,0.984,0.017,1.833,2095.787 +179,VBS16698-4248STDY7309162,37.79,38,38,37.8,38,38,37.8,38,38,37.65,38,38,37.84,38,38,37.88,38,37,0.984,0.017,1.701,1797.428 +180,VBS16703-4248STDY7309163,39.24,39,39,39.38,39,39,39.29,39,39,38.79,39,39,39.17,39,39,39.53,39,39,0.984,0.017,1.937,2598.879 +181,VBS16707-4248STDY7309164,40.58,40,40,40.55,40,40,40.55,40,41,40.49,40,40,40.58,41,41,40.86,41,41,0.984,0.017,1.709,2030.027 +182,VBS16713-4248STDY7309165,41.72,42,42,41.74,42,42,41.76,42,41,41.45,42,41,41.73,42,42,41.91,42,42,0.984,0.017,1.84,2328.722 +183,VBS16724-4248STDY7309166,39.93,40,40,40.06,40,40,39.98,40,40,39.6,40,39,39.99,40,40,39.92,40,40,0.984,0.017,1.7,1936.498 +184,VBS16732-4248STDY7309167,35.19,35,35,35.12,35,35,35.24,35,35,35.01,35,35,35.23,35,35,35.46,35,35,0.984,0.017,1.917,2181.067 +185,VBS16736-4248STDY7309168,40.34,40,40,40.24,40,40,40.4,40,40,39.95,40,40,40.48,40,40,40.85,41,40,0.984,0.017,1.564,1866.525 +0,VBS09376-4248STDY7918389,23.89,23,23,24.32,24,23,23.78,23,23,23.26,23,22,23.88,23,23,23.81,23,22,0.983,0.017,3.122,2992.08 +1,VBS09377-4248STDY7918390,26.87,26,26,27.16,27,26,26.71,26,26,26.41,26,26,26.9,27,26,26.99,26,26,0.983,0.017,2.977,3042.865 +2,VBS09380-4248STDY7918392,26.98,27,26,27.48,27,27,26.85,27,26,26.44,26,26,26.87,26,26,26.75,26,26,0.983,0.017,3.005,3204.33 +3,VBS09381-4248STDY7918393,30.31,30,30,30.58,30,30,30.21,30,30,29.83,30,29,30.38,30,30,30.32,30,30,0.983,0.017,2.828,3017.96 +4,VBS09385-4248STDY7918394,24.7,24,24,24.86,24,24,24.62,24,24,24.42,24,24,24.67,24,24,24.84,24,24,0.983,0.017,3.428,3094.544 +5,VBS09386-4248STDY7918395,33.48,33,33,33.91,34,33,33.38,33,33,32.79,32,32,33.42,33,32,33.57,33,33,0.984,0.017,2.903,3584.528 +6,VBS09389-3429STDY7351727,36.74,36,36,37.63,37,37,36.5,36,36,35.77,35,35,36.62,36,36,36.32,36,35,0.984,0.017,2.392,2873.58 +7,VBS09390-3429STDY7351728,36.46,36,36,37.1,37,37,36.26,36,36,35.72,35,35,36.45,36,36,36.21,36,35,0.984,0.017,2.433,3386.204 +9,VBS09392-4248STDY7918396,26.79,26,26,27.02,27,26,26.72,26,26,26.42,26,26,26.77,26,26,26.87,26,26,0.983,0.017,3.298,3245.31 +10,VBS09393-4248STDY7918397,27.27,27,27,27.61,27,27,27.17,27,27,26.77,26,26,27.32,27,26,27.21,27,26,0.983,0.017,3.681,4484.887 +11,VBS09394-4248STDY7918398,36.11,36,35,36.58,36,36,36.01,36,35,35.51,35,35,36.0,36,35,36.0,36,35,0.983,0.017,2.515,3333.098 +12,VBS09395-4248STDY7918399,21.15,21,20,21.57,21,21,20.97,21,20,20.72,20,20,21.08,21,20,21.05,21,20,0.982,0.017,3.029,2446.12 +13,VBS09396-4248STDY7918400,19.66,19,19,20.11,20,19,19.49,19,19,19.14,19,18,19.61,19,19,19.6,19,18,0.983,0.017,3.342,2363.937 +14,VBS09401-4248STDY7918401,24.8,24,24,24.96,25,24,24.76,24,24,24.49,24,24,24.83,24,24,24.8,24,24,0.983,0.017,3.167,3017.692 +15,VBS09402-4248STDY7918402,19.78,19,19,20.13,20,19,19.69,19,19,19.31,19,18,19.77,19,19,19.69,19,18,0.982,0.017,3.344,2316.651 +16,VBS09403-3429STDY7351725,41.01,41,41,41.22,41,41,41.02,41,41,40.7,41,41,41.05,41,41,40.83,40,40,0.984,0.017,1.962,2670.551 +17,VBS09404-4248STDY7918405,37.57,37,37,37.75,37,37,37.5,37,37,37.48,37,37,37.64,37,37,37.27,37,36,0.984,0.017,2.844,4373.187 +18,VBS09405-4248STDY7918406,63.95,64,64,64.55,65,64,63.82,64,64,63.05,63,63,64.2,64,64,63.54,63,63,0.985,0.017,3.939,20174.421 +19,VBS09406-4248STDY7918407,22.57,22,21,23.16,23,22,22.34,22,21,22.08,21,21,22.47,22,21,22.24,22,21,0.983,0.017,3.854,3640.18 +26,VBS09449-4248STDY7918414,54.47,54,54,55.66,55,55,54.27,54,54,52.76,52,52,54.25,54,53,54.35,54,53,0.983,0.018,2.076,4149.833 +41,VBS09486-4248STDY7918429,32.87,33,32,33.45,33,33,32.73,32,32,32.27,32,32,32.72,32,32,32.6,32,31,0.984,0.017,3.013,4019.375 +45,VBS09510-4248STDY7918433,38.05,38,37,38.4,38,38,37.95,38,37,37.49,37,37,38.12,38,38,38.03,38,37,0.984,0.017,2.32,3007.89 +46,VBS09512-4248STDY7918434,97.32,98,98,98.16,99,99,97.53,98,98,95.84,97,97,97.44,98,98,96.64,97,98,0.984,0.018,2.208,10608.585 +50,VBS09522-4248STDY7918438,39.57,39,39,40.1,40,40,39.45,39,39,38.97,39,38,39.52,39,39,39.23,39,38,0.984,0.017,2.534,3314.416 +51,VBS09523-4248STDY7918439,26.14,26,26,26.45,26,26,26.01,26,26,25.85,26,25,26.18,26,26,25.91,25,25,0.982,0.018,2.411,2141.816 +52,VBS09526-4248STDY7918440,28.62,28,28,28.98,29,28,28.51,28,28,28.18,28,27,28.56,28,28,28.55,28,27,0.983,0.017,2.005,1567.777 +53,VBS09530-4248STDY7918441,12.37,12,11,12.73,12,12,12.24,12,11,11.97,11,11,12.32,12,11,12.29,12,11,0.981,0.019,3.042,1289.309 +54,VBS09533-4248STDY7918442,39.3,39,39,39.7,39,39,39.23,39,39,38.91,39,39,39.32,39,39,38.87,38,38,0.984,0.017,2.427,3353.753 +56,VBS09543-4248STDY7918445,33.9,33,33,34.75,34,34,33.7,33,32,32.95,32,32,33.79,33,33,33.46,33,32,0.983,0.017,2.26,2412.637 +57,VBS09544-4248STDY7918446,66.38,66,66,67.28,67,67,66.38,66,66,64.88,65,64,66.41,66,66,66.05,66,65,0.984,0.017,2.333,6229.871 +58,VBS09550-4248STDY7918447,61.54,61,60,63.32,63,62,60.98,61,60,59.52,59,59,61.49,61,61,60.73,60,58,0.984,0.017,2.171,4854.257 +63,VBS09578-4248STDY7918455,80.26,80,80,81.82,82,82,80.1,80,80,78.14,78,78,80.16,80,80,79.57,79,79,0.984,0.017,1.966,5745.329 +64,VBS09584-3429STDY7351712,24.76,24,24,25.4,25,24,24.59,24,24,23.88,23,23,24.55,24,23,24.87,24,23,0.983,0.017,2.404,2140.465 +67,VBS09592-4248STDY7918457,34.09,34,33,34.61,34,34,34.05,34,33,33.7,33,33,34.09,34,33,33.37,33,33,0.983,0.017,2.522,3137.961 +68,VBS09594-4248STDY7918458,69.26,69,69,69.64,70,69,69.5,69,69,68.27,68,68,69.21,69,69,69.3,69,68,0.984,0.017,2.425,7211.588 +70,VBS09604-4248STDY7918460,17.96,18,17,18.26,18,18,17.92,18,17,17.64,17,17,17.92,18,17,17.76,17,17,0.982,0.018,2.777,1799.662 +86,VBS09664-4248STDY7918477,140.56,141,141,143.89,145,144,140.31,141,140,136.26,137,137,140.01,141,139,139.01,139,140,0.986,0.017,2.086,16037.614 +87,VBS09665-4248STDY7918478,32.54,32,32,33.11,33,32,32.51,32,32,31.78,31,31,32.4,32,32,32.35,32,31,0.983,0.017,2.788,3150.42 +88,VBS09667-4248STDY7918480,30.51,30,30,31.15,31,31,30.35,30,29,29.72,29,29,30.46,30,29,30.26,30,29,0.983,0.017,2.502,2607.699 +89,VBS09668-4248STDY7918481,152.82,154,154,155.39,157,156,152.95,154,153,149.21,151,150,152.85,154,154,150.82,152,149,0.985,0.017,1.719,11007.206 +90,VBS09669-4248STDY7918482,42.04,42,41,42.65,42,42,41.9,41,41,41.16,41,40,42.16,42,41,41.76,41,40,0.984,0.017,2.581,3826.004 +91,VBS09670-4248STDY7918483,30.6,30,29,31.33,31,30,30.43,30,29,29.68,29,28,30.43,30,29,30.45,30,29,0.983,0.017,2.484,2467.591 +92,VBS09671-4248STDY7918484,14.94,15,14,15.15,15,14,14.9,15,14,14.72,14,14,14.88,15,14,14.88,14,14,0.981,0.019,2.512,1146.368 +93,VBS09682-4248STDY7918485,30.51,30,30,31.14,31,31,30.4,30,30,29.72,29,29,30.4,30,29,30.33,30,29,0.983,0.017,2.387,2541.18 +94,VBS09683-4248STDY7918486,28.73,28,28,29.26,29,29,28.71,28,28,27.91,27,27,28.56,28,28,28.72,28,28,0.983,0.017,2.399,2496.374 +97,VBS09688-4248STDY7918489,26.56,26,26,26.94,27,26,26.49,26,26,26.02,25,25,26.42,26,26,26.64,26,25,0.984,0.017,3.68,3623.682 +100,VBS09700-4248STDY7918492,34.26,34,34,34.7,34,34,34.19,34,34,33.63,33,33,34.2,34,33,34.19,34,33,0.984,0.017,3.02,3626.161 +103,VBS09706-4248STDY7918495,57.77,56,54,60.14,59,57,56.97,56,54,54.55,53,51,57.34,56,54,58.0,56,53,0.984,0.017,2.026,3880.181 +107,VBS09732-4248STDY7918503,30.98,31,30,31.61,31,31,30.86,31,30,30.1,30,29,30.88,31,30,30.87,30,29,0.983,0.017,1.921,1827.099 +108,VBS09733-4248STDY7918504,19.49,19,18,19.83,19,19,19.46,19,18,18.9,18,18,19.45,19,19,19.5,19,18,0.982,0.018,2.906,1932.715 +109,VBS09742-4248STDY7918506,35.04,35,34,35.92,36,35,34.86,34,34,33.92,33,33,34.89,35,34,34.8,34,33,0.983,0.017,1.536,1472.557 +111,VBS09749-4248STDY7918510,28.43,28,28,29.06,29,28,28.33,28,28,27.68,27,27,28.4,28,27,28.03,27,27,0.983,0.017,1.563,1208.222 +112,VBS09750-4248STDY7918512,33.73,33,33,34.46,34,34,33.57,33,33,32.83,32,32,33.69,33,33,33.43,33,32,0.983,0.017,1.612,1359.156 +113,VBS09751-4248STDY7918513,23.22,23,22,24.02,24,23,22.97,22,22,22.4,22,21,23.1,23,22,22.88,22,22,0.982,0.017,2.002,1356.897 +114,VBS09752-4248STDY7918514,21.75,21,21,22.3,22,21,21.62,21,20,21.02,20,20,21.75,21,21,21.54,21,20,0.982,0.017,2.266,1638.574 +115,VBS09753-4248STDY7918515,24.66,24,24,25.21,25,24,24.48,24,23,24.02,23,23,24.58,24,24,24.51,24,23,0.983,0.017,1.781,1222.056 +116,VBS09754-4248STDY7918516,28.32,28,27,28.8,28,27,28.41,28,27,27.42,27,26,28.36,28,27,28.1,27,27,0.983,0.017,2.103,1609.915 +117,VBS09755-4248STDY7918517,28.39,28,28,28.89,29,28,28.26,28,27,27.91,27,27,28.49,28,28,27.82,27,27,0.983,0.017,1.749,1538.045 +118,VBS09757-4248STDY7918518,34.94,35,34,35.63,35,35,34.85,34,34,34.03,34,33,35.03,35,34,34.46,34,33,0.984,0.017,1.978,2292.195 +119,VBS09763-4248STDY7918519,20.87,20,20,21.36,21,20,20.77,20,20,20.19,20,19,20.85,20,20,20.75,20,20,0.982,0.017,2.069,1370.049 +120,VBS09764-4248STDY7918520,30.28,30,29,30.63,30,30,30.39,30,29,29.57,29,29,30.5,30,29,29.89,29,28,0.983,0.017,1.823,1769.814 +121,VBS09766-4248STDY7918521,25.13,25,24,25.47,25,24,25.09,25,24,24.6,24,24,25.25,25,24,24.92,24,24,0.982,0.018,1.823,1535.999 +122,VBS09767-4248STDY7918522,24.55,24,23,24.95,24,23,24.47,24,23,23.97,23,22,24.67,24,23,24.29,23,22,0.982,0.018,2.548,2156.617 +124,VBS09774-4248STDY7918524,22.68,22,21,22.96,22,21,22.67,22,22,22.21,21,20,22.74,22,21,22.58,22,21,0.982,0.018,2.19,1468.705 +125,VBS09779-4248STDY7918526,28.74,28,28,29.02,29,28,28.69,28,28,28.13,28,27,28.8,28,28,28.87,28,28,0.982,0.018,1.551,1445.516 +126,VBS09780-4248STDY7918527,19.08,19,18,19.52,19,18,18.97,18,18,18.44,18,17,19.05,19,18,19.03,18,18,0.982,0.018,2.56,1699.528 +127,VBS09784-4248STDY7918528,20.25,20,19,20.67,20,19,20.21,20,19,19.57,19,18,20.17,20,19,20.24,19,18,0.982,0.018,2.459,1858.037 +129,VBS09788-4248STDY7918530,17.76,17,16,18.33,18,17,17.55,17,16,16.92,16,15,17.62,17,16,17.96,17,16,0.981,0.018,1.915,1078.731 +130,VBS09789-4248STDY7918531,23.94,23,23,24.11,24,23,24.01,24,23,23.48,23,23,23.96,24,23,23.92,23,23,0.982,0.018,1.771,1353.842 +131,VBS09793-4248STDY7918532,29.98,30,29,30.29,30,30,29.9,30,29,29.55,29,29,30.05,30,30,29.8,29,29,0.983,0.017,1.528,1388.043 +133,VBS09796-4248STDY7918534,20.78,20,20,21.11,21,20,20.7,20,20,20.22,20,19,20.75,20,20,20.85,20,20,0.982,0.018,4.101,3892.892 +135,VBS09804-3429STDY7351716,43.83,44,43,44.46,44,44,43.69,43,43,42.84,43,42,43.88,44,43,43.72,43,43,0.984,0.017,1.447,1872.938 +136,VBS09805-4248STDY7918537,28.44,28,28,28.66,28,28,28.47,28,28,28.18,28,27,28.49,28,28,28.12,28,27,0.983,0.017,1.469,1172.994 +137,VBS09806-4248STDY7918538,30.66,30,30,30.75,30,30,30.66,30,30,30.55,30,30,30.73,30,30,30.53,30,30,0.983,0.017,1.502,1241.729 +138,VBS09813-4248STDY7918539,19.78,19,18,20.36,20,19,19.56,19,18,18.99,18,17,19.68,19,18,19.85,19,18,0.982,0.018,2.706,1923.989 +140,VBS09820-4248STDY7918542,26.13,26,25,26.63,26,26,25.95,26,25,25.57,25,25,26.07,26,25,26.01,25,25,0.983,0.017,2.83,2874.26 +141,VBS09822-3429STDY7351713,40.12,40,39,41.0,41,40,39.77,39,39,38.8,38,38,39.98,39,39,40.48,40,39,0.983,0.018,1.75,2284.414 +142,VBS09824-3429STDY7351714,36.95,37,36,37.59,37,37,36.76,36,36,36.01,36,35,36.77,36,36,37.13,37,36,0.983,0.017,1.57,1606.951 +143,VBS09825-3429STDY7351715,29.1,28,28,30.01,29,28,28.78,28,27,27.88,27,26,28.95,28,28,29.19,28,28,0.983,0.017,1.725,1423.949 +144,VBS09826-4248STDY7918544,29.64,29,29,29.77,29,29,29.63,29,29,29.32,29,29,29.73,29,29,29.63,29,29,0.983,0.017,1.809,1377.977 +145,VBS09828-4248STDY7918545,19.0,19,18,19.37,19,19,18.91,19,18,18.59,18,18,19.01,19,18,18.72,18,18,0.982,0.018,1.969,1070.801 +146,VBS09830-4248STDY7918546,25.54,25,24,25.97,25,25,25.54,25,25,24.87,24,24,25.5,25,24,25.4,25,24,0.982,0.018,2.004,1877.241 +147,VBS09831-4248STDY7918547,17.19,17,16,17.47,17,16,17.13,17,16,16.84,16,16,17.13,17,16,17.09,16,16,0.982,0.018,2.457,1369.198 +148,VBS09834-4248STDY7918548,28.77,28,27,29.28,29,28,28.65,28,27,28.08,27,27,28.82,28,28,28.5,28,27,0.983,0.017,1.739,1396.327 +149,VBS09835-4248STDY7918549,25.56,25,25,26.08,26,25,25.36,25,25,25.01,25,24,25.56,25,25,25.32,25,24,0.982,0.018,1.668,1281.531 +150,VBS09837-4248STDY7918550,31.24,31,30,31.91,32,31,31.03,31,30,30.4,30,30,31.2,31,30,31.11,30,29,0.983,0.017,1.83,1870.283 +151,VBS09838-4248STDY7918551,29.02,28,28,29.84,29,29,28.69,28,28,27.92,27,27,28.95,28,28,29.07,28,27,0.982,0.018,1.333,1028.012 +152,VBS09840-4248STDY7918552,20.73,20,19,21.08,20,20,20.77,20,19,19.97,19,18,20.72,20,19,20.8,20,19,0.982,0.017,1.956,1164.384 +153,VBS09841-4248STDY7918553,17.03,16,15,17.49,17,16,16.98,16,15,16.54,16,15,17.01,16,15,16.66,16,14,0.982,0.018,2.049,1125.738 +154,VBS09842-4248STDY7918554,23.45,23,22,23.94,23,23,23.2,23,22,22.88,22,22,23.51,23,22,23.33,23,22,0.983,0.017,1.83,1259.987 +155,VBS09844-4248STDY7918555,27.22,27,26,27.61,27,27,27.23,27,26,26.57,26,25,27.24,27,26,27.08,26,26,0.983,0.017,2.512,2360.449 +157,VBS09847-4248STDY7918558,27.36,27,26,27.49,27,26,27.42,27,26,27.09,26,26,27.64,27,27,26.91,26,25,0.982,0.018,2.013,1791.561 +159,VBS09849-4248STDY7918560,30.85,30,30,31.15,31,30,30.87,30,30,30.24,30,30,31.06,31,30,30.58,30,29,0.982,0.018,1.495,1443.226 +160,VBS09853-4248STDY7918561,24.22,24,23,24.59,24,23,24.23,24,23,23.61,23,23,24.4,24,24,23.83,23,22,0.982,0.018,2.259,1862.734 +161,VBS09855-4248STDY7918562,27.07,27,26,27.39,27,27,27.09,27,26,26.44,26,26,27.28,27,26,26.79,26,26,0.983,0.017,2.04,1843.659 +162,VBS09857-4248STDY7918564,19.52,19,18,19.83,19,19,19.42,19,18,18.95,18,17,19.43,19,18,19.79,19,18,0.982,0.018,2.572,1704.686 +164,VBS09862-4248STDY7918566,28.38,28,27,28.66,28,28,28.43,28,28,28.09,28,27,28.5,28,28,27.84,27,27,0.983,0.017,1.435,1026.222 +167,VBS09865-4248STDY7918569,28.95,29,28,28.95,29,28,28.88,29,28,29.02,29,28,29.21,29,28,28.7,28,28,0.984,0.017,3.025,3809.872 +168,VBS09872-4248STDY7918571,24.63,24,23,24.83,24,24,24.77,24,24,24.11,23,23,24.7,24,23,24.54,24,23,0.983,0.017,3.0,2845.176 +169,VBS09874-4248STDY7918572,32.33,32,32,32.64,32,32,32.3,32,32,31.81,31,31,32.46,32,31,32.16,32,31,0.983,0.017,1.804,1822.547 +170,VBS09875-4248STDY7918573,30.06,30,29,30.32,30,30,30.02,30,29,29.64,29,29,30.26,30,29,29.78,29,29,0.983,0.017,1.905,1937.832 +172,VBS09878-4248STDY7918575,29.22,29,27,29.74,29,28,29.27,29,28,28.31,27,27,29.31,29,28,28.91,28,27,0.983,0.017,2.282,2317.665 +175,VBS09898-4248STDY7918582,24.98,25,24,25.32,25,24,24.93,25,24,24.42,24,23,25.03,25,24,24.91,24,24,0.983,0.017,2.188,1779.077 +178,VBS09912-4248STDY7918589,34.26,34,33,34.55,34,33,34.29,34,33,33.8,33,33,34.36,34,33,33.93,33,33,0.983,0.017,2.248,2534.99 +179,VBS09914-3429STDY7351719,25.22,25,24,25.61,25,25,25.14,25,24,24.77,24,24,25.07,25,24,25.11,25,24,0.983,0.017,2.015,1618.939 +183,VBS09927-3429STDY7351720,15.05,15,14,15.24,15,14,15.02,15,14,14.67,14,14,14.99,15,14,15.23,15,14,0.982,0.018,4.079,2398.136 +187,VBS09932-3429STDY7351721,27.4,27,26,28.44,28,27,27.1,26,26,26.01,25,24,27.19,27,25,27.36,26,25,0.982,0.018,1.696,1416.242 +191,VBS09950-4248STDY7918611,41.9,42,41,42.25,42,42,41.88,42,41,41.31,41,41,42.05,42,42,41.63,41,41,0.984,0.017,1.424,1709.554 +192,VBS09951-4248STDY7918612,42.16,42,41,42.43,42,42,42.17,42,41,41.92,42,41,42.5,42,42,41.35,41,40,0.984,0.017,2.157,3106.878 +193,VBS09954-4248STDY7918613,45.02,44,43,45.63,45,44,45.17,44,43,44.1,43,43,45.34,45,43,44.02,43,42,0.983,0.018,1.459,1851.203 +194,VBS09956-4248STDY7918614,43.07,42,41,43.64,43,42,43.12,43,41,42.34,42,41,43.37,43,42,42.14,41,39,0.983,0.018,1.809,2778.354 +195,VBS09959-4248STDY7918615,39.42,39,38,40.25,40,39,39.17,39,38,38.31,38,38,39.5,39,38,39.15,38,38,0.983,0.017,1.535,1652.798 +197,VBS09968-4248STDY7918619,44.18,44,43,44.41,44,43,44.27,44,43,43.9,44,43,44.55,44,44,43.38,43,42,0.983,0.018,1.479,1685.585 +198,VBS09976-4248STDY7918620,27.36,27,26,28.08,27,26,27.22,27,26,26.22,25,24,27.06,26,26,27.69,27,26,0.983,0.017,2.657,2807.423 +199,VBS09978-4248STDY7918622,35.46,35,35,35.74,35,35,35.45,35,35,34.77,34,34,35.55,35,35,35.6,35,35,0.983,0.018,1.661,1979.272 +200,VBS09980-4248STDY7918623,43.0,43,42,43.27,43,43,43.0,43,42,42.51,42,42,43.05,43,43,42.91,42,42,0.984,0.017,2.335,3527.738 +201,VBS09982-4248STDY7918625,18.86,18,18,19.33,19,18,18.69,18,17,18.09,17,16,18.67,18,17,19.23,18,17,0.983,0.018,2.58,1506.048 +202,VBS09983-4248STDY7918626,26.6,26,26,26.86,26,26,26.57,26,26,26.19,26,25,26.59,26,26,26.56,26,26,0.983,0.017,1.967,1731.844 +203,VBS16554-4248STDY7918627,43.81,44,43,43.48,43,43,44.14,44,44,43.97,44,44,43.82,44,43,43.79,43,43,0.984,0.017,2.028,2702.337 +204,VBS16556-4248STDY7918628,47.89,48,48,47.17,47,47,48.33,48,48,47.94,48,48,47.63,47,47,49.21,49,48,0.984,0.017,1.355,1681.116 +205,VBS16563-4248STDY7918631,45.09,45,44,44.3,44,44,45.7,45,45,45.53,45,45,44.79,45,44,45.85,45,45,0.984,0.017,1.693,2150.816 +206,VBS16568-4248STDY7918632,39.46,39,38,39.05,39,38,40.73,40,40,39.9,39,39,39.18,39,38,38.01,37,37,0.984,0.017,2.345,2575.588 +207,VBS16569-4248STDY7918633,38.32,38,38,37.85,38,37,38.97,39,38,38.49,38,38,38.2,38,38,38.27,38,37,0.984,0.017,2.133,2548.768 +208,VBS16570-4248STDY7918634,49.97,50,50,49.1,49,49,50.82,51,50,50.27,50,50,49.64,49,49,50.72,50,50,0.983,0.018,1.468,2087.903 +209,VBS16571-4248STDY7918635,49.3,49,49,48.52,48,48,50.48,50,50,49.75,50,49,49.08,49,49,48.9,48,48,0.983,0.018,1.417,2140.618 +210,VBS16574-4248STDY7918636,30.15,30,29,29.6,29,29,30.66,30,30,30.19,30,29,29.85,29,29,30.97,30,30,0.983,0.017,2.814,3324.365 +211,VBS16575-4248STDY7918637,48.77,49,48,48.13,48,47,49.7,50,49,48.93,49,49,48.23,48,47,49.24,49,48,0.984,0.017,1.731,2228.627 +212,VBS16576-4248STDY7918638,51.17,51,51,50.12,50,50,52.19,52,52,51.73,52,52,50.49,50,50,52.17,52,52,0.984,0.017,1.767,3029.121 +213,VBS16577-4248STDY7918639,32.28,32,31,31.78,31,31,33.44,33,32,32.37,32,32,31.95,32,31,31.78,31,31,0.984,0.017,2.041,1780.275 +214,VBS16580-4248STDY7918641,48.04,48,48,48.18,48,48,48.51,48,48,47.71,48,47,47.97,48,48,47.37,47,47,0.984,0.017,1.515,2038.713 +215,VBS16581-4248STDY7918642,39.21,39,39,39.05,39,39,39.55,39,39,39.45,39,39,39.06,39,39,38.9,38,38,0.984,0.017,1.635,1726.902 +216,VBS16582-4248STDY7918643,50.49,50,50,49.63,49,49,52.24,52,51,50.13,50,50,49.5,49,49,51.36,51,51,0.984,0.017,1.543,2237.02 +217,VBS16583-3429STDY7351710,29.55,29,29,29.19,29,28,29.59,29,29,29.82,29,29,29.44,29,29,30.18,30,29,0.983,0.017,2.332,2199.014 +218,VBS16584-4248STDY7918644,26.22,26,25,25.44,25,24,26.43,26,25,26.71,26,26,26.22,26,25,27.21,26,25,0.984,0.017,3.616,3160.592 +219,VBS16586-4248STDY7918645,27.65,27,26,27.04,26,26,27.83,27,26,28.29,28,27,27.66,27,26,27.98,27,26,0.983,0.017,2.264,1944.618 +220,VBS16587-4248STDY7918646,57.36,57,57,56.32,56,56,58.48,58,58,57.08,57,57,57.1,57,57,58.73,58,58,0.984,0.017,1.428,2400.258 +221,VBS16591-4248STDY7918648,45.0,45,44,43.94,44,43,45.78,46,45,45.82,46,46,44.6,44,44,45.72,45,45,0.984,0.017,1.885,2866.839 +222,VBS16593-4248STDY7918649,43.98,44,43,43.06,43,43,44.52,44,44,44.51,44,44,43.54,43,43,45.26,45,44,0.984,0.017,1.581,1938.529 +223,VBS16600-4248STDY7918650,35.47,35,35,35.21,35,34,35.66,35,35,35.92,36,35,35.25,35,35,35.44,35,34,0.983,0.017,1.587,1529.615 +224,VBS16601-4248STDY7918651,40.79,40,40,40.37,40,40,41.55,41,41,40.54,40,40,40.5,40,40,41.22,41,40,0.984,0.017,1.688,2009.422 +225,VBS16602-4248STDY7918652,51.76,52,51,51.1,51,51,52.78,53,53,51.94,52,52,51.36,51,51,51.92,52,51,0.984,0.017,1.521,2258.058 +226,VBS16603-4248STDY7918653,52.92,53,53,52.08,52,52,53.54,53,53,53.78,54,54,52.85,53,53,52.91,52,52,0.984,0.017,1.727,2197.545 +227,VBS16606-4248STDY7918654,37.28,37,36,36.5,36,36,38.06,38,37,37.66,37,37,36.86,36,36,37.92,37,37,0.984,0.017,2.185,2156.515 +228,VBS16607-4248STDY7918655,47.63,47,47,46.5,46,46,48.77,49,48,47.87,48,48,47.08,47,46,48.88,48,48,0.984,0.017,2.156,3116.903 +229,VBS16608-4248STDY7918656,55.71,56,55,55.68,56,55,56.31,56,56,55.73,56,56,55.37,55,55,55.14,55,55,0.984,0.017,1.735,2572.974 +230,VBS16610-4248STDY7918658,33.38,33,32,32.26,32,31,33.35,33,32,34.11,33,33,33.49,33,32,35.23,34,33,0.982,0.018,1.731,1729.507 +231,VBS16611-4248STDY7918659,56.49,56,56,55.53,55,55,56.83,57,57,57.37,57,57,56.48,56,56,57.2,57,57,0.984,0.017,1.877,2900.703 +232,VBS16616-4248STDY7918661,46.67,46,46,46.33,46,46,47.21,47,47,46.74,47,47,46.56,46,46,46.63,46,46,0.983,0.018,1.449,2040.589 +233,VBS16617-4248STDY7918662,30.49,30,30,29.93,30,29,31.01,31,30,30.96,31,30,30.33,30,29,30.59,30,30,0.983,0.017,1.69,1405.722 +234,VBS16618-4248STDY7918663,46.18,46,46,45.76,46,45,46.84,47,46,46.1,46,46,45.84,46,45,46.57,46,46,0.984,0.017,1.434,1818.11 +235,VBS16620-4248STDY7918664,41.79,42,41,41.98,42,42,41.69,41,41,41.93,42,41,42.06,42,42,40.95,40,40,0.984,0.017,1.947,2512.722 +236,VBS16621-4248STDY7918665,47.58,47,47,46.84,47,46,47.97,48,48,48.34,48,48,47.44,47,47,47.96,47,47,0.984,0.017,1.616,2262.331 +237,VBS16622-4248STDY7918666,47.64,47,47,46.48,46,46,49.3,49,48,47.25,47,47,46.64,46,46,49.49,49,49,0.984,0.017,1.369,1568.523 +238,VBS16624-4248STDY7918667,29.99,30,29,29.71,29,29,30.35,30,30,30.34,30,30,30.15,30,29,29.39,29,29,0.983,0.018,1.381,1087.363 +239,VBS16625-4248STDY7918668,31.09,31,30,30.57,30,30,31.45,31,31,31.77,31,31,31.08,31,30,30.92,30,30,0.983,0.018,2.172,2402.729 +240,VBS16626-4248STDY7918669,46.7,46,46,46.01,46,45,47.33,47,47,47.75,48,47,46.9,47,46,45.73,45,45,0.984,0.017,1.811,2856.768 +241,VBS16628-4248STDY7918670,51.78,52,51,50.96,51,51,53.31,53,53,51.88,52,52,51.58,51,51,51.33,51,51,0.983,0.018,1.322,1666.156 +242,VBS16630-4248STDY7918671,34.47,34,34,34.03,34,33,34.57,34,34,35.15,35,35,34.38,34,34,34.61,34,34,0.984,0.017,2.161,2641.851 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/wgs_snp_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/wgs_snp_data.csv new file mode 100644 index 000000000..88882df9b --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1175-VO-KH-STLAURENT/wgs_snp_data.csv @@ -0,0 +1,303 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS09378-4248STDY7308980,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09378-4248STDY7308980-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09378-4248STDY7308980-2019-03-04.vcf.gz,,,, +VBS09382-4248STDY7308981,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09382-4248STDY7308981-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09382-4248STDY7308981-2019-03-04.vcf.gz,,,, +VBS09397-4248STDY7308982,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09397-4248STDY7308982-2019-03-04.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09397-4248STDY7308982-2019-03-04.vcf.gz,,,, +VBS09460-4248STDY7308986,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09460-4248STDY7308986-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09460-4248STDY7308986-2019-03-07.vcf.gz,,,, +VBS09466-4248STDY7308989,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09466-4248STDY7308989-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09466-4248STDY7308989-2019-03-07.vcf.gz,,,, +VBS09467-4248STDY7308990,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09467-4248STDY7308990-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09467-4248STDY7308990-2019-03-07.vcf.gz,,,, +VBS09477-4248STDY7308994,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09477-4248STDY7308994-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09477-4248STDY7308994-2019-03-07.vcf.gz,,,, +VBS09482-4248STDY7308996,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09482-4248STDY7308996-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09482-4248STDY7308996-2019-03-07.vcf.gz,,,, +VBS09483-4248STDY7308997,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09483-4248STDY7308997-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09483-4248STDY7308997-2019-03-07.vcf.gz,,,, +VBS09489-4248STDY7308999,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09489-4248STDY7308999-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09489-4248STDY7308999-2019-03-07.vcf.gz,,,, +VBS09511-4248STDY7309002,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09511-4248STDY7309002-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09511-4248STDY7309002-2019-03-07.vcf.gz,,,, +VBS09535-4248STDY7309003,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09535-4248STDY7309003-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09535-4248STDY7309003-2019-03-07.vcf.gz,,,, +VBS09540-4248STDY7309004,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09540-4248STDY7309004-2019-03-08.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09540-4248STDY7309004-2019-03-09.vcf.gz,,,, +VBS09541-4248STDY7309005,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09541-4248STDY7309005-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09541-4248STDY7309005-2019-03-07.vcf.gz,,,, +VBS09542-4248STDY7309006,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09542-4248STDY7309006-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09542-4248STDY7309006-2019-03-07.vcf.gz,,,, +VBS09545-4248STDY7309007,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09545-4248STDY7309007-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09545-4248STDY7309007-2019-03-07.vcf.gz,,,, +VBS09546-4248STDY7309008,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09546-4248STDY7309008-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09546-4248STDY7309008-2019-03-07.vcf.gz,,,, +VBS09547-4248STDY7309009,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09547-4248STDY7309009-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09547-4248STDY7309009-2019-03-07.vcf.gz,,,, +VBS09549-4248STDY7309010,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09549-4248STDY7309010-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09549-4248STDY7309010-2019-03-07.vcf.gz,,,, +VBS09551-4248STDY7309011,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09551-4248STDY7309011-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09551-4248STDY7309011-2019-03-07.vcf.gz,,,, +VBS09552-4248STDY7309012,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09552-4248STDY7309012-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09552-4248STDY7309012-2019-03-07.vcf.gz,,,, +VBS09553-4248STDY7309013,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09553-4248STDY7309013-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09553-4248STDY7309013-2019-03-07.vcf.gz,,,, +VBS09555-4248STDY7309015,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09555-4248STDY7309015-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09555-4248STDY7309015-2019-03-07.vcf.gz,,,, +VBS09558-4248STDY7309017,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09558-4248STDY7309017-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09558-4248STDY7309017-2019-03-07.vcf.gz,,,, +VBS09570-4248STDY7309020,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09570-4248STDY7309020-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09570-4248STDY7309020-2019-03-07.vcf.gz,,,, +VBS09571-4248STDY7309021,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09571-4248STDY7309021-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09571-4248STDY7309021-2019-03-07.vcf.gz,,,, +VBS09572-4248STDY7309022,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09572-4248STDY7309022-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09572-4248STDY7309022-2019-03-07.vcf.gz,,,, +VBS09575-4248STDY7309023,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09575-4248STDY7309023-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09575-4248STDY7309023-2019-03-07.vcf.gz,,,, +VBS09579-4248STDY7309025,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09579-4248STDY7309025-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09579-4248STDY7309025-2019-03-07.vcf.gz,,,, +VBS09580-4248STDY7309026,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09580-4248STDY7309026-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09580-4248STDY7309026-2019-03-07.vcf.gz,,,, +VBS09581-4248STDY7309027,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09581-4248STDY7309027-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09581-4248STDY7309027-2019-03-07.vcf.gz,,,, +VBS09582-4248STDY7309028,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09582-4248STDY7309028-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09582-4248STDY7309028-2019-03-07.vcf.gz,,,, +VBS09583-4248STDY7309029,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09583-4248STDY7309029-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09583-4248STDY7309029-2019-03-07.vcf.gz,,,, +VBS09590-4248STDY7309030,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09590-4248STDY7309030-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09590-4248STDY7309030-2019-03-07.vcf.gz,,,, +VBS09593-4248STDY7309031,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09593-4248STDY7309031-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09593-4248STDY7309031-2019-03-07.vcf.gz,,,, +VBS09639-4248STDY7309033,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09639-4248STDY7309033-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09639-4248STDY7309033-2019-03-07.vcf.gz,,,, +VBS09644-4248STDY7309035,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09644-4248STDY7309035-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09644-4248STDY7309035-2019-03-07.vcf.gz,,,, +VBS09648-4248STDY7309037,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09648-4248STDY7309037-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09648-4248STDY7309037-2019-03-07.vcf.gz,,,, +VBS09649-4248STDY7309038,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09649-4248STDY7309038-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09649-4248STDY7309038-2019-03-07.vcf.gz,,,, +VBS09650-4248STDY7309039,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09650-4248STDY7309039-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09650-4248STDY7309039-2019-03-07.vcf.gz,,,, +VBS09651-4248STDY7309040,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09651-4248STDY7309040-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09651-4248STDY7309040-2019-03-07.vcf.gz,,,, +VBS09652-4248STDY7309041,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09652-4248STDY7309041-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09652-4248STDY7309041-2019-03-07.vcf.gz,,,, +VBS09654-4248STDY7309042,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09654-4248STDY7309042-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09654-4248STDY7309042-2019-03-07.vcf.gz,,,, +VBS09655-4248STDY7309043,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09655-4248STDY7309043-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09655-4248STDY7309043-2019-03-07.vcf.gz,,,, +VBS09656-4248STDY7309044,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09656-4248STDY7309044-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09656-4248STDY7309044-2019-03-07.vcf.gz,,,, +VBS09657-4248STDY7309045,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09657-4248STDY7309045-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09657-4248STDY7309045-2019-03-07.vcf.gz,,,, +VBS09660-4248STDY7309047,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09660-4248STDY7309047-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09660-4248STDY7309047-2019-03-07.vcf.gz,,,, +VBS09661-4248STDY7309048,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09661-4248STDY7309048-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09661-4248STDY7309048-2019-03-07.vcf.gz,,,, +VBS09662-4248STDY7309049,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09662-4248STDY7309049-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09662-4248STDY7309049-2019-03-07.vcf.gz,,,, +VBS09663-4248STDY7309050,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09663-4248STDY7309050-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09663-4248STDY7309050-2019-03-07.vcf.gz,,,, +VBS09672-4248STDY7309051,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09672-4248STDY7309051-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09672-4248STDY7309051-2019-03-07.vcf.gz,,,, +VBS09673-4248STDY7309052,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09673-4248STDY7309052-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09673-4248STDY7309052-2019-03-07.vcf.gz,,,, +VBS09674-4248STDY7309053,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09674-4248STDY7309053-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09674-4248STDY7309053-2019-03-07.vcf.gz,,,, +VBS09675-4248STDY7309054,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09675-4248STDY7309054-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09675-4248STDY7309054-2019-03-07.vcf.gz,,,, +VBS09677-4248STDY7309056,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09677-4248STDY7309056-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09677-4248STDY7309056-2019-03-07.vcf.gz,,,, +VBS09681-4248STDY7309058,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09681-4248STDY7309058-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09681-4248STDY7309058-2019-03-07.vcf.gz,,,, +VBS09685-4248STDY7309059,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09685-4248STDY7309059-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09685-4248STDY7309059-2019-03-07.vcf.gz,,,, +VBS09686-4248STDY7309060,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09686-4248STDY7309060-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09686-4248STDY7309060-2019-03-07.vcf.gz,,,, +VBS09689-4248STDY7309061,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09689-4248STDY7309061-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09689-4248STDY7309061-2019-03-07.vcf.gz,,,, +VBS09695-4248STDY7309062,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09695-4248STDY7309062-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09695-4248STDY7309062-2019-03-07.vcf.gz,,,, +VBS09699-4248STDY7309063,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09699-4248STDY7309063-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09699-4248STDY7309063-2019-03-07.vcf.gz,,,, +VBS09712-4248STDY7309064,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09712-4248STDY7309064-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09712-4248STDY7309064-2019-03-07.vcf.gz,,,, +VBS09713-4248STDY7309065,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09713-4248STDY7309065-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09713-4248STDY7309065-2019-03-07.vcf.gz,,,, +VBS09730-4248STDY7309066,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09730-4248STDY7309066-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09730-4248STDY7309066-2019-03-07.vcf.gz,,,, +VBS09734-4248STDY7309067,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09734-4248STDY7309067-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09734-4248STDY7309067-2019-03-07.vcf.gz,,,, +VBS09738-4248STDY7309069,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09738-4248STDY7309069-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09738-4248STDY7309069-2019-03-07.vcf.gz,,,, +VBS09744-4248STDY7309072,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09744-4248STDY7309072-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09744-4248STDY7309072-2019-03-07.vcf.gz,,,, +VBS09747-4248STDY7309076,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09747-4248STDY7309076-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09747-4248STDY7309076-2019-03-08.vcf.gz,,,, +VBS09765-4248STDY7309077,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09765-4248STDY7309077-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09765-4248STDY7309077-2019-03-07.vcf.gz,,,, +VBS09778-4248STDY7309079,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09778-4248STDY7309079-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09778-4248STDY7309079-2019-03-08.vcf.gz,,,, +VBS09790-4248STDY7309081,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09790-4248STDY7309081-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09790-4248STDY7309081-2019-03-07.vcf.gz,,,, +VBS09802-4248STDY7309083,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09802-4248STDY7309083-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09802-4248STDY7309083-2019-03-07.vcf.gz,,,, +VBS09815-4248STDY7309084,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09815-4248STDY7309084-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09815-4248STDY7309084-2019-03-07.vcf.gz,,,, +VBS09817-4248STDY7309085,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09817-4248STDY7309085-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09817-4248STDY7309085-2019-03-07.vcf.gz,,,, +VBS09829-4248STDY7309086,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09829-4248STDY7309086-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09829-4248STDY7309086-2019-03-07.vcf.gz,,,, +VBS09832-4248STDY7309087,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09832-4248STDY7309087-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09832-4248STDY7309087-2019-03-07.vcf.gz,,,, +VBS09833-4248STDY7309088,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09833-4248STDY7309088-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09833-4248STDY7309088-2019-03-07.vcf.gz,,,, +VBS09836-4248STDY7309089,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09836-4248STDY7309089-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09836-4248STDY7309089-2019-03-07.vcf.gz,,,, +VBS09839-4248STDY7309090,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09839-4248STDY7309090-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09839-4248STDY7309090-2019-03-07.vcf.gz,,,, +VBS09843-4248STDY7309091,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09843-4248STDY7309091-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09843-4248STDY7309091-2019-03-08.vcf.gz,,,, +VBS09851-4248STDY7309092,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09851-4248STDY7309092-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09851-4248STDY7309092-2019-03-07.vcf.gz,,,, +VBS09852-4248STDY7309093,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09852-4248STDY7309093-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09852-4248STDY7309093-2019-03-07.vcf.gz,,,, +VBS09858-4248STDY7309094,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09858-4248STDY7309094-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09858-4248STDY7309094-2019-03-08.vcf.gz,,,, +VBS09861-4248STDY7309095,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09861-4248STDY7309095-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09861-4248STDY7309095-2019-03-07.vcf.gz,,,, +VBS09871-4248STDY7309097,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09871-4248STDY7309097-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09871-4248STDY7309097-2019-03-07.vcf.gz,,,, +VBS09917-4248STDY7309098,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09917-4248STDY7309098-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09917-4248STDY7309098-2019-03-07.vcf.gz,,,, +VBS09921-4248STDY7309100,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09921-4248STDY7309100-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09921-4248STDY7309100-2019-03-07.vcf.gz,,,, +VBS09957-4248STDY7309104,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09957-4248STDY7309104-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09957-4248STDY7309104-2019-03-07.vcf.gz,,,, +VBS09963-4248STDY7309105,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09963-4248STDY7309105-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09963-4248STDY7309105-2019-03-29.vcf.gz,,,, +VBS09966-4248STDY7309106,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09966-4248STDY7309106-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09966-4248STDY7309106-2019-03-07.vcf.gz,,,, +VBS09967-4248STDY7309107,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09967-4248STDY7309107-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09967-4248STDY7309107-2019-03-07.vcf.gz,,,, +VBS09971-4248STDY7309108,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09971-4248STDY7309108-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09971-4248STDY7309108-2019-03-07.vcf.gz,,,, +VBS09979-4248STDY7309109,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09979-4248STDY7309109-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09979-4248STDY7309109-2019-03-07.vcf.gz,,,, +VBS10021-4248STDY7309112,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10021-4248STDY7309112-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10021-4248STDY7309112-2019-03-07.vcf.gz,,,, +VBS10022-4248STDY7309113,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10022-4248STDY7309113-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10022-4248STDY7309113-2019-03-07.vcf.gz,,,, +VBS10025-4248STDY7309114,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10025-4248STDY7309114-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10025-4248STDY7309114-2019-03-07.vcf.gz,,,, +VBS10026-4248STDY7309115,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10026-4248STDY7309115-2019-03-08.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10026-4248STDY7309115-2019-03-08.vcf.gz,,,, +VBS10027-4248STDY7309116,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10027-4248STDY7309116-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10027-4248STDY7309116-2019-03-07.vcf.gz,,,, +VBS10028-4248STDY7309117,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10028-4248STDY7309117-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10028-4248STDY7309117-2019-03-07.vcf.gz,,,, +VBS10029-4248STDY7309118,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10029-4248STDY7309118-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10029-4248STDY7309118-2019-03-07.vcf.gz,,,, +VBS10032-4248STDY7309119,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10032-4248STDY7309119-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10032-4248STDY7309119-2019-03-07.vcf.gz,,,, +VBS10033-4248STDY7309120,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10033-4248STDY7309120-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10033-4248STDY7309120-2019-03-07.vcf.gz,,,, +VBS10034-4248STDY7309121,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10034-4248STDY7309121-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10034-4248STDY7309121-2019-03-07.vcf.gz,,,, +VBS10035-4248STDY7309122,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10035-4248STDY7309122-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10035-4248STDY7309122-2019-03-07.vcf.gz,,,, +VBS10036-4248STDY7309123,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10036-4248STDY7309123-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10036-4248STDY7309123-2019-03-07.vcf.gz,,,, +VBS10038-4248STDY7309124,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10038-4248STDY7309124-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10038-4248STDY7309124-2019-03-07.vcf.gz,,,, +VBS10039-4248STDY7309125,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10039-4248STDY7309125-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10039-4248STDY7309125-2019-03-07.vcf.gz,,,, +VBS10040-4248STDY7309126,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10040-4248STDY7309126-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10040-4248STDY7309126-2019-03-07.vcf.gz,,,, +VBS10042-4248STDY7309127,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10042-4248STDY7309127-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10042-4248STDY7309127-2019-03-07.vcf.gz,,,, +VBS10043-4248STDY7309128,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10043-4248STDY7309128-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10043-4248STDY7309128-2019-03-07.vcf.gz,,,, +VBS10044-4248STDY7309129,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10044-4248STDY7309129-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10044-4248STDY7309129-2019-03-07.vcf.gz,,,, +VBS10049-4248STDY7309130,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10049-4248STDY7309130-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10049-4248STDY7309130-2019-03-07.vcf.gz,,,, +VBS10052-4248STDY7309131,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10052-4248STDY7309131-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10052-4248STDY7309131-2019-03-07.vcf.gz,,,, +VBS10055-4248STDY7309132,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10055-4248STDY7309132-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10055-4248STDY7309132-2019-03-07.vcf.gz,,,, +VBS10062-4248STDY7309133,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10062-4248STDY7309133-2019-03-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10062-4248STDY7309133-2019-03-07.vcf.gz,,,, +VBS10064-4248STDY7309134,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10064-4248STDY7309134-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS10064-4248STDY7309134-2019-03-07.vcf.gz,,,, +VBS16552-4248STDY7309135,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16552-4248STDY7309135-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16552-4248STDY7309135-2019-03-04.vcf.gz,,,, +VBS16553-4248STDY7309136,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16553-4248STDY7309136-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16553-4248STDY7309136-2019-03-04.vcf.gz,,,, +VBS16555-4248STDY7309137,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16555-4248STDY7309137-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16555-4248STDY7309137-2019-03-04.vcf.gz,,,, +VBS16558-4248STDY7309138,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16558-4248STDY7309138-2019-03-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16558-4248STDY7309138-2019-03-04.vcf.gz,,,, +VBS16559-4248STDY7309139,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16559-4248STDY7309139-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16559-4248STDY7309139-2019-03-07.vcf.gz,,,, +VBS16592-4248STDY7309143,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16592-4248STDY7309143-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16592-4248STDY7309143-2019-03-07.vcf.gz,,,, +VBS16604-4248STDY7309145,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16604-4248STDY7309145-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16604-4248STDY7309145-2019-03-07.vcf.gz,,,, +VBS16619-4248STDY7309146,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16619-4248STDY7309146-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16619-4248STDY7309146-2019-03-07.vcf.gz,,,, +VBS16627-4248STDY7309147,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16627-4248STDY7309147-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16627-4248STDY7309147-2019-03-07.vcf.gz,,,, +VBS16631-4248STDY7309148,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16631-4248STDY7309148-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16631-4248STDY7309148-2019-03-07.vcf.gz,,,, +VBS16646-4248STDY7309149,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16646-4248STDY7309149-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16646-4248STDY7309149-2019-03-07.vcf.gz,,,, +VBS16648-4248STDY7309150,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16648-4248STDY7309150-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16648-4248STDY7309150-2019-03-07.vcf.gz,,,, +VBS16649-4248STDY7309151,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16649-4248STDY7309151-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16649-4248STDY7309151-2019-03-07.vcf.gz,,,, +VBS16650-4248STDY7309152,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16650-4248STDY7309152-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16650-4248STDY7309152-2019-03-07.vcf.gz,,,, +VBS16651-4248STDY7309153,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16651-4248STDY7309153-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16651-4248STDY7309153-2019-03-07.vcf.gz,,,, +VBS16652-4248STDY7309154,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16652-4248STDY7309154-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16652-4248STDY7309154-2019-03-07.vcf.gz,,,, +VBS16654-4248STDY7309155,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16654-4248STDY7309155-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16654-4248STDY7309155-2019-03-07.vcf.gz,,,, +VBS16664-4248STDY7309156,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16664-4248STDY7309156-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16664-4248STDY7309156-2019-03-07.vcf.gz,,,, +VBS16686-4248STDY7309158,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16686-4248STDY7309158-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16686-4248STDY7309158-2019-03-07.vcf.gz,,,, +VBS16694-4248STDY7309160,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16694-4248STDY7309160-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16694-4248STDY7309160-2019-03-07.vcf.gz,,,, +VBS16695-4248STDY7309161,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16695-4248STDY7309161-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16695-4248STDY7309161-2019-03-07.vcf.gz,,,, +VBS16698-4248STDY7309162,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16698-4248STDY7309162-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16698-4248STDY7309162-2019-03-07.vcf.gz,,,, +VBS16703-4248STDY7309163,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16703-4248STDY7309163-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16703-4248STDY7309163-2019-03-07.vcf.gz,,,, +VBS16707-4248STDY7309164,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16707-4248STDY7309164-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16707-4248STDY7309164-2019-03-07.vcf.gz,,,, +VBS16713-4248STDY7309165,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16713-4248STDY7309165-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16713-4248STDY7309165-2019-03-07.vcf.gz,,,, +VBS16724-4248STDY7309166,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16724-4248STDY7309166-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16724-4248STDY7309166-2019-03-07.vcf.gz,,,, +VBS16732-4248STDY7309167,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16732-4248STDY7309167-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16732-4248STDY7309167-2019-03-07.vcf.gz,,,, +VBS16736-4248STDY7309168,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16736-4248STDY7309168-2019-03-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16736-4248STDY7309168-2019-03-07.vcf.gz,,,, +VBS09376-4248STDY7918389,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09376-4248STDY7918389-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09376-4248STDY7918389-2019-07-22.vcf.gz,,,, +VBS09377-4248STDY7918390,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09377-4248STDY7918390-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09377-4248STDY7918390-2019-07-22.vcf.gz,,,, +VBS09380-4248STDY7918392,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09380-4248STDY7918392-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09380-4248STDY7918392-2019-07-22.vcf.gz,,,, +VBS09381-4248STDY7918393,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09381-4248STDY7918393-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09381-4248STDY7918393-2019-07-23.vcf.gz,,,, +VBS09385-4248STDY7918394,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09385-4248STDY7918394-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09385-4248STDY7918394-2019-07-22.vcf.gz,,,, +VBS09386-4248STDY7918395,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09386-4248STDY7918395-2019-07-25.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09386-4248STDY7918395-2019-07-26.vcf.gz,,,, +VBS09389-3429STDY7351727,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09389-3429STDY7351727-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09389-3429STDY7351727-2019-07-22.vcf.gz,,,, +VBS09390-3429STDY7351728,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09390-3429STDY7351728-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09390-3429STDY7351728-2019-07-22.vcf.gz,,,, +VBS09392-4248STDY7918396,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09392-4248STDY7918396-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09392-4248STDY7918396-2019-07-22.vcf.gz,,,, +VBS09393-4248STDY7918397,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09393-4248STDY7918397-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09393-4248STDY7918397-2019-07-22.vcf.gz,,,, +VBS09394-4248STDY7918398,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09394-4248STDY7918398-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09394-4248STDY7918398-2019-07-22.vcf.gz,,,, +VBS09395-4248STDY7918399,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09395-4248STDY7918399-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09395-4248STDY7918399-2019-07-22.vcf.gz,,,, +VBS09396-4248STDY7918400,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09396-4248STDY7918400-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09396-4248STDY7918400-2019-07-22.vcf.gz,,,, +VBS09401-4248STDY7918401,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09401-4248STDY7918401-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09401-4248STDY7918401-2019-07-22.vcf.gz,,,, +VBS09402-4248STDY7918402,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09402-4248STDY7918402-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09402-4248STDY7918402-2019-07-22.vcf.gz,,,, +VBS09403-3429STDY7351725,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09403-3429STDY7351725-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09403-3429STDY7351725-2019-07-22.vcf.gz,,,, +VBS09404-4248STDY7918405,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09404-4248STDY7918405-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09404-4248STDY7918405-2019-09-02.vcf.gz,,,, +VBS09405-4248STDY7918406,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09405-4248STDY7918406-2019-09-02.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09405-4248STDY7918406-2019-09-02.vcf.gz,,,, +VBS09406-4248STDY7918407,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09406-4248STDY7918407-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09406-4248STDY7918407-2019-09-01.vcf.gz,,,, +VBS09449-4248STDY7918414,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09449-4248STDY7918414-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09449-4248STDY7918414-2019-09-01.vcf.gz,,,, +VBS09486-4248STDY7918429,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09486-4248STDY7918429-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09486-4248STDY7918429-2019-09-02.vcf.gz,,,, +VBS09510-4248STDY7918433,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09510-4248STDY7918433-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09510-4248STDY7918433-2019-09-01.vcf.gz,,,, +VBS09512-4248STDY7918434,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09512-4248STDY7918434-2019-09-04.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09512-4248STDY7918434-2019-09-04.vcf.gz,,,, +VBS09522-4248STDY7918438,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09522-4248STDY7918438-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09522-4248STDY7918438-2019-09-01.vcf.gz,,,, +VBS09523-4248STDY7918439,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09523-4248STDY7918439-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09523-4248STDY7918439-2019-09-01.vcf.gz,,,, +VBS09526-4248STDY7918440,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09526-4248STDY7918440-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09526-4248STDY7918440-2019-09-01.vcf.gz,,,, +VBS09530-4248STDY7918441,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09530-4248STDY7918441-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09530-4248STDY7918441-2019-09-01.vcf.gz,,,, +VBS09533-4248STDY7918442,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09533-4248STDY7918442-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09533-4248STDY7918442-2019-09-02.vcf.gz,,,, +VBS09543-4248STDY7918445,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09543-4248STDY7918445-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09543-4248STDY7918445-2019-09-01.vcf.gz,,,, +VBS09544-4248STDY7918446,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09544-4248STDY7918446-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09544-4248STDY7918446-2019-09-02.vcf.gz,,,, +VBS09550-4248STDY7918447,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09550-4248STDY7918447-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09550-4248STDY7918447-2019-09-02.vcf.gz,,,, +VBS09578-4248STDY7918455,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09578-4248STDY7918455-2019-09-07.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09578-4248STDY7918455-2019-09-08.vcf.gz,,,, +VBS09584-3429STDY7351712,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09584-3429STDY7351712-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09584-3429STDY7351712-2019-07-22.vcf.gz,,,, +VBS09592-4248STDY7918457,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09592-4248STDY7918457-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09592-4248STDY7918457-2019-09-01.vcf.gz,,,, +VBS09594-4248STDY7918458,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09594-4248STDY7918458-2019-09-02.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09594-4248STDY7918458-2019-09-02.vcf.gz,,,, +VBS09604-4248STDY7918460,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09604-4248STDY7918460-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09604-4248STDY7918460-2019-09-01.vcf.gz,,,, +VBS09664-4248STDY7918477,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09664-4248STDY7918477-2019-09-06.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09664-4248STDY7918477-2019-09-08.vcf.gz,,,, +VBS09665-4248STDY7918478,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09665-4248STDY7918478-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09665-4248STDY7918478-2019-09-01.vcf.gz,,,, +VBS09667-4248STDY7918480,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09667-4248STDY7918480-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09667-4248STDY7918480-2019-09-01.vcf.gz,,,, +VBS09668-4248STDY7918481,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09668-4248STDY7918481-2019-09-08.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09668-4248STDY7918481-2019-09-09.vcf.gz,,,, +VBS09669-4248STDY7918482,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09669-4248STDY7918482-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09669-4248STDY7918482-2019-09-02.vcf.gz,,,, +VBS09670-4248STDY7918483,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09670-4248STDY7918483-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09670-4248STDY7918483-2019-09-01.vcf.gz,,,, +VBS09671-4248STDY7918484,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09671-4248STDY7918484-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09671-4248STDY7918484-2019-09-01.vcf.gz,,,, +VBS09682-4248STDY7918485,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09682-4248STDY7918485-2019-09-01.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09682-4248STDY7918485-2019-09-01.vcf.gz,,,, +VBS09683-4248STDY7918486,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09683-4248STDY7918486-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09683-4248STDY7918486-2019-09-01.vcf.gz,,,, +VBS09688-4248STDY7918489,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09688-4248STDY7918489-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09688-4248STDY7918489-2019-09-01.vcf.gz,,,, +VBS09700-4248STDY7918492,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09700-4248STDY7918492-2019-08-31.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09700-4248STDY7918492-2019-09-01.vcf.gz,,,, +VBS09706-4248STDY7918495,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09706-4248STDY7918495-2019-09-02.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09706-4248STDY7918495-2019-09-02.vcf.gz,,,, +VBS09732-4248STDY7918503,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09732-4248STDY7918503-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09732-4248STDY7918503-2019-07-22.vcf.gz,,,, +VBS09733-4248STDY7918504,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09733-4248STDY7918504-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09733-4248STDY7918504-2019-07-22.vcf.gz,,,, +VBS09742-4248STDY7918506,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09742-4248STDY7918506-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09742-4248STDY7918506-2019-07-22.vcf.gz,,,, +VBS09749-4248STDY7918510,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09749-4248STDY7918510-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09749-4248STDY7918510-2019-07-22.vcf.gz,,,, +VBS09750-4248STDY7918512,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09750-4248STDY7918512-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09750-4248STDY7918512-2019-07-22.vcf.gz,,,, +VBS09751-4248STDY7918513,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09751-4248STDY7918513-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09751-4248STDY7918513-2019-07-22.vcf.gz,,,, +VBS09752-4248STDY7918514,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09752-4248STDY7918514-2019-07-30.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09752-4248STDY7918514-2019-07-31.vcf.gz,,,, +VBS09753-4248STDY7918515,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09753-4248STDY7918515-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09753-4248STDY7918515-2019-07-22.vcf.gz,,,, +VBS09754-4248STDY7918516,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09754-4248STDY7918516-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09754-4248STDY7918516-2019-07-22.vcf.gz,,,, +VBS09755-4248STDY7918517,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09755-4248STDY7918517-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09755-4248STDY7918517-2019-07-22.vcf.gz,,,, +VBS09757-4248STDY7918518,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09757-4248STDY7918518-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09757-4248STDY7918518-2019-07-22.vcf.gz,,,, +VBS09763-4248STDY7918519,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09763-4248STDY7918519-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09763-4248STDY7918519-2019-07-22.vcf.gz,,,, +VBS09764-4248STDY7918520,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09764-4248STDY7918520-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09764-4248STDY7918520-2019-07-22.vcf.gz,,,, +VBS09766-4248STDY7918521,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09766-4248STDY7918521-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09766-4248STDY7918521-2019-07-22.vcf.gz,,,, +VBS09767-4248STDY7918522,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09767-4248STDY7918522-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09767-4248STDY7918522-2019-07-22.vcf.gz,,,, +VBS09774-4248STDY7918524,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09774-4248STDY7918524-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09774-4248STDY7918524-2019-07-22.vcf.gz,,,, +VBS09779-4248STDY7918526,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09779-4248STDY7918526-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09779-4248STDY7918526-2019-07-22.vcf.gz,,,, +VBS09780-4248STDY7918527,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09780-4248STDY7918527-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09780-4248STDY7918527-2019-07-22.vcf.gz,,,, +VBS09784-4248STDY7918528,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09784-4248STDY7918528-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09784-4248STDY7918528-2019-07-22.vcf.gz,,,, +VBS09788-4248STDY7918530,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09788-4248STDY7918530-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09788-4248STDY7918530-2019-07-22.vcf.gz,,,, +VBS09789-4248STDY7918531,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09789-4248STDY7918531-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09789-4248STDY7918531-2019-07-22.vcf.gz,,,, +VBS09793-4248STDY7918532,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09793-4248STDY7918532-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09793-4248STDY7918532-2019-07-22.vcf.gz,,,, +VBS09796-4248STDY7918534,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09796-4248STDY7918534-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09796-4248STDY7918534-2019-07-22.vcf.gz,,,, +VBS09804-3429STDY7351716,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09804-3429STDY7351716-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09804-3429STDY7351716-2019-07-22.vcf.gz,,,, +VBS09805-4248STDY7918537,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09805-4248STDY7918537-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09805-4248STDY7918537-2019-07-22.vcf.gz,,,, +VBS09806-4248STDY7918538,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09806-4248STDY7918538-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09806-4248STDY7918538-2019-07-22.vcf.gz,,,, +VBS09813-4248STDY7918539,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09813-4248STDY7918539-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09813-4248STDY7918539-2019-07-22.vcf.gz,,,, +VBS09820-4248STDY7918542,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09820-4248STDY7918542-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09820-4248STDY7918542-2019-07-22.vcf.gz,,,, +VBS09822-3429STDY7351713,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09822-3429STDY7351713-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09822-3429STDY7351713-2019-07-22.vcf.gz,,,, +VBS09824-3429STDY7351714,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09824-3429STDY7351714-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09824-3429STDY7351714-2019-07-22.vcf.gz,,,, +VBS09825-3429STDY7351715,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09825-3429STDY7351715-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09825-3429STDY7351715-2019-07-22.vcf.gz,,,, +VBS09826-4248STDY7918544,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09826-4248STDY7918544-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09826-4248STDY7918544-2019-07-22.vcf.gz,,,, +VBS09828-4248STDY7918545,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09828-4248STDY7918545-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09828-4248STDY7918545-2019-07-22.vcf.gz,,,, +VBS09830-4248STDY7918546,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09830-4248STDY7918546-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09830-4248STDY7918546-2019-07-22.vcf.gz,,,, +VBS09831-4248STDY7918547,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09831-4248STDY7918547-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09831-4248STDY7918547-2019-07-22.vcf.gz,,,, +VBS09834-4248STDY7918548,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09834-4248STDY7918548-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09834-4248STDY7918548-2019-07-22.vcf.gz,,,, +VBS09835-4248STDY7918549,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09835-4248STDY7918549-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09835-4248STDY7918549-2019-07-22.vcf.gz,,,, +VBS09837-4248STDY7918550,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09837-4248STDY7918550-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09837-4248STDY7918550-2019-07-22.vcf.gz,,,, +VBS09838-4248STDY7918551,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09838-4248STDY7918551-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09838-4248STDY7918551-2019-07-22.vcf.gz,,,, +VBS09840-4248STDY7918552,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09840-4248STDY7918552-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09840-4248STDY7918552-2019-07-22.vcf.gz,,,, +VBS09841-4248STDY7918553,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09841-4248STDY7918553-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09841-4248STDY7918553-2019-07-22.vcf.gz,,,, +VBS09842-4248STDY7918554,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09842-4248STDY7918554-2019-08-03.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09842-4248STDY7918554-2019-08-04.vcf.gz,,,, +VBS09844-4248STDY7918555,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09844-4248STDY7918555-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09844-4248STDY7918555-2019-07-22.vcf.gz,,,, +VBS09847-4248STDY7918558,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09847-4248STDY7918558-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09847-4248STDY7918558-2019-07-22.vcf.gz,,,, +VBS09849-4248STDY7918560,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09849-4248STDY7918560-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09849-4248STDY7918560-2019-07-22.vcf.gz,,,, +VBS09853-4248STDY7918561,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09853-4248STDY7918561-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09853-4248STDY7918561-2019-07-22.vcf.gz,,,, +VBS09855-4248STDY7918562,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09855-4248STDY7918562-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09855-4248STDY7918562-2019-07-22.vcf.gz,,,, +VBS09857-4248STDY7918564,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09857-4248STDY7918564-2019-07-26.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09857-4248STDY7918564-2019-07-26.vcf.gz,,,, +VBS09862-4248STDY7918566,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09862-4248STDY7918566-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09862-4248STDY7918566-2019-07-22.vcf.gz,,,, +VBS09865-4248STDY7918569,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09865-4248STDY7918569-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09865-4248STDY7918569-2019-07-22.vcf.gz,,,, +VBS09872-4248STDY7918571,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09872-4248STDY7918571-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09872-4248STDY7918571-2019-07-22.vcf.gz,,,, +VBS09874-4248STDY7918572,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09874-4248STDY7918572-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09874-4248STDY7918572-2019-07-22.vcf.gz,,,, +VBS09875-4248STDY7918573,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09875-4248STDY7918573-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09875-4248STDY7918573-2019-07-22.vcf.gz,,,, +VBS09878-4248STDY7918575,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09878-4248STDY7918575-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09878-4248STDY7918575-2019-07-22.vcf.gz,,,, +VBS09898-4248STDY7918582,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09898-4248STDY7918582-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09898-4248STDY7918582-2019-07-22.vcf.gz,,,, +VBS09912-4248STDY7918589,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09912-4248STDY7918589-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09912-4248STDY7918589-2019-07-23.vcf.gz,,,, +VBS09914-3429STDY7351719,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09914-3429STDY7351719-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09914-3429STDY7351719-2019-07-22.vcf.gz,,,, +VBS09927-3429STDY7351720,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09927-3429STDY7351720-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09927-3429STDY7351720-2019-07-22.vcf.gz,,,, +VBS09932-3429STDY7351721,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09932-3429STDY7351721-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09932-3429STDY7351721-2019-07-22.vcf.gz,,,, +VBS09950-4248STDY7918611,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09950-4248STDY7918611-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09950-4248STDY7918611-2019-07-22.vcf.gz,,,, +VBS09951-4248STDY7918612,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09951-4248STDY7918612-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09951-4248STDY7918612-2019-07-22.vcf.gz,,,, +VBS09954-4248STDY7918613,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09954-4248STDY7918613-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09954-4248STDY7918613-2019-07-22.vcf.gz,,,, +VBS09956-4248STDY7918614,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09956-4248STDY7918614-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09956-4248STDY7918614-2019-07-22.vcf.gz,,,, +VBS09959-4248STDY7918615,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09959-4248STDY7918615-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09959-4248STDY7918615-2019-07-22.vcf.gz,,,, +VBS09968-4248STDY7918619,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09968-4248STDY7918619-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09968-4248STDY7918619-2019-07-22.vcf.gz,,,, +VBS09976-4248STDY7918620,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09976-4248STDY7918620-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09976-4248STDY7918620-2019-07-22.vcf.gz,,,, +VBS09978-4248STDY7918622,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09978-4248STDY7918622-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09978-4248STDY7918622-2019-07-22.vcf.gz,,,, +VBS09980-4248STDY7918623,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09980-4248STDY7918623-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09980-4248STDY7918623-2019-07-22.vcf.gz,,,, +VBS09982-4248STDY7918625,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09982-4248STDY7918625-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09982-4248STDY7918625-2019-07-22.vcf.gz,,,, +VBS09983-4248STDY7918626,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09983-4248STDY7918626-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS09983-4248STDY7918626-2019-07-22.vcf.gz,,,, +VBS16554-4248STDY7918627,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16554-4248STDY7918627-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16554-4248STDY7918627-2019-07-22.vcf.gz,,,, +VBS16556-4248STDY7918628,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16556-4248STDY7918628-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16556-4248STDY7918628-2019-07-23.vcf.gz,,,, +VBS16563-4248STDY7918631,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16563-4248STDY7918631-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16563-4248STDY7918631-2019-07-22.vcf.gz,,,, +VBS16568-4248STDY7918632,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16568-4248STDY7918632-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16568-4248STDY7918632-2019-07-22.vcf.gz,,,, +VBS16569-4248STDY7918633,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16569-4248STDY7918633-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16569-4248STDY7918633-2019-07-22.vcf.gz,,,, +VBS16570-4248STDY7918634,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16570-4248STDY7918634-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16570-4248STDY7918634-2019-07-22.vcf.gz,,,, +VBS16571-4248STDY7918635,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16571-4248STDY7918635-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16571-4248STDY7918635-2019-07-22.vcf.gz,,,, +VBS16574-4248STDY7918636,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16574-4248STDY7918636-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16574-4248STDY7918636-2019-07-22.vcf.gz,,,, +VBS16575-4248STDY7918637,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16575-4248STDY7918637-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16575-4248STDY7918637-2019-07-22.vcf.gz,,,, +VBS16576-4248STDY7918638,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16576-4248STDY7918638-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16576-4248STDY7918638-2019-07-22.vcf.gz,,,, +VBS16577-4248STDY7918639,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16577-4248STDY7918639-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16577-4248STDY7918639-2019-07-22.vcf.gz,,,, +VBS16580-4248STDY7918641,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16580-4248STDY7918641-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16580-4248STDY7918641-2019-07-22.vcf.gz,,,, +VBS16581-4248STDY7918642,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16581-4248STDY7918642-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16581-4248STDY7918642-2019-07-22.vcf.gz,,,, +VBS16582-4248STDY7918643,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16582-4248STDY7918643-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16582-4248STDY7918643-2019-07-22.vcf.gz,,,, +VBS16583-3429STDY7351710,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16583-3429STDY7351710-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16583-3429STDY7351710-2019-07-22.vcf.gz,,,, +VBS16584-4248STDY7918644,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16584-4248STDY7918644-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16584-4248STDY7918644-2019-07-22.vcf.gz,,,, +VBS16586-4248STDY7918645,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16586-4248STDY7918645-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16586-4248STDY7918645-2019-07-22.vcf.gz,,,, +VBS16587-4248STDY7918646,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16587-4248STDY7918646-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16587-4248STDY7918646-2019-07-22.vcf.gz,,,, +VBS16591-4248STDY7918648,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16591-4248STDY7918648-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16591-4248STDY7918648-2019-07-22.vcf.gz,,,, +VBS16593-4248STDY7918649,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16593-4248STDY7918649-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16593-4248STDY7918649-2019-07-22.vcf.gz,,,, +VBS16600-4248STDY7918650,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16600-4248STDY7918650-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16600-4248STDY7918650-2019-07-22.vcf.gz,,,, +VBS16601-4248STDY7918651,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16601-4248STDY7918651-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16601-4248STDY7918651-2019-07-22.vcf.gz,,,, +VBS16602-4248STDY7918652,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16602-4248STDY7918652-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16602-4248STDY7918652-2019-07-22.vcf.gz,,,, +VBS16603-4248STDY7918653,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16603-4248STDY7918653-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16603-4248STDY7918653-2019-07-22.vcf.gz,,,, +VBS16606-4248STDY7918654,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16606-4248STDY7918654-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16606-4248STDY7918654-2019-07-22.vcf.gz,,,, +VBS16607-4248STDY7918655,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16607-4248STDY7918655-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16607-4248STDY7918655-2019-07-22.vcf.gz,,,, +VBS16608-4248STDY7918656,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16608-4248STDY7918656-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16608-4248STDY7918656-2019-07-22.vcf.gz,,,, +VBS16610-4248STDY7918658,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16610-4248STDY7918658-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16610-4248STDY7918658-2019-07-22.vcf.gz,,,, +VBS16611-4248STDY7918659,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16611-4248STDY7918659-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16611-4248STDY7918659-2019-07-22.vcf.gz,,,, +VBS16616-4248STDY7918661,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16616-4248STDY7918661-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16616-4248STDY7918661-2019-07-22.vcf.gz,,,, +VBS16617-4248STDY7918662,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16617-4248STDY7918662-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16617-4248STDY7918662-2019-07-22.vcf.gz,,,, +VBS16618-4248STDY7918663,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16618-4248STDY7918663-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16618-4248STDY7918663-2019-07-22.vcf.gz,,,, +VBS16620-4248STDY7918664,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16620-4248STDY7918664-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16620-4248STDY7918664-2019-07-23.vcf.gz,,,, +VBS16621-4248STDY7918665,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16621-4248STDY7918665-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16621-4248STDY7918665-2019-07-22.vcf.gz,,,, +VBS16622-4248STDY7918666,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16622-4248STDY7918666-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16622-4248STDY7918666-2019-07-22.vcf.gz,,,, +VBS16624-4248STDY7918667,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16624-4248STDY7918667-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16624-4248STDY7918667-2019-07-22.vcf.gz,,,, +VBS16625-4248STDY7918668,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16625-4248STDY7918668-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16625-4248STDY7918668-2019-07-22.vcf.gz,,,, +VBS16626-4248STDY7918669,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16626-4248STDY7918669-2019-07-21.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16626-4248STDY7918669-2019-07-22.vcf.gz,,,, +VBS16628-4248STDY7918670,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16628-4248STDY7918670-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16628-4248STDY7918670-2019-07-22.vcf.gz,,,, +VBS16630-4248STDY7918671,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16630-4248STDY7918671-2019-07-22.bam,,https://1175-vo-kh-stlaurent-minimus.cog.sanger.ac.uk/VBS16630-4248STDY7918671-2019-07-22.vcf.gz,,,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv index f10d3bef8..f56c518e6 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/samples.meta.csv @@ -1,48 +1,48 @@ -sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call -VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN -VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN -VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN -VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN -VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288,UKN -VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN -VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN -VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN -VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN -VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203,UKN -VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN -VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN -VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN -VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN -VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN -VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN -VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282,UKN -VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN -VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203,UKN -VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN -VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN -VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN -VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194,UKN -VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN -VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN -VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN -VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN -VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN -VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN -VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN -VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN -VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN -VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN -VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN -VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288,UKN -VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN -VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN -VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN -VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN -VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN -VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS46299-6321STDY9453299,158,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46307-6321STDY9453307,2973,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46315-6321STDY9453315,2340,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46323-6321STDY9453323,2525,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46331-6321STDY9453331,5249,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46339-6321STDY9453339,4417,Shiaful Alam,Bangladesh,Bangladesh_4,2018,9,22.245,92.288,UKN +VBS46300-6321STDY9453300,1473,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46308-6321STDY9453308,2974,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46316-6321STDY9453316,2343,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46324-6321STDY9453324,2730,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46332-6321STDY9453332,5410,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46340-6321STDY9453340,6199,Shiaful Alam,Bangladesh,Bangladesh_1,2018,10,22.254,92.203,UKN +VBS46301-6321STDY9453301,1482,Shiaful Alam,Bangladesh,Bangladesh_2,2018,5,22.287,92.194,UKN +VBS46309-6321STDY9453309,2975,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46317-6321STDY9453317,2345,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46325-6321STDY9453325,2594,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46333-6321STDY9453333,5411,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN +VBS46341-6321STDY9453341,4624,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46302-6321STDY9453302,240,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46310-6321STDY9453310,3097,Shiaful Alam,Bangladesh,Bangladesh_3,2018,6,22.382,92.282,UKN +VBS46318-6321STDY9453318,2349,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46326-6321STDY9453326,3225,Shiaful Alam,Bangladesh,Bangladesh_1,2018,8,22.254,92.203,UKN +VBS46334-6321STDY9453334,6485,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46342-6321STDY9453342,4629,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46303-6321STDY9453303,259,Shiaful Alam,Bangladesh,Bangladesh_4,2018,6,22.245,92.288,UKN +VBS46311-6321STDY9453311,1725,Shiaful Alam,Bangladesh,Bangladesh_2,2018,6,22.287,92.194,UKN +VBS46319-6321STDY9453319,2474,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46327-6321STDY9453327,5587,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46335-6321STDY9453335,6451,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46343-6321STDY9453343,4627,Shiaful Alam,Bangladesh,Bangladesh_3,2018,10,22.382,92.282,UKN +VBS46304-6321STDY9453304,2958,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46312-6321STDY9453312,992,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46320-6321STDY9453320,2497,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46328-6321STDY9453328,5601,Shiaful Alam,Bangladesh,Bangladesh_2,2018,8,22.287,92.194,UKN +VBS46336-6321STDY9453336,6452,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46344-6321STDY9453344,1181,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46305-6321STDY9453305,2970,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46313-6321STDY9453313,1912,Shiaful Alam,Bangladesh,Bangladesh_4,2018,7,22.245,92.288,UKN +VBS46321-6321STDY9453321,2500,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46329-6321STDY9453329,5809,Shiaful Alam,Bangladesh,Bangladesh_4,2018,8,22.245,92.288,UKN +VBS46337-6321STDY9453337,6454,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN +VBS46345-6321STDY9453345,1211,Shiaful Alam,Bangladesh,Bangladesh_1,2018,5,22.254,92.203,UKN +VBS46306-6321STDY9453306,2972,Shiaful Alam,Bangladesh,Bangladesh_1,2018,6,22.254,92.203,UKN +VBS46314-6321STDY9453314,2328,Shiaful Alam,Bangladesh,Bangladesh_1,2018,7,22.254,92.203,UKN +VBS46322-6321STDY9453322,2524,Shiaful Alam,Bangladesh,Bangladesh_2,2018,7,22.287,92.194,UKN +VBS46330-6321STDY9453330,5246,Shiaful Alam,Bangladesh,Bangladesh_1,2018,9,22.254,92.203,UKN VBS46338-6321STDY9453338,6456,Shiaful Alam,Bangladesh,Bangladesh_3,2018,9,22.382,92.282,UKN diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv index d793d086b..bcdffb77d 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/sequence_qc_stats.csv @@ -1,48 +1,48 @@ -sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672491,median_cov_KB672491,mode_cov_KB672491,mean_cov_KB672492,median_cov_KB672492,mode_cov_KB672492,mean_cov_KB672503,median_cov_KB672503,mode_cov_KB672503,mean_cov_KB672514,median_cov_KB672514,mode_cov_KB672514,mean_cov_KB672525,median_cov_KB672525,mode_cov_KB672525,mean_cov_KB672536,median_cov_KB672536,mode_cov_KB672536,mean_cov_KB672547,median_cov_KB672547,mode_cov_KB672547,mean_cov_KB672558,median_cov_KB672558,mode_cov_KB672558,mean_cov_KB672569,median_cov_KB672569,mode_cov_KB672569,mean_cov_KB672580,median_cov_KB672580,mode_cov_KB672580,mean_cov_KB672591,median_cov_KB672591,mode_cov_KB672591,mean_cov_KB672602,median_cov_KB672602,mode_cov_KB672602,mean_cov_KB672603,median_cov_KB672603,mode_cov_KB672603,mean_cov_KB672614,median_cov_KB672614,mode_cov_KB672614,mean_cov_KB672625,median_cov_KB672625,mode_cov_KB672625,mean_cov_KB672636,median_cov_KB672636,mode_cov_KB672636,mean_cov_KB672647,median_cov_KB672647,mode_cov_KB672647,mean_cov_KB672658,median_cov_KB672658,mode_cov_KB672658,mean_cov_KB672680,median_cov_KB672680,mode_cov_KB672680,mean_cov_KB672691,median_cov_KB672691,mode_cov_KB672691,mean_cov_KB672702,median_cov_KB672702,mode_cov_KB672702,mean_cov_KB672713,median_cov_KB672713,mode_cov_KB672713,mean_cov_KB672714,median_cov_KB672714,mode_cov_KB672714,mean_cov_KB672725,median_cov_KB672725,mode_cov_KB672725,mean_cov_KB672736,median_cov_KB672736,mode_cov_KB672736,mean_cov_KB672747,median_cov_KB672747,mode_cov_KB672747,mean_cov_KB672758,median_cov_KB672758,mode_cov_KB672758,mean_cov_KB672769,median_cov_KB672769,mode_cov_KB672769,mean_cov_KB672780,median_cov_KB672780,mode_cov_KB672780,mean_cov_KB672788,median_cov_KB672788,mode_cov_KB672788,mean_cov_KB672789,median_cov_KB672789,mode_cov_KB672789,mean_cov_KB672790,median_cov_KB672790,mode_cov_KB672790,mean_cov_KB672791,median_cov_KB672791,mode_cov_KB672791,mean_cov_KB672792,median_cov_KB672792,mode_cov_KB672792,mean_cov_KB672793,median_cov_KB672793,mode_cov_KB672793,mean_cov_KB672794,median_cov_KB672794,mode_cov_KB672794,mean_cov_KB672795,median_cov_KB672795,mode_cov_KB672795,mean_cov_KB672796,median_cov_KB672796,mode_cov_KB672796,mean_cov_KB672797,median_cov_KB672797,mode_cov_KB672797,mean_cov_KB672798,median_cov_KB672798,mode_cov_KB672798,mean_cov_KB672799,median_cov_KB672799,mode_cov_KB672799,mean_cov_KB672800,median_cov_KB672800,mode_cov_KB672800,mean_cov_KB672801,median_cov_KB672801,mode_cov_KB672801,mean_cov_KB672802,median_cov_KB672802,mode_cov_KB672802,mean_cov_KB672803,median_cov_KB672803,mode_cov_KB672803,mean_cov_KB672804,median_cov_KB672804,mode_cov_KB672804,mean_cov_KB672805,median_cov_KB672805,mode_cov_KB672805,mean_cov_KB672806,median_cov_KB672806,mode_cov_KB672806,mean_cov_KB672807,median_cov_KB672807,mode_cov_KB672807,mean_cov_KB672808,median_cov_KB672808,mode_cov_KB672808,mean_cov_KB672809,median_cov_KB672809,mode_cov_KB672809,mean_cov_KB672810,median_cov_KB672810,mode_cov_KB672810,mean_cov_KB672811,median_cov_KB672811,mode_cov_KB672811,mean_cov_KB672812,median_cov_KB672812,mode_cov_KB672812,mean_cov_KB672813,median_cov_KB672813,mode_cov_KB672813,mean_cov_KB672814,median_cov_KB672814,mode_cov_KB672814,mean_cov_KB672815,median_cov_KB672815,mode_cov_KB672815,mean_cov_KB672816,median_cov_KB672816,mode_cov_KB672816,mean_cov_KB672817,median_cov_KB672817,mode_cov_KB672817,mean_cov_KB672818,median_cov_KB672818,mode_cov_KB672818,mean_cov_KB672819,median_cov_KB672819,mode_cov_KB672819,mean_cov_KB672820,median_cov_KB672820,mode_cov_KB672820,mean_cov_KB672821,median_cov_KB672821,mode_cov_KB672821,mean_cov_KB672823,median_cov_KB672823,mode_cov_KB672823,mean_cov_KB672824,median_cov_KB672824,mode_cov_KB672824,mean_cov_KB672825,median_cov_KB672825,mode_cov_KB672825,mean_cov_KB672826,median_cov_KB672826,mode_cov_KB672826,mean_cov_KB672827,median_cov_KB672827,mode_cov_KB672827,mean_cov_KB672828,median_cov_KB672828,mode_cov_KB672828,mean_cov_KB672829,median_cov_KB672829,mode_cov_KB672829,mean_cov_KB672830,median_cov_KB672830,mode_cov_KB672830,mean_cov_KB672832,median_cov_KB672832,mode_cov_KB672832,mean_cov_KB672833,median_cov_KB672833,mode_cov_KB672833,mean_cov_KB672835,median_cov_KB672835,mode_cov_KB672835,mean_cov_KB672837,median_cov_KB672837,mode_cov_KB672837,mean_cov_KB672838,median_cov_KB672838,mode_cov_KB672838,mean_cov_KB672839,median_cov_KB672839,mode_cov_KB672839,mean_cov_KB672843,median_cov_KB672843,mode_cov_KB672843,mean_cov_KB672845,median_cov_KB672845,mode_cov_KB672845,mean_cov_KB672846,median_cov_KB672846,mode_cov_KB672846,mean_cov_KB672849,median_cov_KB672849,mode_cov_KB672849,mean_cov_KB672851,median_cov_KB672851,mode_cov_KB672851,mean_cov_KB672855,median_cov_KB672855,mode_cov_KB672855,mean_cov_KB672857,median_cov_KB672857,mode_cov_KB672857,mean_cov_KB672859,median_cov_KB672859,mode_cov_KB672859,mean_cov_KB672861,median_cov_KB672861,mode_cov_KB672861,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672869,median_cov_KB672869,mode_cov_KB672869,mean_cov_KB672871,median_cov_KB672871,mode_cov_KB672871,mean_cov_KB672873,median_cov_KB672873,mode_cov_KB672873,mean_cov_KB672877,median_cov_KB672877,mode_cov_KB672877,mean_cov_KB672880,median_cov_KB672880,mode_cov_KB672880,mean_cov_KB672884,median_cov_KB672884,mode_cov_KB672884,mean_cov_KB672891,median_cov_KB672891,mode_cov_KB672891,mean_cov_KB672892,median_cov_KB672892,mode_cov_KB672892,mean_cov_KB672894,median_cov_KB672894,mode_cov_KB672894,mean_cov_KB672900,median_cov_KB672900,mode_cov_KB672900,mean_cov_KB672901,median_cov_KB672901,mode_cov_KB672901,mean_cov_KB672902,median_cov_KB672902,mode_cov_KB672902,mean_cov_KB672905,median_cov_KB672905,mode_cov_KB672905,mean_cov_KB672907,median_cov_KB672907,mode_cov_KB672907,mean_cov_KB672913,median_cov_KB672913,mode_cov_KB672913,mean_cov_KB672914,median_cov_KB672914,mode_cov_KB672914,mean_cov_KB672915,median_cov_KB672915,mode_cov_KB672915,mean_cov_KB672924,median_cov_KB672924,mode_cov_KB672924,mean_cov_KB672930,median_cov_KB672930,mode_cov_KB672930,mean_cov_KB672932,median_cov_KB672932,mode_cov_KB672932,mean_cov_KB672935,median_cov_KB672935,mode_cov_KB672935,mean_cov_KB672946,median_cov_KB672946,mode_cov_KB672946,mean_cov_KB672954,median_cov_KB672954,mode_cov_KB672954,mean_cov_KB672957,median_cov_KB672957,mode_cov_KB672957,mean_cov_KB672964,median_cov_KB672964,mode_cov_KB672964,mean_cov_KB672968,median_cov_KB672968,mode_cov_KB672968,mean_cov_KB672975,median_cov_KB672975,mode_cov_KB672975,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB672980,median_cov_KB672980,mode_cov_KB672980,mean_cov_KB672991,median_cov_KB672991,mode_cov_KB672991,mean_cov_KB673001,median_cov_KB673001,mode_cov_KB673001,mean_cov_KB673002,median_cov_KB673002,mode_cov_KB673002,mean_cov_KB673013,median_cov_KB673013,mode_cov_KB673013,mean_cov_KB673024,median_cov_KB673024,mode_cov_KB673024,mean_cov_KB673027,median_cov_KB673027,mode_cov_KB673027,mean_cov_KB673028,median_cov_KB673028,mode_cov_KB673028,mean_cov_KB673035,median_cov_KB673035,mode_cov_KB673035,mean_cov_KB673044,median_cov_KB673044,mode_cov_KB673044,mean_cov_KB673046,median_cov_KB673046,mode_cov_KB673046,mean_cov_KB673057,median_cov_KB673057,mode_cov_KB673057,mean_cov_KB673068,median_cov_KB673068,mode_cov_KB673068,mean_cov_KB673070,median_cov_KB673070,mode_cov_KB673070,mean_cov_KB673079,median_cov_KB673079,mode_cov_KB673079,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673091,median_cov_KB673091,mode_cov_KB673091,mean_cov_KB673102,median_cov_KB673102,mode_cov_KB673102,mean_cov_KB673113,median_cov_KB673113,mode_cov_KB673113,mean_cov_KB673124,median_cov_KB673124,mode_cov_KB673124,mean_cov_KB673130,median_cov_KB673130,mode_cov_KB673130,mean_cov_KB673135,median_cov_KB673135,mode_cov_KB673135,mean_cov_KB673138,median_cov_KB673138,mode_cov_KB673138,mean_cov_KB673146,median_cov_KB673146,mode_cov_KB673146,mean_cov_KB673157,median_cov_KB673157,mode_cov_KB673157,mean_cov_KB673168,median_cov_KB673168,mode_cov_KB673168,mean_cov_KB673179,median_cov_KB673179,mode_cov_KB673179,mean_cov_KB673187,median_cov_KB673187,mode_cov_KB673187,mean_cov_KB673190,median_cov_KB673190,mode_cov_KB673190,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,mean_cov_KB673202,median_cov_KB673202,mode_cov_KB673202,mean_cov_KB673213,median_cov_KB673213,mode_cov_KB673213,mean_cov_KB673224,median_cov_KB673224,mode_cov_KB673224,mean_cov_KB673235,median_cov_KB673235,mode_cov_KB673235,mean_cov_KB673246,median_cov_KB673246,mode_cov_KB673246,mean_cov_KB673257,median_cov_KB673257,mode_cov_KB673257,mean_cov_KB673268,median_cov_KB673268,mode_cov_KB673268,mean_cov_KB673279,median_cov_KB673279,mode_cov_KB673279,mean_cov_KB673290,median_cov_KB673290,mode_cov_KB673290,mean_cov_KB673301,median_cov_KB673301,mode_cov_KB673301,mean_cov_KB673312,median_cov_KB673312,mode_cov_KB673312,mean_cov_KB673313,median_cov_KB673313,mode_cov_KB673313,mean_cov_KB673324,median_cov_KB673324,mode_cov_KB673324,mean_cov_KB673335,median_cov_KB673335,mode_cov_KB673335,mean_cov_KB673346,median_cov_KB673346,mode_cov_KB673346,mean_cov_KB673357,median_cov_KB673357,mode_cov_KB673357,mean_cov_KB673368,median_cov_KB673368,mode_cov_KB673368,mean_cov_KB673379,median_cov_KB673379,mode_cov_KB673379,mean_cov_KB673390,median_cov_KB673390,mode_cov_KB673390,mean_cov_KB673401,median_cov_KB673401,mode_cov_KB673401,mean_cov_KB673412,median_cov_KB673412,mode_cov_KB673412,mean_cov_KB673423,median_cov_KB673423,mode_cov_KB673423,mean_cov_KB673424,median_cov_KB673424,mode_cov_KB673424,mean_cov_KB673435,median_cov_KB673435,mode_cov_KB673435,mean_cov_KB673446,median_cov_KB673446,mode_cov_KB673446,mean_cov_KB673457,median_cov_KB673457,mode_cov_KB673457,mean_cov_KB673468,median_cov_KB673468,mode_cov_KB673468,mean_cov_KB673479,median_cov_KB673479,mode_cov_KB673479,mean_cov_KB673490,median_cov_KB673490,mode_cov_KB673490,mean_cov_KB673501,median_cov_KB673501,mode_cov_KB673501,mean_cov_KB673512,median_cov_KB673512,mode_cov_KB673512,mean_cov_KB673523,median_cov_KB673523,mode_cov_KB673523,mean_cov_KB673534,median_cov_KB673534,mode_cov_KB673534,mean_cov_KB673535,median_cov_KB673535,mode_cov_KB673535,mean_cov_KB673546,median_cov_KB673546,mode_cov_KB673546,mean_cov_KB673557,median_cov_KB673557,mode_cov_KB673557,mean_cov_KB673568,median_cov_KB673568,mode_cov_KB673568,mean_cov_KB673579,median_cov_KB673579,mode_cov_KB673579,mean_cov_KB673590,median_cov_KB673590,mode_cov_KB673590,mean_cov_KB673601,median_cov_KB673601,mode_cov_KB673601,mean_cov_KB673612,median_cov_KB673612,mode_cov_KB673612,mean_cov_KB673623,median_cov_KB673623,mode_cov_KB673623,mean_cov_KB673634,median_cov_KB673634,mode_cov_KB673634,mean_cov_KB673645,median_cov_KB673645,mode_cov_KB673645,mean_cov_KB673646,median_cov_KB673646,mode_cov_KB673646,mean_cov_KB673657,median_cov_KB673657,mode_cov_KB673657,mean_cov_KB673668,median_cov_KB673668,mode_cov_KB673668,mean_cov_KB673679,median_cov_KB673679,mode_cov_KB673679,mean_cov_KB673690,median_cov_KB673690,mode_cov_KB673690,mean_cov_KB673701,median_cov_KB673701,mode_cov_KB673701,mean_cov_KB673712,median_cov_KB673712,mode_cov_KB673712,mean_cov_KB673723,median_cov_KB673723,mode_cov_KB673723,mean_cov_KB673734,median_cov_KB673734,mode_cov_KB673734,mean_cov_KB673745,median_cov_KB673745,mode_cov_KB673745,frac_gen_cov,divergence -VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,43.79,44,45,60.55,27,250,16.23,11,4,38.94,39,42,44.94,45,43,54.29,35,9,45.56,42,2,52.79,54,2,34.42,29,5,55.21,47,5,47,48,50,40.02,40,41,26.22,26,4,36.38,27,2,39.86,25,8,40.5,42,44,37.91,20,11,59.17,38,35,30.22,30,47,87.41,72,250,99.45,56,250,40.2,41,42,78.14,49,30,38.88,37,37,83.94,34,12,66.36,21,250,38.76,40,37,39.03,38,39,59.96,28,250,156.93,227,250,198.16,249,250,97.68,64,250,39.5,40,41,41.69,42,42,41.74,38,41,41.35,32,33,30.58,28,13,65.33,35,250,44.28,41,40,49.37,38,44,24.49,23,22,30.33,31,15,36.77,39,39,40.66,41,42,30.6,31,41,26.96,26,23,36.19,24,3,32.29,22,23,35.4,38,41,41.02,23,2,39.73,34,43,81.5,66,21,53.69,38,5,34.67,36,40,41.7,42,43,33.54,35,37,28.07,26,13,77.45,27,250,38.85,42,45,54.61,39,3,28.84,18,2,35.55,36,38,134.14,139,250,64.91,24,2,42.47,43,43,62.35,29,250,13.41,14,13,114.89,51,250,55.01,38,250,46.89,35,14,101.41,72,250,39.55,25,10,86.38,50,250,40.47,41,41,40.24,34,10,49.96,38,7,29.04,29,28,52.07,21,3,104.64,54,250,39.58,41,41,73.95,43,6,138.3,127,250,92.6,44,250,42.19,42,43,35.91,36,35,94.91,64,250,41.69,42,42,40.46,41,41,44.44,27,9,29.76,29,2,73.41,93,10,40.08,41,41,70.99,61,250,42.22,41,42,52.12,28,3,48.28,26,3,54.92,44,29,21.33,15,2,39.97,41,41,47.79,27,2,131.4,123,250,40.01,40,41,38.28,29,4,50.06,46,39,38.71,40,40,28.73,28,28,36.66,32,15,42.06,40,41,40.04,40,41,83.07,33,250,37.81,39,40,42.39,43,45,41.88,41,42,50.39,45,5,43.08,43,43,40.01,40,42,38.86,40,42,60.32,60,8,40.04,40,41,40.55,41,41,41,38,40,52.51,32,3,101.08,61,250,41.7,42,42,40.63,34,26,43.94,44,43,40.55,41,42,40.81,41,41,22.44,11,6,44.21,45,45,39.73,40,41,41.93,41,42,40.24,41,42,38.84,39,41,44.91,41,41,35.1,37,37,42.02,43,42,232.25,250,250,38.77,39,39,40.06,41,41,36.63,37,40,40.41,41,42,2.45,2,2,41.75,42,42,41.48,42,42,40,41,41,39.07,40,41,41.43,39,41,70.47,29,250,40.79,39,38,39.76,41,40,39.15,35,42,41.15,40,40,42.83,42,43,76.39,32,250,42.02,42,42,45.23,39,40,39.8,39,40,45.23,42,40,39.32,40,42,42.4,39,38,41.98,39,41,57.08,29,250,40.08,40,40,37.03,38,41,44.01,41,43,42.85,43,43,40.93,38,37,70.11,50,250,50.12,32,25,83.34,64,250,32.28,29,2,42.77,36,41,40.47,41,41,39.04,37,37,72.68,26,250,55.31,53,3,40.12,41,42,69.35,34,250,51.5,32,3,41.52,42,45,55.5,39,250,49.38,28,250,41.06,22,2,38.34,36,37,41.41,39,42,70.15,35,250,40.96,39,38,41.08,41,42,44.65,34,4,62.66,46,4,42,41,42,51.54,18,250,105.22,76,250,69.42,34,250,42.66,39,41,24.68,18,2,33.62,31,4,66.75,52,7,0.946,0.03433 -VBS46300-6321STDY9453300,52.17,53,53,53,54,54,55.48,56,56,75.61,40,250,27.9,21,2,48.46,50,51,58.59,56,50,67.28,41,250,101.45,69,250,52.44,39,5,41.34,33,15,84.55,66,15,57.66,59,62,50.13,51,52,32.54,33,5,44.01,33,2,50.52,41,2,51.84,54,55,44.1,25,250,79.53,48,250,37.46,31,25,110.62,91,250,118.04,80,250,50.65,52,54,122.63,88,250,46.91,46,49,91.77,74,2,67.97,39,250,48.13,49,47,45.75,47,48,77.52,36,250,160.03,223,250,127.56,131,131,101.74,72,250,49.78,51,53,54.64,54,51,51.32,49,53,48.8,41,44,37.18,35,12,77.18,45,250,42.32,41,49,56.41,47,47,30.18,30,36,38.52,39,55,45.84,50,51,50.56,51,53,39.03,39,41,34.74,34,24,40.26,32,32,48.64,34,2,44.22,48,51,42.33,22,2,49,43,51,109.61,82,250,66.17,54,3,42.26,44,50,52.61,54,54,43.24,46,47,33.99,32,29,74.41,35,250,50.92,53,51,103.89,99,6,44.47,29,4,44.69,46,45,141.24,171,250,75.33,30,250,53.68,54,56,75.21,35,250,6.37,4,2,115.58,71,250,60.85,44,250,41.06,25,19,101.74,71,250,52.25,32,9,91.08,43,250,50.72,51,53,42.43,29,24,75.23,58,2,34.28,33,31,61.49,32,250,116.94,77,250,49.66,51,53,68.06,37,3,131.88,137,250,103.57,50,250,53.15,54,54,44.3,45,47,115.65,79,250,52.56,53,54,50.65,51,53,55.69,24,2,34.59,38,2,139.03,184,250,50.47,51,52,91.42,79,250,53.06,52,53,54.54,32,2,59.11,36,2,110.93,95,250,29.28,16,3,50.36,52,53,57.87,32,24,129.38,76,250,50.54,51,52,45.42,34,4,61.98,55,42,48.82,50,51,46.88,45,18,44.56,41,33,52.15,51,50,49.46,50,52,79.16,39,250,47.39,49,52,82.82,56,47,52.26,52,52,50.27,45,39,54.34,55,55,50.36,51,52,49.82,51,51,92.16,105,6,50.28,51,51,51,51,53,50.28,48,49,58.91,34,13,119.93,103,250,52.12,52,53,51.06,46,4,55.19,56,58,50.19,51,52,51,51,52,30.93,16,10,56.05,56,56,49.91,51,52,51.76,51,52,50.49,51,52,49.52,49,51,55.79,52,54,44.73,48,48,53.72,55,54,227.09,250,250,48.17,49,50,50.25,52,54,45.5,47,51,51.22,52,54,4.23,4,2,52.44,52,53,52.35,53,53,50.43,51,53,48.65,50,50,51.75,50,52,85.26,41,250,52.02,50,52,49.92,51,52,47.06,43,49,50.34,50,50,49.83,51,52,81.73,43,250,52.88,53,54,54.08,48,52,50.04,50,49,56.56,53,55,48.65,50,50,51.85,50,49,50.3,49,48,66.83,34,250,50.51,51,53,46.15,49,51,52.94,51,50,54.02,54,54,50.9,49,50,92.23,75,250,58.63,40,2,91.35,76,250,48.03,43,4,51.05,45,49,50.84,51,50,48.7,47,49,84.9,37,250,76.67,85,3,50.6,52,53,73.6,38,250,68.06,41,2,52.49,52,53,68,51,2,54.88,34,250,48.54,26,3,47.54,45,48,53.87,49,48,87.34,48,250,51.48,50,52,51.67,53,53,66.04,54,2,79.52,59,250,52.38,52,54,61.88,36,250,115.86,104,250,62.48,37,250,54.35,49,49,34.01,25,6,40.94,40,4,87.3,66,4,0.946,0.03436 -VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,71.02,72,72,73.54,39,250,28.38,18,12,60.78,64,71,72.67,74,75,82.42,51,4,111.85,91,250,53.46,33,24,51.9,44,2,95.56,105,250,76.59,77,78,64.76,66,68,41.06,41,4,51.7,42,3,60.86,58,3,67.5,70,75,54.61,31,250,88.06,63,250,51.55,52,6,133.29,148,250,132.9,116,250,65.09,67,69,121.71,78,250,57.62,56,5,121.34,102,250,92.74,31,250,63.85,66,70,63.91,62,63,76.97,44,250,154.72,193,250,191.05,219,250,109.5,66,250,63.64,66,68,68.84,70,67,66,64,69,58.17,54,250,44.44,43,17,81.76,54,250,53.71,54,63,66.52,59,250,41.34,40,42,47.12,45,31,56.99,64,65,65.59,67,68,46.78,47,35,44.91,44,31,53.77,42,4,53.52,36,35,56.81,62,69,52.79,30,3,57.93,49,4,112.18,104,250,83.16,73,2,55.46,59,63,67.92,69,70,54.63,58,60,43.31,41,67,84.58,44,250,66.05,69,68,82.62,75,250,48.47,28,3,60.37,64,68,142.35,174,250,80.68,34,250,68.8,70,71,82.5,46,250,4.57,3,3,111.68,65,250,72.6,60,250,75.79,58,21,128.85,130,250,63.22,39,250,107.06,67,250,65.47,67,68,60.86,55,18,63.06,50,2,47.64,47,46,62.29,35,250,121.73,86,250,64.94,67,68,83.08,44,250,151.59,181,250,110.05,65,250,68.62,69,70,53.38,54,72,112.13,81,250,67.76,69,69,65.31,67,67,74.43,43,250,47.2,55,2,107.89,117,2,65.06,67,68,113.94,121,250,67.98,67,68,66.66,38,2,72.11,38,250,82.47,62,32,36.24,25,2,64.78,67,69,72.51,37,19,147.92,173,250,65.52,67,68,61.01,49,6,79.85,73,65,63.23,65,67,45.4,48,60,47.86,45,2,66.97,66,67,63.72,66,67,94.79,55,250,60.71,64,67,50.62,55,63,67.19,67,67,75.74,67,4,70.22,71,71,65.13,67,67,64.6,67,68,85.51,91,30,65.04,66,67,65.68,66,66,64.01,63,66,88.49,53,250,131.69,155,250,67.81,68,68,60.69,62,2,70.8,71,72,65.72,67,68,65.7,67,68,35.61,21,14,72.21,73,73,64.45,66,68,65.58,66,71,65.18,67,68,61.86,63,68,70.81,67,68,57.23,61,68,68.21,70,71,226.32,250,250,63.48,65,65,65.43,67,67,58.41,61,66,66.45,68,70,4.08,3,2,67.92,68,69,67.48,69,70,64.53,66,66,63.37,65,65,65.43,65,65,88.13,51,250,66.04,65,66,64.08,67,68,60.11,56,67,65.37,65,65,64.31,67,69,103.44,49,250,68.29,69,70,68.83,64,250,64.21,65,67,70.24,68,70,62.98,65,65,63.85,65,70,62.4,63,68,75.59,47,250,65.16,66,68,60.05,63,68,66.81,66,65,69.75,70,70,64.37,62,63,109.88,94,250,75.8,58,250,111.92,92,250,47.65,41,3,65.01,60,250,66.34,68,70,62.83,63,67,96.86,46,250,93.39,89,5,65.34,67,68,82.38,50,250,68.6,43,2,66.04,67,68,70.91,54,250,67.99,44,250,64.82,36,2,58.33,59,63,70.34,67,67,95.68,55,250,65.85,65,68,66.39,68,69,74.81,55,250,100.29,70,250,66.99,67,69,61.16,28,250,136.51,138,250,75.25,42,250,68.41,64,62,40.71,33,3,52.48,48,4,94.22,70,250,0.948,0.03442 -VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,66.29,67,66,76.23,39,250,27.97,21,10,58.09,60,60,69.48,69,73,68.46,47,2,79.75,55,2,59.53,41,23,49.67,39,3,95.15,94,250,71.28,72,68,59.33,61,61,37.78,38,4,48.06,39,3,54.06,41,3,62.73,65,68,48.81,30,6,79.52,52,250,45.08,41,3,120.06,107,250,128.8,108,250,59.84,61,63,111.5,82,250,55.31,53,54,108.91,74,250,78.26,34,250,57.83,60,61,67.75,56,56,78.55,42,250,168.15,249,250,181.46,196,250,112.61,70,250,59.05,61,63,66.13,67,66,55.38,54,59,55.34,50,55,44.01,41,9,75.47,49,250,47.25,46,50,63.37,54,250,39.25,39,32,44.41,45,67,53.01,57,61,60.06,61,63,45.52,46,32,41.05,40,32,48.25,37,20,46.37,32,32,53.6,59,65,52.7,28,2,58.06,48,4,113.67,93,250,73.77,58,3,49.11,51,60,62.59,64,64,50.28,54,57,41.16,39,24,82.03,40,250,59.76,62,66,63.85,44,250,44.95,22,8,52.82,55,57,151.04,234,250,80.43,35,250,64,65,67,78.3,46,250,7.88,3,2,123.41,69,250,82.37,59,250,69.36,50,23,114.72,120,250,59.16,39,250,92.34,44,250,60,61,62,58.52,54,59,88.15,78,5,43.18,43,47,63.96,35,250,133.95,121,250,59.93,62,62,93.5,60,250,149.35,176,250,107.32,60,250,63.12,64,65,49.56,52,58,110.53,85,250,62.5,63,64,60.06,61,62,74.06,44,250,54.73,50,51,128.92,174,250,59.48,61,61,111.51,114,250,62.93,62,62,57.16,36,2,71.23,46,4,84.9,55,250,41.46,32,3,59.77,61,63,61.27,30,16,142.06,171,250,59.32,60,61,53.27,49,20,73.52,65,54,58.08,59,60,72.33,78,29,45.84,47,53,61.34,60,60,58.51,60,63,88.64,41,250,55.48,58,61,83.63,55,47,61.15,61,61,67.9,55,27,64.97,65,65,59.6,61,62,59.44,61,63,83.85,86,27,59.16,60,62,59.4,60,60,58.75,57,59,87.05,56,6,135.19,154,250,62.58,63,64,63.51,57,58,66.34,67,67,59.35,61,63,59.64,60,62,33.07,14,14,66.92,67,65,59.1,61,62,61.66,61,62,59.62,61,61,57.15,58,60,63.05,61,63,52.26,56,57,63.81,65,65,224.74,250,250,57.14,58,59,60.28,62,62,54.19,56,61,60.29,61,62,5.31,4,3,62.11,62,60,62.21,63,64,59.13,60,61,57.52,59,62,59.02,58,59,89.76,49,250,60.47,59,59,58.21,60,61,57.98,53,59,58.65,58,61,59.2,61,61,93.09,45,250,63.07,64,64,63.99,58,60,58.85,59,61,64.87,63,63,58.13,60,59,62.58,58,57,58.73,57,57,68.58,38,250,58.14,59,60,54.39,58,62,61.31,61,61,64.26,65,65,58.09,57,58,97.23,76,250,67.72,52,250,101.61,75,250,43.39,37,2,61.17,55,250,61.97,63,60,57.34,56,60,83.01,35,250,116.87,135,250,60.11,62,63,81.43,47,250,63.84,48,2,60.7,62,61,73.92,54,250,58.98,37,250,70.78,53,250,53.44,53,57,61.14,58,58,87.87,53,250,61.1,59,58,61.13,62,63,82.47,67,2,98.72,70,250,61.97,63,67,68.69,49,250,130.84,125,250,82.41,39,250,64.13,60,62,60.15,44,2,43.93,41,6,88.46,70,250,0.947,0.03441 -VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,46.41,47,47,66.42,29,250,21.5,15,3,42.14,43,45,49.5,49,48,50.85,34,2,103.98,58,250,39.9,31,8,35.31,31,2,79.6,79,14,49.03,50,54,42.54,43,44,26.17,25,20,41.08,32,4,30.13,22,3,43.9,45,49,39.44,21,15,68.3,42,250,32.86,30,19,91.85,73,250,106.34,72,250,42.71,44,44,93.23,51,250,41.04,42,45,103.59,62,250,64.92,24,250,42.07,43,43,41.43,40,41,68.04,30,250,87.1,99,45,185.44,235,250,95.32,54,250,42.13,43,44,45.3,46,45,44.4,41,45,44.87,36,37,39.6,36,10,74.21,38,250,37.06,34,35,52.07,41,44,25.57,26,31,32.1,30,18,37.03,39,43,43.37,44,45,31.69,33,40,29.3,28,22,34.54,29,5,39.43,24,15,36.72,40,41,29.51,21,2,41.43,35,44,105.06,85,250,55.27,41,5,36.84,38,39,44.36,45,45,37.24,40,46,28.17,27,19,74.16,27,250,39.82,43,47,101.43,86,250,36.78,21,2,40.91,43,45,141.85,191,250,61.77,18,6,44.99,46,46,68.52,31,250,7.99,4,2,107.13,68,250,54.58,39,250,55.25,29,20,98.25,77,250,42.92,27,36,82.72,55,250,43.18,44,44,47.22,45,45,67.08,55,2,30.88,30,27,52.68,25,4,107.7,62,250,42.52,44,45,63.53,30,9,151.21,161,250,98.73,47,250,44.89,45,46,35.44,36,41,88.09,61,250,44.25,45,45,43,43,44,47.51,29,23,33.45,37,2,105.86,126,3,42.87,43,44,78.48,74,250,45.46,44,44,46,24,2,46.78,28,4,64.59,60,48,20.29,14,6,42.63,43,44,44.24,23,15,91.96,96,2,43.25,44,44,78.08,43,250,54.12,49,40,41.61,42,43,22.71,23,23,32.01,32,37,45.21,43,44,42.32,43,44,83.43,33,250,39.85,41,43,53.2,46,2,44.62,44,44,47.78,42,17,45.88,46,46,43.54,44,44,42.03,43,43,85.61,96,6,42.69,43,44,43.47,44,44,43.56,41,42,71.54,35,6,112.9,72,250,44.46,44,44,39.56,40,45,46.53,46,47,43.2,44,44,43.29,44,44,34.9,25,3,47.05,47,48,42.03,43,44,44.53,43,44,43.13,44,44,42.03,42,42,47.73,44,44,38.84,41,44,44.75,46,47,229.83,250,250,41.64,43,44,42.38,43,46,37.02,38,43,43.55,44,44,3.3,3,2,44.58,45,45,44.14,45,45,43.1,44,45,42.16,43,42,44.87,43,43,80.52,43,250,44.07,43,45,42.64,44,46,41.85,37,41,43.66,43,42,41.83,43,45,81.71,40,250,44.63,45,45,48.52,42,43,43.39,44,46,48.22,44,43,42.56,43,44,43.86,42,43,46.83,43,42,69.97,34,250,43.2,44,46,40.49,42,45,45.95,43,44,45.51,46,46,44.14,42,43,74.34,52,250,52.81,36,31,74.73,62,250,40.37,31,3,46.13,38,44,44.44,46,50,41.34,40,40,84.39,42,250,61.76,66,73,42.81,44,45,66.01,32,250,47.25,30,2,43.96,44,48,51.44,35,4,48.07,28,250,53.64,39,3,42.36,40,47,46.31,43,44,77.5,40,250,44.31,43,45,43.64,44,45,61.32,38,3,65.4,46,11,45.48,45,45,67.83,23,250,103.02,82,250,54.57,34,3,46.5,44,44,32.37,25,6,35.41,32,8,62.61,51,6,0.947,0.03424 -VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,66.94,67,67,79.63,40,250,26.99,21,7,58.06,59,62,71.97,71,71,75.27,55,250,115.12,97,250,73.85,68,250,47.24,38,6,95.45,97,250,74.23,75,79,60.16,61,62,42.97,42,3,52.94,45,9,63.2,31,25,61.93,65,67,46.23,29,5,86.5,57,250,64.12,53,2,124.93,117,250,125.3,72,250,60.8,62,64,119.09,83,250,64.14,56,3,111.9,73,250,93.48,33,250,58.33,60,63,68.1,57,250,79.27,45,250,167.63,249,250,222.33,250,250,109.33,67,250,60,62,62,66.09,66,67,61.58,56,58,57.22,50,250,52.81,47,43,84.18,57,250,50.68,49,50,65.35,57,250,37.02,37,38,44.46,43,29,53.41,57,60,61.28,62,64,45.39,47,56,42.44,42,30,53.84,43,13,56.44,37,250,51.64,56,65,62.34,30,3,62.76,52,58,130.3,102,250,81.82,70,250,49.77,53,62,63.38,64,64,52.13,55,59,40.34,39,39,84.92,41,250,59.06,62,66,105.89,90,250,56.37,34,31,56.09,57,56,146.38,193,250,83.34,35,250,64.82,65,65,81.82,48,250,5.91,4,3,128.26,85,250,70.11,52,250,64.3,47,41,131.64,127,250,69.82,38,250,111.7,74,250,60.78,61,62,45.52,31,25,81.26,61,250,41.68,42,37,75.82,41,250,141.93,135,250,60.07,62,62,90.01,72,250,131.24,150,250,104.39,61,250,63.72,64,64,57.31,57,56,114.96,92,250,63.19,64,65,60.99,61,63,83.08,44,250,54.55,52,2,112.64,128,9,60.67,62,63,115.6,101,250,63.07,62,62,70.07,44,4,75.08,46,250,116.31,97,250,52.49,33,2,60.72,62,64,92.76,56,250,140.01,122,250,60.45,61,62,77.65,51,29,76.08,69,62,58.57,60,61,50.99,52,81,64.33,59,36,63.02,61,62,60.31,61,61,93.56,52,250,56.84,59,61,48.67,50,49,62.53,62,63,72.55,53,250,65.51,66,66,60.38,61,63,59.02,61,61,131.64,144,250,60.7,61,61,60.73,61,62,60.03,58,58,94.67,47,250,117.55,65,250,62.85,63,63,62.34,53,3,67.03,67,67,60.49,61,62,61.05,61,62,47.01,28,2,67.54,68,67,59.98,61,63,62.52,62,62,60.52,61,62,58.63,58,59,64.95,61,62,56.58,55,60,64.07,65,64,230.34,250,250,58.3,59,59,60.35,62,64,54.74,56,60,61.52,62,61,5.35,5,2,63.18,63,63,63,64,65,60.24,61,62,57.66,59,62,61.19,59,60,93.71,54,250,62.31,60,63,58.87,60,60,59.12,54,64,59.53,60,59,59.5,62,62,107.19,53,250,63.63,64,65,64.34,58,63,62.42,61,63,67.16,63,64,60.9,62,65,65,59,61,64.14,59,59,83.67,51,250,59.39,60,60,55.53,58,62,62.46,60,61,65.02,65,65,59.07,57,59,111.53,91,250,72.73,50,250,101.11,77,250,50.75,44,9,65.06,55,250,63.94,65,68,59.86,56,56,118.04,64,250,95.8,88,250,60.92,62,64,88.96,52,250,66.77,43,250,65.61,63,65,85.09,61,250,68.17,44,250,78.11,58,2,57.28,53,60,65.41,60,61,103.21,62,250,60.84,58,57,61.96,63,63,79.73,55,250,88.15,67,250,62.7,63,64,72.07,46,250,140.52,138,250,84.57,44,250,66.28,62,66,49.52,46,27,56.32,51,52,95.21,83,4,0.948,0.03448 -VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,71.5,72,71,60.43,42,250,27.14,22,3,59.42,62,66,74.83,76,84,74.68,50,250,50.94,49,3,66.4,51,12,53.34,47,2,97.93,106,250,78.77,78,78,62.61,64,65,40.13,41,2,52.34,42,2,43.67,31,2,66.59,69,71,65.31,31,250,84.42,58,250,45.71,47,30,122.54,125,250,129.02,90,250,63.45,65,67,117.51,87,250,58.91,58,65,127.47,124,250,78.41,30,250,60.6,62,61,58.05,57,54,79.83,42,250,160.73,216,250,214.67,249,250,107.41,74,250,62.3,64,66,68.81,68,66,61.56,59,61,56.44,50,250,43.23,41,6,82.78,58,250,48.59,47,54,64.59,56,250,38.96,38,17,47,46,30,56.32,61,65,63.77,65,66,49.07,50,51,43.61,42,28,51.56,41,6,58.33,42,33,54.89,60,63,66.77,34,7,59.58,54,66,132.36,127,250,73.53,62,250,51.2,52,63,67.03,68,69,50.99,55,55,43.44,41,32,85.78,44,250,66.92,70,70,58.53,54,2,48.79,27,8,54.48,58,60,141.48,168,250,86.66,31,250,68.3,69,70,73.93,41,250,5.7,5,2,119.45,70,250,70.67,55,250,68.48,50,22,118.04,109,250,62.61,36,2,105.5,76,250,62.92,64,64,58.15,54,58,87.83,62,2,47.75,46,41,68.78,35,250,126.09,90,250,63.5,65,67,101.37,67,250,169.75,193,250,113.7,71,250,67.06,68,68,55.31,57,60,119.24,78,250,66.65,68,67,63.09,64,66,76.12,43,250,42.59,47,4,124.81,153,3,62.29,64,66,92.72,79,250,65.07,65,66,46.73,28,2,81.09,48,3,82.59,70,50,35.89,18,2,63.35,65,65,66.94,42,11,134.4,134,250,62.08,63,64,67.1,40,4,75.7,67,54,61.07,62,65,92.11,91,22,52.1,52,52,64.44,63,64,61.45,63,64,98.32,53,250,58.51,61,63,83.78,68,69,65.21,65,66,67.82,61,4,69.32,70,69,62.29,63,66,62.51,64,66,107.65,114,27,62.22,63,65,61.71,62,63,60.86,59,60,77.89,39,250,122.77,131,250,66.41,67,66,51.3,39,31,71.12,71,73,63.32,65,64,61.84,63,64,36.36,19,6,71.89,72,69,62.55,64,66,64.71,64,66,62.87,64,64,58.99,59,60,67.95,64,64,58.57,59,67,67.81,69,69,229.48,250,250,58.74,60,62,63.74,65,65,56.18,58,60,64.13,65,66,3.32,3,4,65.67,65,65,66.17,67,68,61.36,63,64,60.4,61,61,61.35,60,61,101,60,250,62.05,61,64,60.65,63,64,58.22,54,65,60.71,60,62,62.21,64,66,93.54,63,250,66.84,68,68,66.47,61,250,63.23,64,64,68.11,66,67,61.31,63,64,63.03,61,62,61.42,60,61,77.53,48,250,60.2,61,59,56.79,60,67,64.27,63,61,68.69,69,69,60.92,60,61,106.46,84,250,71.55,52,250,100.6,89,250,46.75,43,3,62.76,56,250,68.03,71,74,59.64,59,63,98.79,52,250,85.07,78,91,63.81,66,67,84.58,50,250,71.11,46,250,64.92,65,67,73.03,58,250,67.01,42,250,53.91,32,2,54.94,54,58,64.7,60,58,95.92,59,250,59.02,58,59,64.76,66,67,68.93,52,250,104.32,85,250,65.26,65,64,62.1,36,250,131.8,135,250,78.48,46,250,60.55,59,69,31.93,25,4,51.39,47,4,83.57,65,2,0.947,0.03441 -VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,59.29,59,59,69.36,30,250,22.03,17,6,52.93,53,55,62.22,62,57,70.71,43,250,35.91,38,3,74.99,60,8,43.41,36,3,80.78,72,250,66.33,67,66,52.42,53,55,35.62,38,2,46.37,36,3,47.67,29,9,54.7,57,58,49.94,30,250,72.85,46,250,44.71,41,2,103.47,98,250,116.18,64,250,52.92,54,55,117.67,83,250,48.18,46,50,120.93,72,250,96.83,38,250,51.57,53,53,49.05,49,50,74.39,34,250,158.75,217,250,201.14,249,250,100.57,52,250,52.25,54,55,57.46,57,58,50.58,48,49,50.07,43,52,40.03,38,6,74.47,45,250,42.12,40,44,57.37,48,50,32.21,31,32,40.54,39,20,44.48,48,51,53.13,54,54,40.41,42,51,34.89,34,26,43.97,32,11,44.24,26,28,47.35,52,54,48.07,26,3,50.68,42,8,131.16,122,250,79.87,72,250,44.54,47,55,55.63,57,56,43.85,47,53,34.03,33,46,79.59,36,250,52.38,57,59,91.22,64,250,41.76,28,23,47.6,49,52,131.16,123,250,76.91,33,250,56.65,57,58,76.22,38,250,13.7,14,4,114.63,109,250,67.17,50,250,58.51,33,14,104.48,82,250,51.89,33,6,104.68,63,250,52.71,53,54,40.9,31,21,82.32,70,4,38.16,37,32,60.45,27,13,121.1,90,250,52.92,54,55,82.77,43,250,146.94,155,250,116.84,74,250,55.61,56,56,45.66,49,56,99.79,81,250,55.26,56,57,53.06,54,55,70.55,39,250,38.8,41,3,137.07,181,250,52.53,54,55,109.72,117,250,55.22,54,55,52.76,20,2,58.7,41,14,77.55,62,29,35.42,30,2,52.71,54,55,64.07,33,21,153.64,206,250,52.49,53,54,67.96,45,6,65.85,61,54,50.77,52,53,78.82,86,102,46.34,44,45,54.9,53,54,51.93,53,54,93.1,50,250,49.03,51,55,98,56,49,54.7,54,56,62.58,54,2,57.67,58,58,52.62,53,54,52.02,53,55,110.92,126,250,52.75,53,54,51.24,52,52,51.46,50,52,83.39,42,250,115.55,104,250,54.59,55,55,55.89,48,2,59.02,59,59,53.38,54,56,52.07,53,55,31.94,17,14,60.15,60,59,52.19,54,55,55.24,54,53,53.44,54,56,50.88,51,53,59.13,54,54,42.55,48,50,57.1,58,59,230.65,250,250,49.36,50,50,52.75,54,56,47.56,49,51,53.93,55,55,5.16,5,6,55,55,55,54.9,56,57,51.76,53,53,50.88,52,51,52.61,51,51,91.55,60,250,53.48,52,52,51.07,53,54,49.22,44,50,51.99,51,52,52.12,54,53,103.04,47,250,55.56,56,56,57.19,51,55,52.99,54,56,56,56,58,51.47,52,53,54.61,50,50,54.52,51,50,77.6,44,250,51.48,52,53,48.18,50,54,54.34,52,53,57.05,57,58,51.32,49,49,98.81,78,250,65.85,46,250,102.68,81,250,41.5,37,2,55.95,48,53,58.18,60,64,49.62,49,47,98.41,61,250,81.96,88,90,53,54,55,76.95,40,250,63.95,40,250,55.43,55,56,61.99,46,3,60.22,37,250,60.4,36,2,47.4,47,52,54.03,51,52,81.59,48,250,52.65,50,51,54.06,55,56,55.63,47,7,88.66,69,250,54.29,54,55,78.6,55,250,107.76,95,250,77.16,51,250,53.72,50,48,20.73,19,4,42.64,40,48,68.22,59,3,0.946,0.03434 -VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,51.58,52,51,63.28,25,250,21.94,15,3,44.29,44,46,54.87,55,56,55.33,36,4,58.62,52,5,46.75,31,14,40.38,33,2,63.31,54,8,57.57,58,59,45.18,46,46,30.53,32,3,39.55,30,5,31.5,25,4,47.09,48,48,38.42,21,250,69.59,41,250,40.32,35,28,103.91,90,250,103.98,64,250,46.13,47,48,98.72,52,250,41.45,40,41,79.84,41,2,68.6,23,250,43.37,45,46,54.93,42,40,68.48,30,250,145.07,186,250,100.49,86,84,86.4,42,250,45.02,46,47,50.56,51,52,44.66,41,43,45.07,37,40,33.15,25,2,62.56,34,250,37.25,35,38,51.82,41,40,27.46,27,29,32.4,31,14,39,42,45,45.92,47,48,34.01,36,37,32.43,31,25,30.9,25,22,34.62,22,19,40.16,43,44,36.92,23,2,43.31,35,49,94,77,24,59.33,45,250,37.04,38,41,48.09,49,49,38.53,40,39,28.76,27,16,74.69,28,250,46.61,48,53,77.64,55,7,34.88,26,2,40.44,42,42,138.09,133,250,57.45,22,3,49.36,50,50,69.23,34,250,13.15,14,2,89.76,60,250,56.5,41,250,38.09,26,9,94.27,84,250,45.74,27,2,87.31,37,250,45.62,46,47,38.96,22,17,64.95,52,2,34.33,34,33,51.66,24,3,116.86,119,250,45.58,47,48,69.44,40,2,118.65,121,21,100.61,53,250,48.37,49,49,38.3,39,45,88.68,63,250,47.96,48,49,45.55,46,47,58.12,30,28,34.61,36,43,117.1,141,6,45.26,46,46,79.35,74,250,47.59,47,47,44.9,26,4,45.21,28,5,84.8,63,250,33.05,29,2,45.49,46,47,48.58,35,3,97.85,85,24,45,45,46,57.18,41,9,56.31,51,45,43.88,44,46,26.96,27,18,29.47,31,34,47.08,45,45,44.57,45,46,83.84,31,250,42.34,44,45,36.04,37,35,47.05,46,48,44.65,39,2,49.81,50,49,45.27,46,46,45.23,46,47,65.98,65,22,45.09,45,45,44.4,45,44,45.15,43,43,51.31,20,8,127.74,134,250,47.49,48,49,42.65,37,2,51.63,51,52,45.46,46,47,45.37,45,45,25.98,15,3,51.7,52,52,45.08,46,48,48.81,46,46,45.38,46,48,43.74,43,45,49.76,45,45,39.77,42,47,49.75,50,52,230.2,250,250,42.47,43,43,46.09,47,47,40.61,41,43,46.63,47,47,5.13,4,4,47.25,47,47,47.73,48,49,44.48,45,48,43.28,44,45,45.87,44,44,73.95,35,250,45.93,44,44,43.53,45,45,41.45,38,47,44.02,44,43,45.25,47,47,83.47,36,250,48.26,49,49,49.68,43,47,46.48,45,45,50.65,48,48,45.18,46,46,46.87,42,44,45.25,43,47,63.68,32,250,43.89,44,43,40.32,42,42,48.66,46,46,49.42,50,49,45.84,44,42,76.6,61,250,52.43,36,36,78.34,54,250,30.33,27,4,46.87,39,45,49.23,49,46,43.13,41,41,84.52,40,250,55.56,51,50,45.89,47,47,71.14,36,250,56.12,35,4,46.46,46,45,52.77,38,3,51.4,28,250,55.23,43,4,40.99,38,38,46.54,43,46,82.38,39,250,44.56,42,43,46.83,48,48,47.02,39,2,71.31,50,3,46.64,46,43,57.2,30,250,101.56,79,250,61.6,34,3,46.65,43,45,31.1,27,3,35.15,32,3,67.06,57,7,0.947,0.03415 -VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,65.06,65,65,73.45,41,250,24.55,16,3,55.53,58,61,65.99,67,68,64.8,43,250,79.95,44,3,69.82,57,3,47.67,40,10,94.2,90,250,69.96,70,64,57.55,59,59,35.28,36,3,47.54,34,2,51.53,30,5,61.93,64,67,48.23,28,2,73.24,54,250,40.43,38,3,115.01,108,250,127.92,101,250,58.21,60,61,102.08,59,250,53.01,53,2,104.8,49,250,80.65,34,250,56.45,58,58,62.69,54,55,75.84,37,250,165.24,246,250,215.02,249,250,109.94,75,250,57.13,59,60,62.3,63,65,56.28,54,59,55.54,49,51,57.81,41,250,81.24,53,250,46.5,45,50,62.08,54,250,34.72,33,32,42.29,40,33,49.8,54,55,58.48,59,60,43.21,43,27,40.77,41,29,46.52,38,4,45.67,31,25,51.58,56,62,43.33,24,2,53.93,47,4,124.74,114,250,70.79,53,250,49.03,51,62,61.22,62,63,48.47,52,56,39.17,38,23,80.18,34,250,56.14,60,60,111.6,100,250,42.01,25,26,51.27,53,53,146.36,210,250,76.49,29,250,62.41,63,65,73.08,37,250,6.38,5,2,109.95,79,250,69.83,54,250,63.33,41,9,102.81,76,250,51.81,33,3,98.03,57,250,58.35,59,60,44.21,28,19,68.3,45,12,41.48,40,34,58.12,29,2,122.62,85,250,58.44,60,61,78.21,48,250,139.26,151,250,111.3,73,250,61.48,62,62,49.04,52,59,102.98,76,250,60.85,62,62,57.94,59,60,70.33,41,250,44.6,46,3,137.52,167,250,57.66,59,60,97.64,93,250,60.51,60,60,60.3,43,4,63.31,32,6,99.82,87,250,39.92,30,6,57.86,59,61,58.32,32,27,137.55,149,250,57.49,58,60,62.35,40,29,70.25,63,54,56.14,57,60,43.34,33,20,44.04,47,55,59.51,58,59,56.63,58,58,91.92,47,250,54.1,57,60,79.83,86,6,59.79,59,60,62.98,51,22,63.53,64,63,57.88,59,59,57.15,59,59,124.56,132,250,57.58,58,59,57.01,58,59,57.09,56,58,75.22,38,6,107.53,80,2,60.73,61,62,59.25,55,3,64.64,65,66,57.8,59,60,57.86,58,59,33.89,19,10,65.46,66,65,57.36,59,60,60.48,59,61,58.15,59,60,55.18,56,58,63.67,59,60,52.63,55,58,61.36,62,63,221.8,250,250,54.67,56,57,57.98,59,59,51.95,54,57,58.87,59,61,5,4,2,60.07,60,61,60.56,62,62,57.05,58,58,55.38,56,58,58.68,57,58,91.29,57,250,58.09,57,60,57.02,59,61,53.13,50,56,56.84,57,56,56.77,59,59,89.43,48,250,61.3,62,62,60.24,55,57,57.33,58,60,63.98,62,64,56.74,59,57,58.64,55,54,57.9,55,57,71.5,41,250,56.36,57,58,52.25,55,59,61.11,59,59,62.82,63,63,57.09,56,57,98.81,84,250,71.19,50,250,92.49,63,250,43.79,39,2,59.42,53,59,61.24,64,65,55.21,55,56,100.47,44,250,61.45,58,3,58.45,60,61,79.27,42,250,58.6,40,2,59.15,60,65,66.26,48,2,60.18,37,250,59.27,33,28,53.55,53,59,60.89,58,57,93.47,54,250,56.82,55,54,59.52,61,62,66.27,47,2,76.03,61,250,60.17,60,60,69.59,30,250,133.62,134,250,63.04,40,250,48.99,49,57,31.46,27,3,47.89,45,59,101.38,76,250,0.947,0.03438 -VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,59.12,60,60,65.99,33,250,27.44,23,6,52.68,54,57,60.05,59,59,69.2,43,250,88.26,59,5,67.49,52,34,49.04,43,19,91.79,83,250,62.9,64,68,54.51,56,57,32.79,34,4,41.52,32,3,47.63,33,10,56.64,58,58,56.75,24,5,77.65,52,250,38.9,38,31,101.21,83,250,126.09,101,250,54.61,56,57,111.11,73,250,54.94,51,54,87.18,42,8,89.93,34,250,52.06,53,53,63.36,54,56,75.22,39,250,129.82,143,60,97.84,98,95,103.75,64,250,54.22,56,57,56.72,57,57,53.07,50,55,51.35,44,45,50.39,43,3,78.23,48,250,48.07,47,50,61.58,51,250,34.44,33,31,41.37,40,30,48.36,53,55,55.03,56,57,39.76,40,49,39.7,39,32,45.52,36,5,51.28,30,28,48.29,53,54,46.95,25,3,55.79,43,52,132.51,129,250,69.27,49,250,45.75,47,50,56.98,58,59,47.55,51,54,37.74,36,29,78.77,36,250,56.23,59,63,70.37,51,11,44.83,27,18,50.6,53,56,140.26,191,250,70.59,18,5,57.6,59,59,75.51,38,250,7.08,5,3,113.56,52,250,73.35,55,250,59.43,24,7,114.89,106,250,52.49,31,7,90.18,58,250,55.13,56,57,53.37,40,250,90.94,85,7,38.27,38,49,64.21,31,250,126.7,88,250,54.65,56,57,86.96,55,250,163.96,177,250,104.83,58,250,57.44,58,58,46.66,46,42,107.35,83,250,56.96,58,58,54.99,56,56,73.31,40,250,50.72,53,3,131.38,159,250,54.62,55,57,103.31,98,250,57.22,56,58,61.39,38,4,66.87,41,6,118.53,107,250,37.86,29,2,54.6,56,57,63.45,31,16,141.06,169,250,54.55,55,55,64.72,49,19,66.83,60,53,52.93,54,56,34.73,37,41,45.6,48,50,56.76,55,56,54.15,55,57,90.16,43,250,51.51,54,56,57.42,52,37,56.41,56,56,68.91,53,2,58.55,59,59,54.63,56,56,53.9,55,57,109.66,117,32,54.41,55,55,55.32,55,55,54.63,53,54,87.52,48,250,127.7,104,250,57.04,57,58,52.91,51,5,58.85,59,59,55.44,56,57,55.51,56,55,36.56,22,8,59.18,60,61,54.33,56,57,57.35,57,59,54.89,56,56,52.67,53,55,61.32,56,57,47.73,50,50,56.76,58,59,224.15,250,250,52.86,54,55,54.56,56,58,49.78,51,54,54.93,56,57,5.64,5,3,56.9,57,57,56.72,58,58,54.32,55,56,53.43,54,55,55.44,54,54,87.34,52,250,56.36,55,57,54.08,56,55,51.3,48,54,54.27,54,55,54.6,56,60,102.36,49,250,57.1,58,58,59.1,54,57,56.01,55,55,61.35,59,59,54.6,55,54,53.76,53,58,54.74,53,55,73.42,45,250,54.17,55,55,50.44,53,55,57.7,55,56,58.27,59,59,54,52,53,94.42,73,250,70.33,50,250,102.26,72,250,45.97,39,3,58.74,50,250,53.82,55,57,52.91,51,51,108.38,74,250,72.49,64,40,55.02,56,57,74.3,41,250,69.35,40,250,56.08,54,57,66.1,45,250,59.68,36,250,62.66,33,30,50.39,49,53,58.31,54,54,93.48,57,250,54.77,52,50,55.67,57,58,68.32,55,4,87.94,65,250,56.85,56,56,77.96,54,250,126.62,118,250,72.39,45,250,63.26,55,58,29.23,26,2,45.14,42,54,79.02,64,5,0.949,0.03429 -VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.5,64,65,76.37,39,250,34.98,30,22,63.59,65,69,68.18,65,66,79.36,54,250,87.1,41,250,98.06,85,250,55.03,49,7,96.08,88,250,64.09,66,67,62.85,64,65,42.06,41,2,49.68,35,2,40.76,27,3,65.92,69,73,55.4,32,14,91.78,70,250,45.15,41,3,131.78,128,250,135.58,89,250,61.74,63,63,118.27,82,250,65.4,66,75,114.14,49,250,91.05,34,250,62.67,64,62,79.46,68,250,84.08,48,250,171.29,249,250,223.15,250,250,121.53,82,250,61.87,63,64,60.21,61,61,66.92,67,70,62.96,58,250,51.9,49,10,94.99,61,250,59.27,61,69,70.19,64,250,36.54,35,33,43.04,43,55,58.69,65,69,62.82,63,64,43.75,44,33,45.05,45,64,56.82,47,5,52.78,35,250,51.84,56,56,51.28,30,2,62.52,52,250,138.31,149,250,77.93,59,249,50.71,55,63,63.34,64,65,61.21,65,74,42.95,43,21,84.1,42,250,58.04,61,67,93.76,73,250,53.62,29,2,62.47,66,65,142.72,187,250,79.5,29,2,62.51,63,64,82.24,49,250,9.56,7,5,124.02,96,250,84.86,70,250,82.06,57,250,122.79,124,250,65.28,46,250,87.36,61,250,63.55,64,65,45.61,34,35,121.74,103,250,42.7,40,31,68.77,40,250,129.99,98,250,61.72,63,64,81.83,53,250,196.49,249,250,106.82,62,250,63.92,64,64,57.15,58,60,120.85,87,250,63.43,64,65,62.74,63,64,84.84,56,250,55.37,57,67,138.86,181,250,63.94,65,66,106.36,100,250,65.99,65,66,87.41,55,250,60,37,5,112.34,107,250,41.31,27,6,62.43,64,63,67.65,39,12,142.35,177,250,65.18,66,67,99.62,62,250,79.4,74,64,61.43,63,64,77.06,84,107,54.8,52,58,66.65,65,65,62.12,63,62,93.37,51,250,59.47,62,65,66.22,67,69,66.52,66,66,88.58,72,3,64.99,65,65,64.23,65,66,61.43,62,62,121.18,123,250,63.85,64,64,67.62,68,69,63.88,63,66,84.46,33,250,110.76,73,250,63.59,63,64,69.55,63,250,64.04,64,65,64.15,65,66,66.46,67,68,56.17,38,2,63.41,64,63,61.5,63,63,66.25,64,65,64.53,66,66,62.34,62,65,68.89,65,65,64.61,68,71,64.21,65,63,228.38,250,250,65.38,66,69,62.54,64,63,58.26,60,64,62.88,64,64,5.76,4,2,66.57,67,68,63.23,64,64,65.91,67,66,65.07,66,66,67.27,66,68,99.28,66,250,66.47,66,67,64.55,67,70,60.49,55,68,68.41,68,67,62.27,64,65,96.89,58,250,64.14,64,64,68.04,61,250,65.02,64,63,68.19,66,67,66.19,66,67,69.23,69,74,67.68,67,68,91.24,54,250,67.02,68,71,61.89,66,69,66.84,65,69,64.61,65,65,64.75,64,62,110.27,94,250,87.17,63,250,113.7,95,250,55.57,43,2,62.71,56,250,56.76,59,58,62.59,62,66,89.36,48,250,71.33,48,37,61.98,63,64,85.98,52,250,69.81,52,250,64.93,64,66,86.03,64,250,69.8,46,250,71.63,58,3,61.35,61,58,71.9,68,65,101.1,69,250,70.72,69,69,62.67,63,64,78.94,60,250,104.45,80,250,67.37,68,69,69.04,30,250,130.69,117,250,76.12,43,250,79.98,67,61,47.79,41,3,60.37,56,68,95.33,83,250,0.948,0.03447 -VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,67.23,67,67,70.04,35,250,28.87,25,30,56.5,59,62,72.27,72,73,73.36,47,250,50.72,40,5,60.12,42,30,47.81,39,3,113.13,102,250,77.16,77,70,57.98,59,60,38.16,42,2,53.07,43,2,50.7,31,9,62.56,65,65,58.01,28,8,81.12,50,250,45.99,41,2,127.56,135,250,114.77,73,250,58.96,60,61,121.53,85,250,54.71,57,63,79.61,78,2,86.99,30,250,56.38,58,58,55.6,53,54,75.32,33,250,167.07,249,250,203.06,250,250,115.32,88,250,57.94,60,61,66.59,65,64,56.43,55,60,54.37,48,55,70.88,53,9,86.86,57,250,43.98,42,49,63.15,54,56,36.82,36,35,43.46,44,60,51.34,56,59,59.18,60,61,45.48,46,51,40.55,40,35,49.72,38,7,48.82,29,13,51.82,57,61,53.94,29,6,54.89,43,7,118.95,113,250,78.39,65,250,49.44,52,62,62.22,63,63,48.32,51,49,37.66,36,22,81.99,40,250,62.18,66,69,77.13,69,8,40.69,22,3,51.53,53,60,133.56,95,250,85.69,42,250,63.99,65,65,80.63,42,250,4.06,4,4,119.54,63,250,69.55,52,250,62.47,37,26,121.29,103,250,58.57,33,250,110.14,67,250,58.3,59,60,49.28,34,26,54.01,40,7,42.96,43,36,66.25,33,250,127.12,103,250,58.96,61,62,87.62,51,250,165.4,180,250,107.79,64,250,62.34,63,62,48.01,51,55,105.84,89,250,61.86,63,63,58.65,59,60,73.54,44,250,43.14,47,3,138.58,173,250,57.97,59,60,113.65,103,250,60.69,60,61,64.69,51,5,72.48,43,4,84.03,66,250,36.07,28,8,58.71,60,62,68.3,45,2,159.93,222,250,57.85,58,59,65.92,42,6,70.92,64,63,56.28,57,58,30.62,32,36,49.92,50,64,60.41,58,61,57.1,58,60,87.04,42,250,54.17,57,60,87.24,65,7,60.17,60,61,79.61,65,2,64.63,65,65,57.61,59,59,58.12,60,62,137.82,163,250,57.72,58,60,56.24,57,57,56.72,55,56,67.01,29,11,127.09,84,250,61.49,62,61,58.24,55,62,67.03,67,67,58.33,59,60,57.3,58,57,41.26,24,24,67.8,68,68,57.85,59,61,60.85,60,61,57.57,59,60,55.71,56,58,62.74,59,59,46.44,52,61,62.92,64,66,231.34,250,250,53.83,55,56,58.8,60,60,52.33,54,55,59.95,61,61,8.71,5,3,61.24,61,60,61.49,62,62,56.46,57,56,54.22,55,58,57.1,56,58,92.16,56,250,57.71,57,59,55.94,58,60,54.44,50,57,54.85,55,58,58.02,60,61,99.98,51,250,62.21,63,63,62.25,56,250,59.2,59,61,61.51,61,59,57.22,58,59,61.25,54,51,55.42,53,55,79.44,52,250,56.05,57,58,52.17,54,53,60.05,58,60,63.97,64,64,56.08,55,57,91.79,70,250,72.27,46,250,118.22,107,250,46.16,41,2,59.19,53,250,63.31,65,69,55.85,55,56,109.94,58,250,89.38,78,71,59.14,61,62,79.9,43,250,61.5,42,250,61.99,62,63,73.34,52,250,69.72,41,250,64.26,49,5,52.17,51,58,58.76,55,57,94.67,53,250,55.02,53,52,60.37,61,62,67.86,51,250,95.82,68,250,59.58,59,58,66.48,44,250,121.8,109,250,81.7,43,250,61.31,56,58,31.68,24,15,48.22,44,5,82.25,62,35,0.947,0.03439 -VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,76.49,77,78,87.35,54,250,31.26,23,5,68.96,71,75,80.5,77,75,96.64,67,250,79.46,75,9,88.87,68,250,61.93,51,5,118.61,131,250,83.69,84,82,70.74,72,74,49.4,51,2,56.6,49,2,73.94,47,250,71.23,73,76,59.91,36,250,93.1,71,250,64.05,51,250,133.48,110,250,133.72,86,250,70.74,73,75,130.17,97,250,69.35,70,250,130.59,137,250,107.25,49,250,70.23,73,73,82.2,72,250,90.8,58,250,169.71,249,250,220.69,250,250,120.05,91,250,70.11,72,73,74.41,76,75,71.79,71,71,65.46,61,250,56.49,54,2,86.71,61,250,61.23,60,62,74.61,68,72,43.85,42,42,51.73,50,34,62.7,69,72,71.52,73,75,52.98,55,64,49.91,49,35,60.98,54,55,58.79,35,250,61.78,68,72,62.38,27,250,70.68,59,250,147.88,145,250,75.12,47,250,59.96,65,74,73.65,75,75,63.68,68,70,46.15,44,34,94.29,58,250,69.44,73,73,136.98,114,250,62.24,48,250,67.4,70,70,149.17,224,250,83.61,41,250,74.31,76,78,86.14,55,250,9.07,7,3,131.43,92,250,92.03,76,250,73.8,50,250,143.63,165,250,69.55,44,250,108.31,73,250,71.44,73,74,51.71,36,34,90.96,88,5,52.02,49,47,68.73,39,250,142.94,115,250,70.87,73,75,95.73,65,250,130.03,129,250,116.09,74,250,74.25,75,75,61.95,61,72,139.89,141,250,73.41,75,76,71.19,73,74,84.95,52,250,60.75,59,2,154.13,248,250,71.13,73,74,113.48,96,250,73.85,73,73,93.41,86,250,77.9,52,2,107.48,81,250,45.85,29,2,70.77,73,75,81.91,44,37,139.86,149,250,71.49,73,74,85.2,62,12,89.7,81,76,68.79,71,71,42.53,38,22,54.98,58,60,73.66,72,74,70.45,72,75,99.8,61,250,66.55,70,72,105.7,84,69,73.47,73,74,95.19,81,4,75.79,76,76,71.67,73,74,69.99,72,72,134.44,132,250,71.17,72,74,72.85,73,74,70.33,70,71,82.91,51,8,129.4,98,250,73.47,74,76,69.33,62,4,76.44,77,78,71.22,73,74,72.7,73,75,48.99,29,3,77.12,78,78,69.98,72,74,73.4,73,73,71.51,73,74,68.48,69,73,77.13,73,75,66.58,70,69,73.85,76,77,228.56,250,250,70.1,71,73,70.78,73,76,64.33,68,71,71.56,73,72,4.39,4,4,73.76,74,74,73.31,75,75,71.05,73,73,69.22,71,73,71.85,71,71,105.56,75,250,72.25,71,71,69.69,72,73,66.42,63,70,70.56,71,71,71.13,74,74,112.99,65,250,74.06,75,76,74.65,70,250,72,72,76,77.09,75,74,70.53,72,73,77.21,73,75,73.73,72,74,85.17,58,250,70.7,72,74,66.9,70,72,72.82,71,69,75.46,76,77,70.46,70,72,127.02,122,250,85.13,64,250,126.11,120,250,62.46,56,3,71.47,66,250,73.99,76,81,71.9,70,69,113.23,67,250,116.54,103,250,71.23,73,74,91.06,59,250,82,49,250,74.4,73,77,94.61,69,250,77.63,50,250,82.7,66,250,65.56,66,69,75.64,71,68,110.61,75,250,72.28,71,72,72.02,74,75,89.26,78,250,106.38,80,250,74.66,75,77,72.43,46,250,149.42,159,250,102.34,64,250,75.74,70,74,39.83,32,2,62.07,58,56,104.45,79,250,0.949,0.0345 -VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,56.71,57,57,74.45,37,250,31.45,23,3,47.68,49,49,59.22,59,60,58.69,43,11,81.97,69,3,64.06,51,41,48.38,41,29,112.91,76,250,61.96,62,64,50.64,51,52,31.76,32,4,45,36,4,36.75,29,8,53.93,56,57,42.43,25,2,79.27,50,250,42.63,35,2,95.1,84,250,119.34,90,250,51.11,52,53,108.6,65,250,48.17,46,49,99.32,84,5,79.57,32,250,50.41,52,53,48.47,48,49,71.51,32,250,162.28,249,250,190.92,210,250,96.85,55,250,50.16,52,53,55.16,55,49,50.37,48,54,48.52,41,39,35.15,27,9,79.56,50,250,41.36,39,44,55.14,45,49,31.55,31,23,37.63,38,56,44.84,49,49,51.24,52,53,38.29,39,46,36.57,36,21,42.68,35,9,48.52,30,27,45.61,49,56,45.77,24,3,47.81,41,6,112.67,97,250,75.07,64,250,42.5,45,57,53.32,54,55,42.6,45,45,35.04,33,27,82.28,38,250,51.83,55,62,69.09,66,3,45.47,31,3,44.87,47,47,148.2,211,250,62.44,18,2,54.48,55,55,73.44,37,250,14.57,14,5,113.71,75,250,63.96,47,250,49.99,35,18,107.76,83,250,53.9,33,10,99.52,62,250,51.05,52,52,45.81,31,18,89.63,56,250,36.52,35,33,59.53,30,250,113.48,83,250,50.89,52,53,82.17,50,250,149.62,155,250,112.42,57,250,53.67,54,54,45.71,47,48,108.84,82,250,53.13,54,54,51,52,53,63.11,34,250,38.86,42,3,101.49,126,2,50.79,52,53,80.82,74,250,53.34,52,52,55.93,40,4,69.53,36,8,73.6,57,20,31.63,16,4,50.93,52,52,58.98,37,24,130.39,99,250,50.61,51,52,79.72,41,250,62.82,56,48,49.22,50,51,47.98,49,2,34.83,36,49,52.67,51,53,49.86,51,52,88,44,250,47.22,49,51,80.83,54,50,52.63,52,52,64.66,55,29,55.22,55,55,50.53,51,52,50.17,51,52,99.24,107,10,50.49,51,52,50.81,51,51,50.83,49,49,79.91,38,250,135.53,168,250,53.22,53,54,53.52,51,56,57.07,57,57,51.18,52,53,50.87,51,50,42.63,23,2,56.94,57,58,49.87,51,53,52.36,52,53,51.07,52,52,49.43,49,50,56,51,53,46.52,50,55,53.82,55,55,230.83,250,250,48.49,49,49,50.69,52,52,46.28,47,50,51.57,52,53,6.11,6,7,52.73,53,54,52.85,54,53,50.37,51,51,49.09,50,52,50.6,49,51,78.95,39,250,50.86,50,52,49.17,51,52,48.03,44,50,50.43,50,52,50.25,52,55,102.12,44,250,53.61,54,55,54.7,48,50,50.63,51,49,57.4,54,52,50.5,51,51,51.84,49,49,52.63,50,54,69.11,35,250,49.26,50,49,46.76,49,53,52.58,51,51,54.77,55,55,52.03,50,50,88.25,67,250,61.73,45,250,98.63,74,250,39.71,33,2,53.67,46,250,55,56,59,49.6,48,52,114.34,53,250,52.42,41,39,51.18,52,52,76.24,36,250,59.21,36,250,53.39,52,49,53.89,40,19,54.82,33,250,59.65,47,2,47.96,45,46,52.29,49,49,89.37,45,250,50.38,49,49,52.16,53,54,65.83,44,3,73.5,55,8,52.73,53,55,71.67,37,250,130.42,114,250,63.4,35,250,56.83,52,52,38.19,35,5,42.55,39,4,74.18,59,5,0.947,0.03427 -VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,50.2,50,49,62.97,30,250,21.16,15,4,42.95,44,45,51.77,53,55,55.21,31,4,46.38,49,5,45.13,30,15,37.64,31,8,72.73,63,11,53.32,54,58,44.52,45,46,29.18,31,3,37.86,23,2,36.1,27,19,46.05,48,49,36.12,17,11,70.63,42,250,33.75,34,4,99.51,86,250,113.83,60,250,45.01,46,47,106.89,67,250,41.08,40,45,91.51,67,5,75.05,26,250,43.32,44,44,44.01,41,41,65.25,29,250,80.38,88,44,220.24,250,250,94.27,54,250,44.18,45,46,49.89,50,47,46.2,43,47,43.89,37,40,30.94,28,4,69.4,43,250,37.93,35,40,52.43,41,40,27.36,26,24,31.61,32,13,38.93,42,47,45.28,46,46,34.16,34,30,31.14,31,29,37.12,28,23,35.4,24,18,39.83,42,43,28.23,19,3,42.8,35,7,83.48,74,250,80.08,66,4,37.73,41,48,47.37,48,48,37.47,39,41,29.41,27,19,78.95,33,250,46.16,48,48,65.85,36,6,33.05,18,19,40.15,42,44,136.78,135,250,65.91,23,10,47.97,48,49,68.87,31,250,23.87,16,3,86.04,66,250,57.13,37,250,55.83,41,11,95.18,94,250,46.46,25,9,88.65,36,250,45.08,46,46,48.7,35,11,54.99,44,14,32.42,32,31,52.14,24,3,118.14,91,250,44.73,46,46,75.36,40,2,154.79,145,250,101.2,46,250,47.38,48,48,38.34,39,41,89.34,63,250,46.97,47,48,44.9,45,47,54.09,29,26,35.47,34,43,90.11,112,8,44.99,46,47,74.89,65,250,47.13,46,47,43.92,26,6,62.84,34,4,77.65,63,11,23.34,20,4,44.87,46,47,46.17,28,17,131.03,87,250,44.78,45,46,32.96,30,11,54.5,49,45,42.99,44,45,50.99,52,80,34.93,35,37,46.14,45,45,44.2,44,45,83.83,33,250,41.72,43,45,58.31,45,5,46.81,46,46,39.91,36,34,48.91,49,49,44.78,45,46,44.62,45,44,87.45,97,32,44.9,45,46,44.09,44,45,44.43,43,43,52.27,23,6,107.48,85,250,46.47,47,48,42.27,43,48,50.06,50,50,45.04,46,47,44.96,45,47,25.65,14,7,50.91,51,50,43.98,45,46,46.6,46,46,44.76,45,45,43.38,43,46,49.99,46,46,36.86,39,39,47.92,49,48,229.4,250,250,42.3,43,44,45.08,46,48,39.98,41,43,45.89,46,47,3.52,3,2,46.79,47,46,46.76,47,48,44.38,45,46,42.99,44,43,45.08,43,43,76.34,34,250,44.81,43,44,43.97,45,46,42.4,39,43,44.6,43,43,44.33,46,49,77.41,35,250,47.23,48,48,46.82,43,43,44.68,45,49,50.48,47,48,43.28,45,44,46.91,44,45,46.41,43,45,58.44,25,250,43.71,44,45,41.29,43,45,47.08,45,45,48.47,49,48,44.23,43,46,72.47,57,250,55.6,36,250,79.93,54,250,34.21,29,6,47.93,40,44,47.44,50,51,42.71,42,44,82.04,31,250,50.8,47,42,45.08,46,47,69.61,34,250,53.28,34,2,46.11,47,44,57.44,45,10,55.21,29,250,52.28,41,2,41.22,39,42,48.28,45,46,75.14,37,250,44.54,43,42,46.13,47,47,46.4,33,5,77.23,59,5,46.66,46,46,56.82,21,250,102.77,93,250,58.44,32,24,45.85,43,43,25.62,25,2,36.78,34,5,73.79,55,3,0.947,0.03424 -VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,42.76,42,42,67.81,27,250,21.09,17,3,36.49,36,35,43.72,43,43,55.07,34,3,51.29,50,2,58.14,48,17,35.03,31,3,70.87,63,8,45.51,45,46,38.49,39,39,25.62,25,2,39.5,29,2,36.48,29,3,38.72,39,40,49.68,21,2,60.12,35,35,37.08,29,4,89.35,71,250,108.53,60,250,38.69,39,40,104.97,68,250,37.09,35,41,90.78,77,6,76.89,26,250,37.04,38,40,39.05,35,39,67.67,28,250,134.86,179,42,180.49,208,250,89.48,52,250,38.14,39,39,42.62,42,40,40.04,35,38,39.15,31,31,36.72,35,7,59.3,34,30,34.51,31,32,47.5,35,39,24.83,23,20,28.78,29,21,33.98,37,41,38.94,39,39,29.32,30,36,26.98,27,23,32.61,25,6,39.27,27,14,32.69,35,39,37.21,21,4,37,31,33,83.18,75,2,57.79,37,2,31.9,32,42,40.14,40,41,32.32,34,31,24.45,25,14,72.51,27,250,37.28,39,40,45.73,31,5,32.97,21,20,33.69,35,33,132.26,118,250,68.81,24,2,41.29,41,42,72.16,38,250,3.98,3,2,79.42,54,250,52.86,34,250,52.07,31,14,98.95,91,250,45.46,25,250,89.14,54,250,38.8,39,40,46.47,37,34,63.06,46,9,27.42,26,23,49.69,21,5,112.96,82,250,38.42,39,40,70.15,33,250,179.93,217,250,104.06,42,250,40.72,41,40,34.55,35,34,81.2,56,21,40.18,40,40,38.78,39,39,51.59,31,14,27.35,28,2,77.32,96,11,38.47,39,39,81.12,83,250,41.08,39,39,49.38,27,3,60.2,36,3,74.85,53,14,22.72,21,5,38.47,39,40,44.55,29,16,120.43,129,250,38.34,38,39,56.4,37,7,48.2,44,34,36.94,37,38,26.07,28,33,24.53,18,5,40.66,38,38,38.15,38,38,79.13,28,250,35.87,37,39,32.5,34,34,40.08,39,39,52.36,49,16,41.62,41,41,38.24,38,39,38,38,38,84.66,90,15,38.24,38,38,38.28,38,38,39.19,36,37,77.13,33,250,124.54,91,250,40.04,40,40,40.79,36,38,43.16,43,42,38.91,39,40,38.66,38,39,34.37,20,2,43.16,43,42,38.19,39,39,40.16,39,39,38.24,38,38,37.2,36,36,43.9,39,39,32,35,43,40.19,41,41,226.4,250,250,36.98,37,38,38.6,39,40,35.76,36,38,39.36,39,40,5.96,3,4,39.32,39,39,40.06,40,40,37.96,38,39,37.23,37,38,39.65,38,37,76.96,37,250,39.67,38,38,38.07,39,39,39.15,33,36,38.77,37,37,38.53,40,42,88.49,44,250,40.37,40,40,44.16,37,39,38.83,37,38,44.65,40,39,37.68,38,39,40.48,37,37,39.95,36,36,70.17,40,250,37.72,38,37,35.05,36,36,40.87,38,38,41.2,41,41,38.03,36,36,71.79,56,250,57.99,37,250,96.44,75,250,34.04,28,2,42.71,35,35,40.92,43,46,38.07,36,38,82.36,34,250,36.64,21,18,38.75,39,40,69.9,31,250,41.51,27,3,41.6,40,43,56.15,36,250,45.89,25,250,47.34,37,4,35.43,33,34,41.12,37,39,74.33,36,250,39.54,37,38,39.4,40,39,53.87,39,4,74.94,54,250,40.41,39,39,67.05,44,250,95.58,75,3,69.74,35,14,40.62,39,40,25.24,21,20,31.71,29,4,77.59,54,4,0.946,0.03426 -VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,53.76,54,55,62.92,25,250,23.23,21,21,47.17,48,51,55.75,56,57,57.71,33,10,75.42,40,250,60.24,54,3,40.09,35,2,70.9,65,250,61.18,61,58,47.82,49,50,31.85,33,4,38.95,29,2,40.83,20,4,48.71,50,48,46.05,24,250,62.28,45,250,34.84,30,2,108.38,93,250,120.22,86,250,48.19,49,50,101.01,53,250,45.83,45,50,104.42,61,250,86.29,34,250,46.03,47,50,48.65,46,48,64.36,31,250,149.97,185,250,191.8,221,250,101.84,63,250,47.58,49,49,52.81,53,54,47.71,45,48,45.53,38,39,52.95,32,6,58.75,41,38,39.85,38,42,53.88,42,42,30.93,30,28,34.21,32,20,43.22,47,47,48.69,49,50,37.26,38,25,33.09,33,28,37.67,30,13,34.39,25,25,42.41,47,50,40.47,24,2,46.64,38,40,79.9,64,250,103.17,108,3,38.7,41,44,50.68,52,52,41.68,44,47,30.36,28,22,80.01,31,250,49.35,52,52,47.32,38,22,32.33,19,16,42.88,45,45,139.53,177,250,71.13,28,2,51.7,52,52,71.3,33,250,8.75,3,2,79.1,50,250,60.53,42,250,41.08,30,20,107.44,106,250,47.86,34,2,90.16,47,250,48.2,49,49,47.5,45,47,53.62,40,7,33.91,32,26,55.52,26,8,111.02,66,250,48.24,49,50,65.17,40,4,126.7,121,250,101.66,52,250,51.02,51,51,40.55,42,47,85.52,60,250,50.34,51,51,48.17,49,50,62.41,37,22,33.58,33,4,96.96,124,12,48.01,49,49,75.48,62,250,50.43,50,50,49.19,37,3,60.68,34,2,60.92,57,44,28.21,22,2,47.95,49,50,45.98,28,15,120.73,72,250,47.88,48,49,30.96,30,10,58.81,51,37,46.35,47,49,24.04,25,25,36.3,36,44,49.45,48,50,47.37,48,48,88.88,43,250,45.05,47,48,35.96,39,43,49.85,49,49,55.54,39,2,52.46,53,53,47.84,49,49,47.28,49,49,56.71,60,6,47.8,48,48,47.45,48,47,47.45,46,48,52.66,30,7,72.28,62,4,50.49,51,51,45.59,44,5,53.82,54,52,48.44,49,50,48.28,49,50,25.73,14,9,54.62,55,56,47.63,49,50,50.41,49,49,47.57,48,49,46.34,46,49,52.48,49,49,41.82,45,51,51.39,52,51,229.21,250,250,45.43,46,46,48.08,49,50,42.68,44,47,48.96,49,49,4.46,4,4,49.73,50,49,50.25,51,51,47.47,48,50,46.13,47,48,48.79,47,48,77.78,33,250,48.76,47,49,46.8,48,49,44.16,41,42,47.18,47,48,47.47,49,50,84.46,41,250,50.84,51,52,51.56,46,46,47.52,47,47,53.68,51,51,47.41,49,50,49.66,46,47,51.23,48,47,56.7,27,250,47.13,47,48,43.78,46,48,50.09,48,49,51.95,52,52,46.62,46,49,86.3,65,250,59.07,38,250,96.15,71,250,40.02,30,3,50.69,43,46,51.86,53,53,45.91,45,47,83.87,32,250,52.13,47,47,48.34,49,50,69.29,34,250,52.03,36,2,49.24,50,53,57.22,40,5,54.02,29,250,57.22,42,2,42.55,41,43,50.41,48,52,81.47,44,250,48.06,46,48,49.43,50,50,52.48,35,10,79.02,58,250,50.37,50,50,57.35,23,250,109.24,85,250,60.83,33,26,43.97,42,45,28.84,25,2,38.22,36,44,56.02,47,23,0.946,0.03433 -VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,60.51,61,61,68.86,30,250,33.45,27,17,53.29,54,54,61.17,61,57,68.3,41,2,58.8,46,2,50.32,40,40,44.39,38,2,128.84,102,250,66.67,67,65,53.55,54,55,36.76,39,2,46.55,38,2,45.53,33,7,57.33,59,60,43.1,25,3,68.89,48,250,39.95,36,3,106.42,99,250,120.99,65,250,53.96,55,56,112.36,66,250,52.3,51,2,129.45,115,250,87.69,30,250,52.57,54,53,58.71,50,250,72.13,33,250,159.36,248,250,169.05,184,250,110.5,63,250,53,55,55,58.03,58,57,53.25,51,55,50.48,44,49,38.47,35,3,80.76,47,250,43.8,42,48,57.6,48,250,34.66,33,28,39.14,37,25,45.7,51,57,53.98,55,57,39.12,39,41,38.63,40,52,47.11,32,7,40.68,25,26,46.84,51,50,49.09,24,2,50.45,42,3,115.84,82,250,76.37,66,250,44.42,45,53,56.92,58,58,44.47,47,47,34.95,33,21,77.75,33,250,56.49,59,60,81.78,60,250,43.08,25,26,46.84,49,52,128.21,128,250,81.13,42,250,58.1,59,59,73.8,36,250,16.11,8,3,123.79,117,250,63.99,49,250,57.6,29,17,108.22,76,250,50.33,30,9,101.91,67,250,53.59,54,55,50.14,41,25,84.99,78,3,38.54,38,36,61.77,31,3,120.75,79,250,53.83,55,57,84.23,46,250,116.13,116,250,106.48,52,250,57.02,58,58,41.85,43,48,100.05,75,250,56.45,57,57,53.77,55,56,66.59,34,250,42.99,41,53,124.57,146,10,53.54,55,55,89.63,72,250,55.91,55,56,59.52,30,2,60.07,47,4,117.81,116,72,28.1,17,2,53.8,55,55,52.47,31,17,127.61,95,250,53.36,54,53,34.85,31,21,65.46,60,48,51.83,53,55,27.37,28,25,44.14,45,47,55.32,54,55,52.21,53,54,88.1,43,250,50.09,52,54,63.14,52,50,55.64,55,55,64.44,51,20,58.84,59,59,53.28,54,55,52.86,54,55,105.71,119,28,53.2,54,55,53.08,53,54,52.9,51,51,76.41,38,250,122.28,130,250,56.27,57,57,54.42,50,7,60.38,61,59,54.03,55,56,52.97,53,52,29.1,14,2,61.47,62,61,52.81,54,56,55.65,55,55,53.67,55,55,51.12,51,54,57.43,54,56,46.57,47,46,57.49,59,57,227.09,250,250,50.06,51,52,54.29,56,57,47.19,49,53,54.71,55,56,6.35,6,4,55.84,56,56,56.17,57,57,52.68,54,53,51.64,52,54,52.95,51,52,80.55,36,250,53.35,52,55,52.12,54,56,47.89,43,26,52.02,52,54,53.18,55,56,101.21,49,250,56.76,57,58,57.65,52,53,54.05,55,56,59.13,56,58,51.06,53,55,56.3,52,54,53.36,52,54,66.04,34,250,52.52,53,54,47.68,51,54,56.47,54,53,58.29,59,59,53.6,52,54,80.66,55,250,63.42,42,250,100.24,69,250,39.79,36,3,54.59,49,54,57.39,58,64,51.1,50,50,95.16,44,250,74.67,77,4,54.25,56,57,76.12,42,250,58.88,39,2,56.87,57,56,60.63,43,2,56.02,35,250,66.39,52,3,48.03,45,44,54.3,49,48,80.38,52,250,53.54,51,51,55.19,56,57,60.78,51,3,78.85,63,250,55.47,56,55,79.12,57,250,126.15,110,250,77.43,40,250,51.22,49,51,27.09,24,2,40.19,38,51,61.75,57,4,0.947,0.0343 -VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,65.19,65,66,75.63,39,250,31.49,26,24,54.22,56,57,65.75,66,66,71.05,42,250,53.54,29,2,62.17,55,3,44.15,33,21,101.69,89,250,72.44,72,71,56.91,58,59,37.16,40,2,48.94,36,2,47.99,30,4,59.84,62,62,49.38,27,250,82.31,51,250,41.98,40,2,120.69,114,250,124.14,95,250,57.73,59,61,122,93,250,52.36,51,52,127.33,113,250,90.4,30,250,54.9,57,59,52.42,51,51,73.57,39,250,123.35,140,58,227.29,250,250,108.66,74,250,56.54,58,59,63.27,63,64,56.3,51,54,54.07,47,47,39.84,36,12,76.04,51,250,44.44,43,46,61.66,53,56,35.25,35,33,40.99,41,58,49.01,54,60,57.84,59,60,42.91,44,30,39.26,40,46,43.39,34,7,49.9,32,2,50.72,55,58,45.87,25,2,52.81,46,59,127.94,108,250,77.72,61,3,50.46,53,58,60.98,62,62,45.93,50,55,38.74,37,30,82.71,39,250,58.25,63,63,62.89,46,5,43.24,24,2,50.95,53,57,145.7,200,250,78.84,33,250,62.3,63,63,73.98,37,250,26.38,18,3,103.59,55,250,74.15,55,250,76.99,58,15,110.56,96,250,57.21,30,11,98.57,61,250,57.47,58,59,43.53,24,2,78.13,59,2,41.42,41,36,61.69,35,250,126.27,101,250,57.67,59,60,90.34,46,250,177.31,204,250,107.2,57,250,60.91,61,62,46.97,49,55,106.04,86,250,60.39,61,61,57.37,58,61,70.31,42,250,40.14,43,3,107.18,134,6,57.09,58,58,97.02,87,250,59.98,59,59,54.37,37,2,73.31,41,250,103.77,93,250,41.01,28,4,57.21,59,60,62.95,30,10,143.97,173,250,57.04,58,58,70.73,44,15,67.68,61,52,54.94,56,58,34.48,36,43,45.02,44,27,58.52,57,58,56.24,57,59,89.92,42,250,53.07,55,58,101.23,66,50,59.41,59,58,67.2,56,20,62.89,63,63,56.89,58,58,56.42,58,60,112.32,127,250,56.72,57,59,55.82,56,55,55.96,55,57,72.95,23,7,121.24,101,250,59.91,60,60,56.52,53,60,64.83,65,66,57.14,59,61,56.82,57,58,42.8,27,3,66.02,66,66,56.35,58,59,59.69,59,59,57.03,58,59,54.96,55,58,62.92,59,61,47.53,50,51,62.22,63,63,231.21,250,250,53.59,55,56,58.01,59,59,50.65,53,56,58.62,59,60,6.18,4,2,59.82,60,60,60.12,61,62,56.34,57,57,54.86,56,58,56.58,55,54,90.23,54,250,56.63,55,58,54.9,57,57,53.49,50,57,55.86,55,57,56.96,59,62,106.34,53,250,60.8,61,62,59.49,54,55,56.58,57,60,64.19,61,61,56.48,58,62,58.6,54,54,56.05,54,55,77.99,45,250,55.11,56,55,52.2,55,56,59.04,57,58,62.41,63,63,55.04,54,54,98.49,80,250,69.44,47,250,100.84,73,250,42.51,39,2,59.41,51,55,61.73,63,69,53.52,53,52,107.37,61,250,75.89,72,2,57.76,59,60,80.1,42,250,63.99,42,250,58.92,60,61,69.66,55,250,60.19,37,250,69.5,54,2,50.13,49,51,58.16,54,54,88.18,50,250,55.53,53,52,59,60,61,65.12,50,7,100.44,76,250,58.43,59,61,59.75,28,250,120.26,115,250,78.7,45,250,56.16,53,57,31.22,29,2,43.27,40,30,78.34,60,27,0.95,0.03434 -VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,60.45,60,60,77.62,41,250,21.59,15,6,51.32,52,54,63.23,62,59,67.31,38,250,48.27,38,2,51.51,29,22,41.05,32,6,87.98,82,250,67.89,66,60,52.57,53,54,35.94,39,5,45.58,39,2,48.2,28,2,54.43,56,59,44.36,26,7,69.5,46,250,37.71,31,2,120.92,114,250,117.76,88,250,53.23,54,56,113.9,71,250,48.01,45,51,89.05,71,21,90.91,26,250,50.17,51,54,49.51,47,50,72.51,32,250,155.91,203,250,223.37,250,250,103.67,61,250,52.21,54,55,60.46,60,57,52.42,49,54,48.62,41,250,48.31,36,3,73.62,45,250,43.69,41,44,57.54,47,51,34.4,33,32,37.25,36,26,45.25,49,50,53.52,54,55,39.75,39,40,36.85,37,26,40.79,32,12,47.43,31,3,47.96,51,57,43.39,28,3,50.58,42,54,115.52,88,250,71.67,58,249,43.71,46,52,56.02,57,57,43.69,47,49,34.59,33,21,79.43,34,250,57.18,58,58,63.71,41,2,38.11,24,27,47.36,49,48,142.97,197,250,75.35,32,250,57.73,58,60,71.31,33,250,2.21,2,2,125.74,78,250,66.42,51,250,61.69,41,15,109.79,106,250,53.3,31,22,91.76,50,250,52.92,54,53,51.45,47,50,68.73,59,10,40.72,41,40,60.89,33,250,125.52,103,250,53.32,55,56,77.45,44,250,151.04,164,250,97.16,56,250,56.25,57,57,45.82,48,49,111.55,89,250,55.8,56,57,53.02,54,55,69.24,37,250,35.7,39,5,153.31,249,250,52.63,54,55,96.2,70,250,54.83,54,54,58.22,40,6,66.5,39,7,93.13,63,250,36.77,28,3,52.97,54,56,49.45,30,3,133.42,135,250,52.2,53,54,65.99,41,40,65.37,59,53,50.75,52,54,27.03,27,24,38.42,41,46,54.6,53,54,51.79,52,53,91.73,43,250,48.99,51,55,64.11,59,48,54.69,54,54,70.96,56,5,58.31,58,58,53.24,54,53,52.5,54,55,100.18,100,12,52.43,53,53,52.1,52,54,52.71,50,50,55.39,40,4,102.77,92,2,55.4,56,56,51.09,45,3,60.12,60,61,53.08,54,55,52.7,53,54,35,20,5,61.48,61,58,52.45,54,55,54.59,54,55,52.77,53,54,50.07,50,53,58.31,54,54,45.08,48,49,57.08,58,59,224.33,250,250,49.48,50,50,53.61,55,54,47.72,49,53,53.68,54,55,2.52,2,2,54.93,55,57,55.54,56,56,51.71,53,53,49.96,51,52,52.18,51,52,83.24,43,250,53.23,52,50,51.57,53,53,51.42,46,56,51.49,51,51,52.98,55,56,100.54,48,250,56.23,57,57,56.04,51,54,53.43,53,57,59.16,56,56,51.87,53,55,53.62,50,50,51.9,50,52,74.49,43,250,50.83,52,52,47.37,50,54,53.95,52,55,57.7,58,59,51.63,50,52,86.59,67,250,63.34,48,250,100.45,86,250,41.67,36,4,55.16,48,55,58.21,60,60,49.96,49,53,88.87,55,250,112.55,131,250,53.47,55,56,76.59,39,250,64.98,41,250,55.15,55,58,67.67,50,30,60.5,37,250,61.79,41,2,48.41,46,49,53.84,50,48,82.86,49,250,51.13,49,49,54.68,56,56,65.92,51,250,84.57,62,250,54.52,54,55,58.8,25,250,132,135,250,71.07,45,250,54.3,50,53,44.34,30,3,41.15,39,50,86.18,51,250,0.947,0.03435 -VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,56.54,57,57,71.09,38,250,20.1,14,5,51.95,52,50,59.66,59,53,61.48,38,2,60.79,49,2,55.96,42,2,47.65,42,27,75.51,74,250,61.23,61,61,50.98,52,53,32.32,34,2,46.15,38,8,47.35,35,2,54.64,57,57,49.44,26,250,69.98,49,250,36.35,35,2,120.37,112,250,108.28,70,250,51.28,52,53,111.51,72,250,48.7,48,54,51.94,45,6,76.65,28,250,49.75,52,57,49.63,50,56,75.03,36,250,163.07,228,250,134.8,134,250,104.6,77,250,50.55,52,52,56.01,55,49,53.48,49,50,51.35,44,44,40.29,38,14,70.49,49,250,41.89,40,51,55.16,44,48,32.9,32,28,37.97,37,57,45.11,49,49,51.9,53,54,37.5,36,31,36.41,37,30,47.8,32,9,47.37,30,29,43.45,46,54,39.57,23,4,45.94,40,48,108.93,102,250,80.27,73,250,41.99,44,48,53.75,55,55,42.7,47,49,33.98,32,25,79.13,36,250,50.16,53,55,69.87,49,250,45.61,34,5,47.63,50,50,147.41,217,250,78.2,32,250,54.38,55,55,70.6,32,250,7.49,4,4,125.4,107,250,68.74,50,250,64.8,39,16,108.17,90,250,52.49,32,250,90.18,42,250,51.42,52,52,53.5,49,48,76.91,73,2,37.96,37,40,62.09,33,4,121.64,79,250,51.37,53,53,70.24,36,250,148.36,181,250,102.45,51,250,53.87,54,55,42,41,45,101.91,79,250,53.38,54,55,51.57,52,53,64.76,37,2,37.09,41,5,82.43,101,12,51.27,52,53,81.41,66,250,53.67,53,54,59.3,35,6,76.15,32,250,123.13,124,141,33.43,24,2,51.08,52,54,58.52,30,5,100.99,89,250,51.25,52,52,64.56,36,9,63.32,59,50,49.57,51,53,25.57,26,29,48.11,45,44,53.38,52,53,50.69,51,52,92.2,45,250,47.6,50,52,88.55,64,3,53.29,53,53,68.6,47,3,55.44,56,55,51.51,52,53,50.29,52,52,89.88,97,21,51.21,52,53,51.82,52,52,51.06,49,51,81.88,38,4,135.45,169,250,53.02,53,54,48.81,47,2,56.12,56,58,51.63,53,54,51.12,52,52,39.65,28,3,57.24,57,56,50.6,52,53,53.85,53,52,50.98,52,53,49.67,49,52,55.74,52,52,43.55,48,50,53.95,55,54,223.33,250,250,49.05,50,51,51.27,53,54,46.23,47,50,52.33,53,55,4.71,4,2,53.54,54,53,53.18,54,55,50.89,52,53,49.79,50,51,51.89,51,51,85.28,49,250,52.12,51,51,50.5,52,52,47.84,43,48,52.3,51,52,50.77,53,55,96.43,48,250,53.71,54,55,54.94,49,47,50.65,51,53,56.19,53,54,50.94,52,54,56.2,50,52,53.71,50,48,75.2,42,250,50.26,51,53,47.1,49,50,53.44,52,54,54.99,55,55,51.46,50,50,82.8,55,250,68.78,46,250,111.66,100,250,43.87,35,4,53.56,46,47,51.14,51,50,49.27,48,50,81.27,34,250,60.96,53,47,51.34,53,53,72.97,37,250,65.18,39,2,52.97,54,54,66.34,44,250,56.68,35,250,59.55,40,3,47.47,45,51,54.89,51,50,85.24,44,250,51.36,50,51,52.45,53,54,62.62,46,4,83.78,59,250,52.92,52,50,64.57,35,250,124,119,250,69.25,43,250,56.38,50,50,43.3,31,2,42.72,39,5,77.39,60,11,0.947,0.03434 -VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,75.06,75,75,73.57,38,250,33.61,25,13,64.11,67,72,80.6,81,74,76.33,47,250,83.46,82,4,59.61,40,3,52.82,44,5,97,97,250,84.15,87,93,64.86,66,67,40.07,41,3,52.58,44,6,46.46,36,4,68.09,70,69,47.86,29,21,91.27,59,250,48.8,49,5,136.75,123,250,129.47,101,250,65.68,68,69,142.76,126,250,59.77,58,65,130.52,120,250,92.13,46,250,60.92,63,65,61.18,59,63,78.18,42,250,166.17,246,250,212.77,249,250,101.34,54,250,64.68,67,68,72.49,72,73,61.48,61,66,57.52,52,52,65.71,48,9,84.94,53,250,49.58,49,54,67.38,60,250,38.61,37,38,49.37,47,68,55.71,61,65,66.11,67,69,51.38,52,72,46.68,46,40,44.37,35,5,57.05,37,250,56.76,62,72,45.11,27,3,58.39,48,7,130.11,102,250,113.93,107,250,53.9,57,63,69.89,71,71,51.63,55,63,43.82,41,26,90.31,56,250,65.67,72,73,93.28,65,250,48.93,32,5,58.13,60,59,145.68,207,250,88.06,47,250,71.53,73,74,79.72,45,250,16.25,8,2,129.68,76,250,75.32,58,250,71.61,47,250,123.13,117,250,63.85,44,250,103.96,55,250,65.21,67,67,59.55,55,67,90.6,89,3,49.39,48,42,66.77,35,250,132.48,125,250,65.86,68,70,98.19,56,250,141.65,166,250,109.98,65,250,70.11,71,71,49.24,52,54,134.87,118,250,69.19,70,71,65.43,67,69,91.66,42,250,46.07,50,2,129.38,170,250,64.67,66,69,98.35,91,250,67.41,67,67,70.58,56,3,76.04,51,4,113.63,95,250,37.36,26,3,65.63,67,69,74.39,38,22,141.47,155,250,64.56,66,66,66.76,47,19,82.05,74,66,62.68,64,65,47.86,50,61,51.4,53,50,66.18,65,67,63.89,65,66,97.21,48,250,60.66,63,65,69.38,61,5,67,67,69,73.45,71,2,72.5,73,73,64.91,66,69,64.82,66,68,121.28,123,250,64.18,66,70,63.43,64,65,62.75,61,62,80.64,33,250,126.73,114,250,68.77,69,71,66.23,58,2,74.65,75,75,65.54,67,69,64.48,65,66,41.33,26,4,76.17,76,79,64.38,67,69,67.38,67,67,64.34,66,67,61.42,62,63,69.02,66,66,54.55,55,3,71.09,72,72,226.04,250,250,60.91,62,61,66.17,68,70,57.62,60,66,67.1,68,70,5.99,5,3,67.89,68,71,68.95,70,71,64.11,65,66,61.58,63,62,63.39,62,63,91.99,54,250,64.91,64,65,63.19,65,65,60.83,56,67,62.56,62,64,64.9,68,69,105.68,56,250,69.78,70,70,67.25,62,250,65.48,65,70,72.81,70,68,63.5,65,66,67.16,62,65,63.67,62,61,75.69,45,250,62.65,63,62,59.55,62,64,67.14,65,66,71.88,72,73,61.44,61,63,100.29,82,250,80.51,58,250,105.17,87,250,46.96,38,2,64.87,60,63,72.17,73,72,63.56,63,69,116.21,73,250,103.42,118,8,66.33,68,70,83.43,47,250,56.52,44,250,67.26,70,67,78.65,55,250,61.58,39,250,66.17,40,250,55.59,54,56,65.12,62,64,94.42,60,250,62.99,60,61,67.45,69,70,77.32,68,3,101.18,79,250,65.7,66,67,84.01,60,250,138.24,129,250,79.2,49,250,65.47,63,62,49.86,41,2,47.9,46,3,103.09,98,250,0.949,0.03429 -VBS46322-6321STDY9453322,75.5,77,78,77,78,79,81.13,82,82,79.93,39,250,39.99,31,12,70.1,72,76,84.1,84,85,87.38,56,250,77.91,67,6,59.39,42,40,64.51,61,3,148.27,184,250,91.63,92,85,72.47,74,76,45.03,46,2,56.15,44,4,60.07,47,6,72.63,75,74,58.96,36,2,92.15,68,250,52.1,48,3,148.25,161,250,137.06,113,250,72.67,75,77,143.12,110,250,67.97,70,78,111.28,89,250,102.22,56,250,70.68,74,76,72.47,68,70,76.97,46,250,171.61,248,250,222.27,249,250,126.23,94,250,72.24,75,77,79.63,82,85,70.85,70,73,63.09,60,250,72.79,66,11,84.99,63,250,59.56,59,62,72.62,67,250,46.18,44,45,56.08,55,35,62.27,70,76,73.61,75,77,56.57,58,72,51.56,53,78,63.09,51,6,48.02,37,5,64.1,70,79,63.37,32,8,65.89,56,8,129.57,125,250,104.25,96,2,61.15,66,75,76.6,78,79,61.85,66,67,47.72,44,34,86.62,51,250,72.71,76,75,95.75,75,250,56.83,37,250,64.42,68,70,149.4,236,250,79.91,31,2,77.98,79,80,82.18,48,250,4.42,2,2,125.31,84,250,82.76,69,250,72.82,57,21,143.2,165,250,61.15,42,250,115.27,83,250,73.11,75,76,64.28,63,14,114.23,96,250,53.54,54,65,73.01,41,250,145.07,130,250,73.19,76,78,101.99,63,250,196.18,250,250,117.57,74,250,77.07,78,77,60.47,64,74,116.29,101,250,76.25,78,78,73.25,75,75,101.63,62,250,55.1,63,4,148.11,227,250,72.42,74,77,118.63,107,250,74.92,75,77,84.21,48,250,64.64,38,250,123.26,122,92,43.87,32,4,72.92,75,77,80.29,46,7,146.7,180,250,72.78,74,76,70.55,57,12,88.12,79,62,69.91,72,73,63.2,64,2,51.23,54,71,73.97,74,76,71.28,73,75,101.29,53,250,67.89,72,74,45.26,43,27,75.07,75,76,98.5,77,37,79.39,80,80,72.6,74,76,72.24,75,78,151.38,195,250,72.2,74,73,72.88,73,72,70.25,70,72,86.31,29,250,135.65,155,250,75.48,76,77,70.13,65,13,80.65,81,81,73.25,75,76,72.43,73,74,46.67,28,4,82.55,83,82,72.09,75,76,75.48,75,77,72.7,74,75,68.69,70,76,77.88,75,78,58.94,65,67,77.31,79,79,227.39,250,250,69.24,71,73,73.37,76,78,65,68,71,73.24,75,77,4.32,4,2,76.38,77,77,76,78,78,71.96,74,74,71,72,73,71.98,71,72,98.77,63,250,72.58,72,75,70.82,74,76,64.94,61,71,72.8,72,74,72.04,75,78,109.22,60,250,76.98,78,78,75.09,71,250,72.63,73,74,80.84,79,80,70.81,73,77,74.31,71,73,70.54,71,73,84.48,59,250,71.57,73,75,65.59,70,75,72.75,73,76,78.82,79,79,70.64,70,71,107.83,90,250,83.12,64,250,128.01,125,250,61.62,53,4,75.19,70,250,77.04,79,76,69.02,69,72,105.59,56,250,111.31,130,12,73.41,76,77,86.77,54,250,75.24,55,250,74.2,76,82,84.31,66,250,64.56,45,250,68.4,38,250,64.28,65,71,78.1,73,69,96.62,62,250,69.96,69,72,74.41,76,77,78.88,59,2,116.86,103,250,74.44,75,79,79.68,57,250,146.34,142,250,79.97,56,250,76.8,70,70,49.08,37,3,58.43,54,5,117.72,98,250,0.948,0.03438 -VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,54.02,54,55,66.06,29,250,20.95,14,10,47.92,49,48,57.96,57,57,59.72,42,3,48.97,34,5,47.53,37,7,39.13,34,7,66.14,61,250,60.8,61,57,47.96,49,50,30.94,33,4,42.31,27,2,45.37,28,5,48.43,49,49,39.18,20,2,71.94,47,250,36.19,34,3,108.85,95,250,116.51,76,250,48.44,49,51,102.38,54,250,45.05,46,50,110.29,65,250,76.34,29,250,46.48,48,49,57.83,47,50,76.6,36,250,144.97,182,250,205.56,250,250,95.58,52,250,47.65,49,50,52.51,52,49,49.1,45,48,48.79,42,47,34.45,32,7,75.01,42,250,41.19,39,46,54.36,44,45,28.13,27,25,36.27,36,21,43.48,46,51,48.93,49,51,36.63,37,40,33.98,32,30,36.27,29,25,36.52,24,29,45.02,49,52,33.06,16,6,47.06,38,3,91.79,76,250,69.8,57,2,41.36,43,46,50.85,52,53,40.07,42,45,33.34,32,24,75.48,33,250,48.88,51,52,69.34,62,2,34.28,20,2,43.39,46,49,139.72,143,250,68.73,20,250,51.8,52,52,70.28,34,250,15.07,15,14,123.62,107,250,60.12,43,250,62.48,42,14,107.2,99,250,45.34,23,8,98.17,59,250,48.47,49,50,60.53,57,71,69.92,56,2,34.33,33,31,49.97,23,8,116.31,78,250,48.32,50,50,73.01,42,5,170.06,185,250,100.9,52,250,51.04,51,52,43.19,43,43,87.87,60,250,50.51,51,51,48.34,49,49,52.05,33,3,41.91,43,50,134.04,174,250,48.22,49,50,91.35,90,250,50.95,50,50,41.52,12,3,60.33,32,2,124.48,118,250,27.83,22,2,48.32,49,50,49.58,32,18,127.41,94,250,48.18,49,50,50.47,38,37,62.2,59,55,46.49,48,49,79.4,87,107,27.93,20,13,49.77,48,50,47.35,48,50,89.13,43,250,44.79,47,49,30.75,29,28,50,49,50,55.29,49,32,52.64,53,53,48.24,49,49,47.65,49,51,79.96,94,3,48.22,49,50,47.87,48,49,47.73,46,48,48.29,27,6,134.59,159,250,49.95,50,51,47,43,3,53.73,54,53,48.5,49,52,48.34,49,50,31.22,19,9,54.68,55,55,47.38,49,50,50.99,49,50,48.44,49,49,46.74,47,49,53.73,49,51,40.21,42,40,51.82,52,52,228.05,250,250,46.43,47,48,49.02,50,53,42.45,44,47,49.46,50,51,7.64,6,3,50.7,51,51,50.14,51,51,47.92,49,49,46.79,48,50,48.15,47,46,78.02,33,250,49.5,48,50,47.71,49,50,48.19,43,51,47.81,48,47,47.3,49,51,93.22,38,250,50.77,51,51,52.14,46,47,48.36,49,52,53.85,51,51,47.88,49,47,47.6,46,48,49.06,47,47,61.18,29,250,47.89,49,49,44.31,46,51,50.25,48,48,52.04,52,52,48.71,47,46,81.48,62,250,54.47,39,250,87.29,55,250,37.57,30,3,49.9,43,45,52.03,54,57,46.95,46,47,94.87,45,250,80.87,91,97,48.7,50,50,67.64,29,250,57.15,40,2,49.04,51,57,57.07,42,250,56.51,34,250,56.51,43,4,44.67,43,49,51.36,48,49,83.12,41,250,47.8,46,44,49.5,50,51,54.19,36,5,85.06,71,3,50.5,50,52,70.41,28,250,117.92,86,250,69.21,31,250,49.36,45,46,33.66,26,7,39.87,39,48,81.25,64,7,0.947,0.03426 -VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,50.36,50,49,62.09,30,250,26.69,22,3,43.77,45,46,53.11,51,49,53.14,32,3,79.49,40,250,49.61,40,15,35.91,29,2,67.21,66,85,55.84,57,57,44.89,46,46,27.1,27,3,39.95,29,4,38.64,29,9,45.03,46,49,38.53,20,11,63.11,43,250,30.31,30,4,102.37,88,250,113.6,85,250,45.24,46,47,103.94,64,250,42.18,42,45,88.47,73,3,83.42,27,250,43.1,44,45,52.34,43,44,70.95,30,250,161.81,249,250,177.9,196,250,98.22,58,250,44.8,46,47,48.32,49,55,46.22,42,45,43.78,36,37,58.12,36,3,73.95,41,250,39.08,37,46,52.22,42,250,28.2,27,25,33.74,32,21,36.75,40,40,45.94,46,47,34.31,34,38,32.19,32,21,33.66,28,3,40.67,22,17,39.32,43,50,37.13,20,2,44.88,35,3,104.89,90,250,66.23,57,2,38.31,40,44,47.46,48,49,37.2,39,43,30.46,29,25,75.88,31,250,46.29,49,49,71.06,56,2,34.31,19,4,40.95,42,44,137.88,164,250,64.41,26,2,48.59,49,50,63.9,28,250,3.2,3,2,111.34,61,250,56.88,40,250,39.94,29,13,106.12,64,250,43.94,26,2,85.66,36,250,45.45,46,47,33.21,20,17,81.58,69,2,32,32,32,52.81,19,4,109.76,71,250,45.24,46,47,73.34,39,2,120.4,111,250,100.19,62,250,47.69,48,48,37.85,39,45,84.76,57,250,47.28,48,48,45.43,46,48,55.93,32,2,37.89,37,5,115.73,134,2,44.98,46,46,82.71,82,250,47.51,47,47,54.96,33,2,46.69,29,5,98.19,95,79,32.39,18,3,45.18,46,46,47.03,21,8,89.47,69,3,44.74,45,46,62.37,37,11,56.12,53,46,43.51,44,46,33.47,35,34,41.42,41,3,47.05,45,46,44.54,45,46,82.28,35,250,42.2,44,45,58.13,48,42,46.64,46,47,62.72,54,30,49.09,49,49,44.98,45,47,44.4,46,47,98.1,101,4,45,45,46,45.14,45,45,45.66,43,44,66.88,35,2,119.6,90,250,47.29,47,48,46.06,45,52,50.16,50,50,45.19,46,46,45.36,46,47,31.21,19,3,50.53,51,50,44.91,46,47,47.28,46,46,44.9,46,47,43.83,43,45,50.26,46,45,38.68,41,46,47.97,49,49,224.88,250,250,43.31,44,43,45.34,46,48,41.05,42,45,45.86,46,47,4,4,2,46.95,47,47,47.01,48,48,44.46,45,46,43.15,44,44,45.46,44,43,82.19,45,250,46.14,44,45,44.5,46,46,43.06,38,44,45.04,44,44,44.42,46,49,93.97,41,250,47.64,48,48,50.92,44,46,45.03,45,46,48.19,47,49,45.29,45,45,45.56,43,42,45.41,43,44,70.15,36,250,43.58,44,43,40.43,42,45,48.25,45,45,48.74,49,49,45.37,43,46,80.81,58,250,60,41,250,81.55,59,250,37.61,30,3,46.39,40,40,47.23,48,47,42.6,41,46,93.38,46,250,97.22,111,116,45.71,47,47,69.8,39,250,48.61,35,2,46.44,46,51,54.93,41,2,51.43,30,250,50.25,25,2,41.38,40,44,45.72,44,45,85.2,41,250,45.1,43,42,46.28,47,48,59.94,45,7,84.4,68,250,47.04,47,49,55.38,29,250,95.25,70,250,55.1,36,10,44.9,41,38,33.24,23,3,36.95,33,2,81.23,59,250,0.946,0.0343 -VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,70.03,70,70,74.56,34,250,26.94,25,26,56.4,59,67,73.55,72,64,73.73,45,2,99.94,88,3,63.26,52,4,49.16,40,5,90.18,93,250,78.05,80,78,60.27,62,63,38.02,38,3,50,39,2,37.67,30,4,61.54,64,66,47.63,29,11,77.54,56,250,47.29,42,2,124.67,113,250,123.24,82,250,61.41,63,64,93.56,62,250,55.55,56,59,105.74,67,250,94.33,33,250,57.54,60,62,70.66,58,58,74.18,38,250,164.19,249,250,201.9,250,250,100.5,54,250,60.12,62,63,67.71,68,68,60.38,56,58,53.94,47,52,58.99,43,3,79.74,54,250,47.95,47,57,63.87,55,250,35.74,34,36,46.29,44,34,50.97,56,64,61.48,63,64,46.63,46,37,39.18,38,28,44.98,34,28,39.13,28,4,53.22,58,64,64.36,36,6,54.93,45,4,97.28,84,250,59.37,45,2,48.08,51,62,65.11,66,66,48.75,52,56,39.72,38,26,79.2,32,250,64.86,68,77,72.8,46,29,37.6,25,2,54.37,58,62,143.76,175,250,80.33,37,2,66.54,67,67,76.99,44,250,5.79,5,2,117.2,69,250,69.44,53,250,58.61,38,20,120.22,122,250,50.65,32,32,92.28,45,250,60.93,62,63,59,55,55,61.07,49,14,42.6,42,42,64.82,35,3,131.52,125,250,61.14,63,64,88.77,51,250,146.67,161,250,108.8,68,250,64.95,66,66,46.53,48,51,108.8,86,250,64.38,65,66,60.87,62,64,88.43,46,250,52.7,51,69,121.79,146,10,60.53,62,63,97.42,87,250,63.25,63,62,54.45,20,3,62.99,38,2,118.71,112,250,39.82,28,5,60.91,62,63,47.27,28,22,149.49,168,250,60.36,61,61,58.94,47,4,74.52,69,59,58.53,60,62,46.93,48,27,40.79,42,23,61.79,61,63,59.3,61,62,92.05,45,250,56.15,59,60,66.02,65,64,62.9,62,63,63.91,52,12,67.53,68,68,60.39,61,61,60.51,62,65,101.62,106,6,60.57,62,63,59.53,59,59,58.69,57,59,78.94,28,5,129.78,122,250,63.86,64,63,56.79,53,5,69.83,70,70,60.86,62,64,59.93,61,60,39.95,24,2,71.02,71,68,60.2,62,63,62.64,63,65,61.1,62,65,57.5,58,62,65.03,62,64,49.92,54,53,66.2,67,66,229.1,250,250,56.65,58,59,60.98,63,65,53.67,56,56,62.43,63,61,5.63,4,4,63.93,64,64,63.97,65,65,59.53,61,61,57.55,59,60,59.25,58,60,90.74,47,250,59.58,59,62,58.96,61,63,55.99,51,62,58.8,58,59,60.05,62,64,103.24,50,250,64.83,66,66,62.45,58,61,59.89,61,61,65.99,64,66,58.8,61,63,63.6,59,59,56.02,56,57,74.32,40,250,59.12,60,60,55.87,58,62,63.12,62,63,66.84,67,67,59.91,59,62,97.81,82,250,65.05,50,250,107.58,99,250,45.48,38,2,60.18,55,60,65.28,67,69,58.03,58,59,99.76,52,250,62.5,48,28,61.57,63,64,76.63,47,250,76.2,47,250,62.4,64,66,77.43,57,250,60.36,38,250,70.67,55,2,52.84,52,56,61.46,58,59,91.5,54,250,59.53,57,57,62.83,64,65,70.45,51,2,95.74,75,250,62.62,62,64,71.55,30,250,131.51,124,250,72.19,40,250,63.95,56,60,43.94,39,6,42.77,41,6,112.52,87,250,0.947,0.03439 -VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,62.65,62,62,70.16,39,250,27.55,24,4,50.73,52,53,66.37,65,67,70.08,41,250,63.95,55,8,59.95,38,3,51.34,41,28,101.25,104,250,70.18,70,71,54.25,55,56,35.09,36,2,46.98,41,2,35.47,22,5,56.11,58,59,46.68,27,250,71.51,49,250,42.48,40,26,95.98,80,250,123.51,79,250,55.17,56,58,114.54,70,250,48.24,49,53,119.57,55,250,84.44,29,250,52.26,54,54,49.14,49,54,70.6,35,250,117.75,139,61,201.74,245,250,108.62,80,250,54,55,56,60.76,60,57,52.58,50,49,51.22,45,46,36.16,28,7,78.6,47,250,41.37,40,44,58.94,50,57,33.09,33,28,40.75,38,26,48.25,53,56,54.96,56,57,40.86,40,34,36.89,36,33,36.83,33,3,59.97,51,2,47.9,53,54,41.77,29,4,49.8,41,61,105.82,92,250,70.79,57,3,44.52,47,51,58.1,59,59,42.71,46,49,36.67,34,29,79.19,31,250,54.69,60,66,93.2,77,250,42.38,27,10,47.36,50,52,145.99,193,250,72.03,34,11,59.93,60,61,72.35,40,250,21.98,18,2,121.62,65,250,63.5,45,250,50.77,37,11,108.88,95,250,51.91,28,13,85.36,49,250,54.7,55,57,37.31,24,24,71.34,63,5,40.53,39,38,56.01,29,6,127.39,100,250,55.17,57,58,90.79,54,250,153.01,188,250,109.83,58,250,58.28,59,59,42.42,43,43,99.3,72,250,57.73,58,58,54.51,55,57,63.24,36,250,39.9,44,7,107.49,133,4,54.02,55,56,98.44,85,250,56.94,56,56,62.31,44,2,50.98,31,3,72.82,62,2,30.01,21,6,54.75,56,56,60.31,44,12,150.26,156,250,53.61,54,55,91.8,53,250,66.74,61,55,52.42,53,54,59.82,67,2,37.2,37,37,56.24,55,56,53.72,54,55,92.43,44,250,50.81,53,55,97.01,57,50,56.14,56,55,62.48,49,3,60.27,60,60,53.82,55,55,54.32,55,55,78.28,73,9,53.46,54,55,52.81,53,53,52.97,51,51,79.74,41,3,123.34,125,250,57.57,58,57,54.45,49,2,62.57,62,61,54.21,55,56,53.42,54,54,50.39,34,7,63.05,63,62,53.65,55,57,56.84,56,57,53.7,55,56,51.91,52,53,59.87,55,54,44.06,49,53,58.75,60,60,231.15,250,250,50.46,51,52,55.2,56,58,48.48,50,54,55.96,56,58,4.05,4,4,57.17,57,58,57.48,58,59,52.58,53,53,51.88,53,53,53.08,52,53,88.41,54,250,54.5,53,55,52.05,54,54,49.07,44,50,52.26,52,50,53.92,55,57,88.22,54,250,58.08,58,59,58.76,53,57,55.04,55,58,57.99,57,57,55.24,55,54,53.17,51,52,54.97,51,55,79.88,43,250,52.24,53,50,49.56,52,52,56.11,53,53,59.74,60,60,52.62,52,52,81.06,59,250,68.26,49,250,91.9,64,250,42.26,31,2,55.72,48,250,59.88,62,68,51.39,50,49,82.07,37,250,60.28,49,43,55.13,56,58,75.38,39,250,53.47,37,250,55.86,56,60,65.28,45,250,58.71,34,250,53.4,31,2,46.83,46,50,55.66,53,56,78.21,44,250,51.56,50,51,56.32,57,58,61.1,51,5,84.67,62,250,54.31,54,53,60.44,34,250,122.47,108,250,71.8,46,250,59.76,52,48,28.3,24,4,42.76,42,47,94.8,88,5,0.948,0.03432 -VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,67.23,68,66,77.4,42,250,32.86,30,32,59.59,60,61,68.58,67,59,65.36,48,250,93.51,72,250,79.12,75,4,49.01,39,3,79.66,67,250,75.98,77,75,59.7,61,61,39.29,39,2,52.36,42,3,55.15,31,3,61.73,64,67,45.74,25,250,83.34,57,250,52.66,40,4,129.43,135,250,128.78,87,250,60.21,62,64,91.57,56,250,55.79,55,56,122.96,106,250,95.52,44,250,57.12,59,61,56.88,55,55,77.82,40,250,168.86,249,250,182.81,219,250,107.62,69,250,59.37,61,63,63.77,64,63,57.45,55,56,55.19,49,250,65.06,48,3,79.55,54,250,46.75,45,48,65.02,57,60,36.43,35,26,45.3,43,37,52.16,56,62,60.53,62,63,46.78,47,61,41.11,40,27,54.27,40,3,54.65,45,8,50.27,55,59,51.43,32,2,57.79,47,6,126.69,104,250,67.85,56,249,50.1,53,59,63.36,65,65,51.98,56,63,40.1,38,24,83.96,41,250,63.52,67,68,59.79,44,3,48.59,33,5,52.92,55,56,139.94,156,250,78.35,18,2,64.62,65,65,79.96,43,250,5.01,4,3,127.47,107,250,79.35,59,250,64.41,32,250,120.6,103,250,59.16,34,250,92.19,61,250,59.99,61,62,64.88,57,58,86.17,54,11,45.24,44,27,62.15,29,3,127.83,93,250,60.35,62,63,97.02,54,250,137.9,146,250,108.72,53,250,63.53,64,65,49.6,51,58,104.96,82,250,62.97,64,64,60.07,61,64,70.45,49,8,41.27,48,2,139.49,186,250,59.77,61,62,122.49,130,250,62.54,62,64,69.33,45,4,65.85,45,5,139.4,133,250,36.03,22,2,60.11,62,63,68.05,41,17,125.99,122,250,59.61,60,61,72.09,40,2,73.47,68,54,58.02,60,61,55.58,61,80,47.47,50,22,61.62,60,61,58.44,60,61,91.67,48,250,55.69,58,60,78.48,67,67,62.04,62,62,78.48,61,3,65.63,66,66,59.62,61,60,59.18,61,63,112.35,121,2,59.65,60,62,58.79,59,59,59.07,57,60,102.41,73,250,123.65,112,250,63,63,64,61.14,60,3,66.99,68,67,60.33,62,63,59.73,60,63,48.05,28,2,67.84,69,69,59.43,61,63,62.85,62,62,59.82,61,63,57.45,58,61,65.81,61,62,49.17,55,58,63.99,65,65,223.86,250,250,57.03,58,60,60.58,62,62,53.99,56,60,61.35,62,65,4.89,5,5,62.58,62,62,62.83,64,64,59.17,60,61,57.92,59,60,59.02,58,58,89.61,48,250,60,59,59,58.89,61,61,57.37,53,58,57.73,58,58,60.09,62,64,94.06,51,250,63.7,64,65,62.25,57,250,59.61,60,61,68.38,65,65,60.33,61,60,59.14,57,58,58.12,58,59,82.53,47,250,58.28,59,60,55.52,58,60,62.79,61,61,65.09,66,65,57.36,59,60,102.13,86,250,69.38,53,250,117.91,104,250,48.78,41,3,63.31,56,250,63.1,65,71,57.65,56,60,102.7,51,250,103.08,107,116,60.58,62,63,84.02,45,250,57.42,36,250,61.52,62,70,78.96,65,6,68.06,43,250,72.03,55,5,55.27,54,58,61.54,57,54,93.64,56,250,57.81,56,58,61.62,63,65,81.35,60,250,96.15,72,250,61.15,61,61,68.77,45,250,133.33,136,250,76.24,48,250,60.39,55,57,36.24,34,3,45.92,40,57,117.93,88,250,0.948,0.0344 -VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,60.81,61,60,72.23,36,250,28.84,22,3,53.21,53,56,65.6,64,58,64.13,44,250,101.1,84,250,57.09,41,39,40.39,31,21,76.19,71,13,67.9,67,65,53.04,54,54,34.9,35,2,46.74,38,2,47.67,35,4,56.52,58,59,57.98,32,250,73.43,46,250,39.72,33,3,112.32,99,250,120.86,70,250,53.6,55,57,122.35,83,250,47.34,46,50,117.01,104,250,79.73,31,250,51.62,53,53,65.5,51,250,75.9,36,250,129.16,150,51,152.05,146,250,110.57,75,250,53,54,56,59.63,58,50,52.87,49,49,50.74,43,45,40.15,31,6,66.75,50,250,44.66,42,47,58.19,48,250,34.22,33,31,40.02,38,23,46.27,50,53,54.07,55,55,39.55,40,36,36.35,36,32,49.17,34,2,50.93,32,250,46.09,50,58,44.53,26,2,53.42,42,27,113.34,106,250,55.05,35,250,42.71,44,48,56.68,58,58,44.3,47,51,35.8,33,29,77.76,32,250,56.24,58,60,54.53,41,8,41.02,25,2,47.91,50,52,140.44,138,250,65.72,21,2,58.14,59,58,74.74,38,250,5.98,4,2,119.65,96,250,69.32,52,250,57.71,33,20,118.45,117,250,57.01,35,2,103.94,57,250,53.48,54,55,54.96,51,52,79.78,62,3,38.66,38,35,58.54,30,250,123.5,91,250,53.76,55,56,80.51,44,250,187.88,236,250,109.24,59,250,56.85,57,57,41.53,41,47,102.21,77,250,56.29,57,58,53.5,54,56,69.5,37,250,52.32,47,2,143.34,186,250,53.42,54,55,108.03,104,250,55.75,55,56,55.37,22,2,80.59,47,250,87.63,63,250,29.48,20,2,53.25,54,54,53.29,28,9,113.88,75,250,52.98,53,55,75.41,43,12,64.63,57,54,51.73,53,54,54.28,60,7,42.03,43,58,55.33,53,53,52.63,53,55,91.3,42,250,49.57,52,54,30.83,28,27,55.13,55,55,69.41,53,2,58.57,59,59,53.05,54,54,52.71,54,54,90.2,100,10,53.45,54,55,52.19,52,52,52.69,51,51,82.72,43,250,145.74,182,250,56.2,56,57,51.4,47,2,61.03,61,62,53.95,55,57,52.98,53,53,44.15,27,3,61.84,62,61,52.63,54,55,55.89,55,55,53.04,54,55,50.84,51,52,59.58,54,54,48.34,48,48,57.47,58,60,232.11,250,250,50.4,51,52,53.56,55,55,48.07,49,52,54.67,55,56,3.31,3,4,55.71,56,54,55.95,57,57,52.18,53,55,50.96,52,54,52.83,51,50,81.38,41,250,52.99,52,53,51.31,53,55,50.25,46,54,52.21,52,51,53.01,55,53,103.47,50,250,56.59,57,57,57.82,52,52,55.63,55,55,57.07,57,59,53.02,53,53,54.39,51,53,56.76,51,54,74.51,37,250,51.9,53,52,48.83,52,55,54.35,52,53,58.1,58,58,52.98,51,50,93.99,76,250,64.87,44,250,108.3,92,250,43.09,36,3,55.73,49,250,58.42,60,64,52.4,51,53,104.63,52,250,63.72,49,40,54.25,55,56,74.64,40,250,62.97,39,3,55.06,55,60,59.63,44,2,62.09,37,250,57.97,49,3,49.83,48,50,55.22,51,52,88.79,50,250,53.59,51,51,54.9,56,57,70.08,45,250,75.58,57,250,54.85,54,57,74.34,38,250,129.31,116,250,75.11,38,250,55.46,50,49,39.22,28,3,43.4,40,53,98.31,61,250,0.948,0.03423 -VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,66.67,67,66,69.96,41,250,26.84,19,13,59.47,61,63,70.89,71,72,68.56,48,250,87.54,47,250,49.31,37,2,54.47,47,33,87.5,97,250,73.96,75,75,59.05,60,61,39.9,45,2,50.14,44,3,55.88,27,5,61.34,63,63,51.15,31,2,75.87,56,250,45.35,41,36,129.44,131,250,121.5,73,250,59.82,61,63,117.92,85,250,57.83,56,60,110.41,92,250,85.85,43,250,57.76,60,64,62.29,55,60,78.07,39,250,161.28,228,250,226.86,250,250,112.65,73,250,58.83,61,61,64.61,65,67,57.51,55,57,56.08,50,250,42.8,38,11,76.03,47,250,47.47,46,50,62.24,53,250,37.98,38,40,44.28,44,25,52.89,57,60,59.94,61,62,44.2,43,30,41.61,39,33,50.15,37,8,40.89,28,32,51.12,56,60,54.27,24,2,57.4,48,3,112.43,96,250,76.98,65,250,50.69,54,60,62.88,64,65,48.11,52,57,37.72,37,24,78.73,37,250,63.06,66,70,61.94,53,250,43.47,25,2,51.83,54,56,146.9,221,250,70.4,29,250,63.88,65,66,75.96,42,250,17.76,19,2,121.42,109,250,70.74,55,250,63.93,47,15,121.25,109,250,60.92,40,250,95.84,48,250,59.75,61,63,63.03,55,52,114.66,108,250,41.71,42,42,62.32,34,3,118.66,83,250,59.78,62,63,86.27,55,250,151.84,195,250,109.76,57,250,62.9,64,63,51.79,54,54,105.16,87,250,62.48,63,64,59.74,61,62,69.92,40,250,42,39,3,145.88,209,250,59.13,60,62,96.16,82,250,61.63,61,63,60.77,40,250,76.98,43,250,121.79,106,250,47.62,38,2,59.45,61,61,53.99,31,3,130.19,142,250,59.68,60,61,85.52,44,250,72.9,65,64,57.43,59,60,30.07,32,35,58.84,55,2,61.07,60,60,57.87,59,60,90.63,45,250,55.72,58,62,37.93,36,42,61.68,61,60,70.38,58,99,64.93,65,65,59.32,60,63,58.72,60,63,117.28,138,250,59.67,61,62,59.17,59,58,58.3,57,60,77.04,39,5,127.39,84,250,62,62,63,57.66,59,63,66.65,67,67,59.8,61,62,58.84,59,59,41.98,29,5,67.02,67,66,58.89,61,62,61.6,61,62,59.68,61,60,56.76,57,59,64.47,60,60,49.33,55,60,64.24,66,68,227.66,250,250,56.47,57,58,59.64,61,63,52.2,54,58,60.5,61,63,6.24,7,8,61.88,62,63,62.05,63,63,58.72,60,59,57.36,58,60,58.94,58,58,89.03,49,250,59.7,58,58,57.71,59,59,54.66,51,63,58.35,58,57,59.12,61,62,101.94,46,250,62.77,63,64,63.33,58,250,58.98,60,60,65.73,63,64,58.62,60,62,62.07,57,57,58.76,58,62,78.33,39,250,58.33,59,59,53.24,57,60,61.13,60,65,64.28,65,65,57.36,57,59,96.18,72,250,64.76,45,250,94.7,71,250,49.04,42,2,60.54,54,250,62.41,63,75,57.09,56,58,80.12,43,250,97.61,112,5,60.16,62,63,77.48,44,250,61.01,38,250,61.95,63,67,67.14,51,250,61.57,38,250,65.19,51,2,52.33,52,60,61.5,57,55,95.1,58,250,59.14,57,57,61.13,62,64,71.32,56,4,105.91,71,250,61.18,61,58,59.66,26,250,124.34,117,250,88.05,46,250,58.72,56,55,30.56,29,2,49.62,47,3,103.41,87,250,0.947,0.03439 -VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,73.51,73,73,80.04,51,250,21.87,17,6,58.65,61,66,76.35,75,74,72.94,50,250,78.99,80,6,63.92,44,26,51.53,43,2,93.51,90,250,84.99,85,77,62.48,64,64,39.38,41,4,51.51,41,2,50.12,40,2,66.11,68,73,43.53,27,250,82.37,56,250,42.86,34,5,119.22,100,250,128.03,89,250,63.95,65,67,112.29,72,250,53.78,54,64,81.18,33,11,74.28,27,250,60.15,62,61,68.62,58,250,78.17,41,250,142.25,167,250,134.07,136,250,106.34,61,250,62.56,64,64,71.37,72,71,59.16,58,59,54.96,48,250,82.48,49,250,83.03,53,250,48.65,47,52,63.95,55,250,40.39,41,44,48.38,46,36,51.89,57,59,64.06,65,66,48.28,50,50,43.53,42,30,45.82,37,20,55.56,34,250,57.59,63,70,55.07,26,5,62.37,50,250,105.96,88,250,109.4,105,250,52.27,57,63,67.59,69,69,53.02,57,65,40.67,39,25,83.67,32,250,68.28,71,72,68.47,54,35,46.91,33,38,54.36,57,57,141.96,185,250,85.96,36,250,70.4,71,71,78.32,44,250,5.44,5,2,124.19,67,250,72.95,57,250,70.44,44,250,127.87,130,250,62.27,35,250,112.07,80,250,62.97,64,65,43.63,27,30,86.56,78,5,48.65,49,53,66.13,35,250,127.74,94,250,63.27,65,66,88.55,55,250,138.81,142,250,107.78,60,250,67.82,68,68,47.76,51,58,107.54,97,250,67.11,68,68,63.15,64,66,73.37,39,250,53.27,50,49,138.49,175,250,62.32,63,65,102.44,88,250,65.36,65,65,59.76,39,4,64.22,43,6,111.82,99,92,32.83,24,7,63.43,65,66,66.08,33,21,129.55,119,250,61.45,62,62,56.66,44,13,74.68,68,55,60.56,62,65,49.52,37,19,47.23,48,47,63.81,63,63,61.59,63,64,93.24,44,250,58.42,61,63,41.96,40,22,64.55,64,64,69.87,59,4,70.18,70,70,62,63,64,62.1,64,66,140.43,169,250,62.22,63,66,60.21,60,62,61.86,59,61,79.86,28,250,132.88,152,250,66.81,67,70,64.09,57,4,73.06,73,73,63.27,64,65,61.35,62,64,30.53,15,5,74.43,74,72,62.79,64,66,64.69,64,67,62.29,63,64,59.3,60,60,65.88,62,63,53.12,56,58,67.99,69,70,234.72,250,250,57.28,58,59,63.18,64,65,56.25,58,62,65.08,65,63,2.84,2,2,65.31,65,66,66.97,68,69,60.95,62,64,59.86,60,61,60.68,59,63,92.41,51,250,61.87,60,61,59.73,62,63,61.87,58,60,59.47,59,56,62.09,64,67,107.13,50,250,67.7,68,69,65.83,61,66,62.8,62,61,68.62,67,68,59.91,62,60,62.7,58,58,60.27,58,59,71.63,39,250,59.57,60,60,56.11,59,64,63.6,62,64,69.63,70,70,59.69,58,59,102.77,81,250,73.88,54,250,100.51,75,250,55.7,38,3,62.08,57,250,69.24,70,64,59.56,59,62,113.21,48,250,125.1,148,250,64.16,66,66,81.24,49,250,61.72,36,250,65.68,66,65,71.49,46,250,63.08,39,250,60.37,34,4,53.78,53,56,63.06,59,58,93.69,58,250,58.44,56,57,65.43,67,67,70.82,61,4,85.11,64,250,64.13,64,62,83.92,65,250,127.42,116,250,79.71,45,250,61.33,58,59,43.7,37,6,49.99,48,59,111.79,113,250,0.947,0.03445 -VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,58.71,58,56,73.33,30,250,26.4,20,8,48.25,49,56,62.26,60,59,62.7,40,250,85.65,61,250,71.59,67,2,38.53,30,23,84.49,88,250,67.54,66,67,49.35,50,51,31.17,31,3,50.36,46,2,51.23,30,9,51.01,54,58,47.09,26,250,69,46,250,41.78,36,4,93.06,79,250,124.89,91,250,50.13,51,52,112.37,69,250,44.87,43,46,108.4,71,250,95.88,30,250,47.66,49,51,46.58,44,44,69.8,32,250,133.97,167,250,212.38,250,250,92.14,47,250,49.39,50,51,55.22,54,49,48.84,47,51,46.23,38,40,35.59,32,43,56.25,37,37,38.95,36,42,54.72,44,45,30.68,29,28,37.36,36,27,41.1,45,45,50.53,51,52,39.06,39,30,36.82,37,26,42.14,29,7,41.16,31,27,43.87,47,48,35.85,22,5,45.99,36,20,112.53,99,250,63.57,51,250,40.49,41,45,53.38,54,54,40.44,43,46,32.84,31,20,77.85,33,250,48.39,52,54,57.23,35,2,36.89,23,3,42.19,45,47,136.62,138,250,71.54,28,7,55.72,56,55,75.54,38,250,12.61,7,2,109.68,99,250,59.57,42,250,48.16,34,17,105.29,94,250,49.9,30,9,94.47,64,250,49.72,50,50,40.58,28,11,80.15,66,9,37.72,38,39,55.2,26,8,115.04,75,250,50.53,52,52,76.58,44,250,142.82,155,250,102.23,53,250,53.45,54,53,38.42,39,42,95.05,63,250,53.12,54,54,49.94,50,51,67.55,38,250,36.69,35,2,131.32,160,11,49.31,50,52,85.16,70,250,51.98,51,51,54.7,32,3,53.02,33,5,81.75,65,47,27.42,12,2,49.99,51,50,57.23,34,24,141.22,148,250,48.81,49,49,47.39,41,12,59.17,53,46,47.59,48,49,28.07,30,36,34.87,37,46,50.95,49,49,48.94,49,49,88.77,40,250,45.8,48,50,27.37,24,21,51.33,51,50,59.23,43,3,55.63,56,55,49.25,50,51,49.52,51,51,148.04,186,250,49.15,49,50,47.93,47,48,48.44,46,47,70.79,56,8,131.29,143,250,52.62,53,54,46.44,42,5,58.61,58,56,49.43,50,51,48.67,49,48,33.72,18,2,59.37,59,58,49.1,50,51,51.93,51,51,48.96,50,50,47.46,47,48,54.4,50,51,39.01,42,41,54.61,55,57,228.78,250,250,45.39,46,47,50.33,51,53,44.08,45,49,50.96,51,51,2.5,2,2,51.68,51,51,52.74,53,54,48.1,48,49,46.76,47,50,48.55,46,45,83.93,44,250,48.74,47,50,47.6,49,48,45.66,40,51,46.77,46,46,49.54,51,53,84.67,45,250,53.4,54,53,54.98,48,50,50.46,50,53,56.23,53,54,46.85,48,48,49.21,45,48,48.58,45,48,69.18,38,250,46.82,47,46,44,46,47,50.59,48,47,55.08,55,55,47.67,46,48,81.73,60,250,65.56,43,250,99.41,75,250,41.13,33,2,53.41,44,45,58.11,59,59,47.84,46,48,90.77,41,250,38.37,25,20,50.73,52,53,74.2,38,250,53.57,39,2,52.69,51,47,51,35,3,56.47,33,250,64,49,2,44.2,42,45,48.58,46,47,85.14,43,250,46.3,43,43,51.56,52,52,60.55,40,2,81.22,57,2,50.65,51,56,62.42,37,250,104.33,93,250,70,41,3,50.23,47,46,30.73,28,3,39.1,34,5,78.67,60,28,0.948,0.03424 -VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,35,35,34,55.47,23,250,16.85,12,3,29.14,28,27,37.35,37,38,45.18,23,7,32.31,30,3,38.85,26,17,25.19,19,6,58.59,57,68,38.2,38,39,30.12,30,30,21.88,21,2,31.38,21,2,32.93,21,3,31.3,32,33,40.43,16,13,54.64,32,28,26.29,24,24,82.24,71,250,82.81,47,250,30.78,31,32,89.8,46,250,29.2,26,27,54.94,32,5,62.09,15,250,27.77,28,26,27.79,26,27,50.9,22,10,120.05,157,22,185.35,244,250,81.83,37,250,30.56,31,31,35.06,35,34,32.16,28,30,29.96,19,20,23.63,21,2,55.56,29,250,27.67,24,26,41.47,28,29,23.02,22,18,24.53,23,12,26.25,27,29,31.46,31,32,23.41,23,19,22.57,22,28,25.04,19,13,26.76,17,16,29.22,31,33,30.57,22,5,33.1,26,29,82.62,63,250,46.69,32,4,26.54,28,30,31.71,32,32,24.88,26,27,21.43,21,14,75.51,23,250,32.82,35,37,40.27,29,16,30.64,17,3,27.08,27,27,128.32,148,250,52.9,15,6,34.83,35,35,58.51,23,7,8.71,5,2,79.65,37,250,48.65,32,250,30.06,20,6,80.36,71,250,34.92,17,6,81.44,28,250,31.23,31,32,32.21,16,16,71.52,56,7,22.49,22,24,51.41,21,3,100.44,64,250,31.17,32,32,55.48,28,3,98.49,97,14,96.82,40,250,33.51,34,34,27.57,27,23,70.18,49,7,32.3,32,32,30.81,30,31,43.28,24,9,26.04,24,28,112,153,5,30.3,30,31,63.75,49,250,32.54,31,31,43.32,27,2,43.45,24,5,62.29,57,27,22.37,15,2,30.77,31,31,34.75,22,9,115.04,122,2,29.53,29,30,38.12,30,20,41.87,38,32,29.63,29,29,19.58,20,18,23.36,23,12,32.73,30,31,30.5,30,31,73.24,24,250,28.67,29,29,39.12,36,36,31.87,31,31,40.62,38,21,33.45,33,33,30.02,30,31,30.94,31,32,43.07,42,12,29.34,29,30,32.77,32,32,31.47,28,30,44.75,35,3,103.48,67,250,32.69,32,33,30.39,25,2,35.66,35,36,30.89,31,31,30.39,30,30,25.87,16,2,34.69,35,34,30.72,31,32,30.6,29,27,28.75,29,29,29.46,28,29,35.73,30,31,23.55,24,26,30.65,31,32,235.66,250,250,28.65,29,29,30.26,30,30,29.79,30,30,30.96,30,30,3.19,3,2,30.1,30,28,32.62,33,33,28.81,29,30,28.55,28,28,31.69,29,29,70.13,31,250,29.54,28,29,28.75,29,30,30.96,26,32,29.95,29,29,29.48,30,31,67.36,34,2,32.91,33,33,36.32,29,29,28.54,27,26,34.07,30,33,28.95,29,31,30.94,29,27,33.31,28,30,48.78,26,10,27.39,28,28,26.56,27,27,30.77,28,29,33.36,33,33,29.8,27,26,61.45,43,250,43.67,28,29,61.66,39,3,30.42,24,21,34.33,26,26,33.43,33,30,31.79,29,32,71.31,36,250,57.42,58,60,31.09,31,32,59.29,27,3,42.47,24,4,32.67,29,29,42.28,28,3,42.8,21,250,42.85,32,2,29.9,26,29,30.75,27,29,62.06,28,250,31.34,28,28,31.26,31,31,38.73,30,6,58.43,46,22,31.56,31,33,58.48,17,250,80.16,69,2,47.35,27,5,34.46,30,29,25.16,22,14,25.61,21,19,44.29,35,34,0.946,0.03412 -VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,67.22,66,65,69.81,32,250,18.59,12,2,51.3,50,53,71.78,69,68,63.41,40,250,55.2,33,4,73.02,63,4,43.27,36,15,87.02,88,249,79.46,76,72,53.98,54,54,37.06,39,4,47.02,38,2,52.89,41,3,57.73,59,58,44.71,24,250,72.39,45,250,43.67,42,2,111.29,101,250,120.51,62,250,55.88,56,57,100.34,65,250,48.21,43,42,87.63,37,4,77.23,28,250,50.88,52,51,48.54,46,50,72.17,36,250,160.72,234,250,227.19,250,250,104.44,60,250,54.47,55,56,68.34,66,66,54.12,51,56,47.98,38,40,39.86,36,9,71.71,42,250,40.07,37,41,56.25,45,47,38.1,37,26,43.62,44,32,43.55,47,53,56.07,56,56,43.06,44,49,38.37,38,25,41.71,32,4,52.47,35,250,48.14,52,58,42.18,23,5,54.09,42,3,108.21,91,250,67.62,52,250,42.87,45,52,59.54,60,61,41.31,44,46,34.74,33,27,79.74,32,250,58.27,63,72,123.71,115,250,43.94,31,27,44.86,47,46,139.51,157,250,71.55,30,250,63.93,64,63,70.38,34,250,4.43,4,4,105.28,56,250,71.2,50,250,48.78,33,11,111.03,88,250,57.88,28,10,98.67,65,250,54.11,54,55,55.6,47,250,94.18,78,250,42.01,41,37,60.95,25,250,120.58,80,250,55.7,57,57,82.9,44,250,155.46,180,250,108.09,53,250,59.69,60,60,44.5,45,49,100.31,70,250,58.94,59,59,54.55,54,54,89.18,44,250,38.98,39,2,127.22,158,6,53.63,54,54,90.95,76,250,56.13,55,53,76.79,64,2,57.35,37,4,77.09,71,2,35.54,16,2,54.91,55,57,53.02,29,9,145.59,176,250,52.12,52,51,79.84,50,250,64.39,57,56,52.18,52,50,31.43,33,39,44.4,44,2,55.26,53,54,52.62,53,53,93.14,44,250,50.31,52,53,55.06,50,49,55.27,54,53,63.16,54,36,61.85,62,61,52.79,53,52,54.16,55,57,91.81,93,15,52.56,52,54,50.31,50,48,51.44,48,49,48.57,30,8,132.14,154,250,58.67,59,60,52.67,45,3,66.77,65,64,54.18,55,55,51.23,51,50,40.42,23,3,67.37,66,61,54.62,55,56,56.82,56,58,52.76,53,53,50.31,49,51,58.12,54,54,42.06,45,51,60.06,60,58,226.35,250,250,46.79,47,47,55.4,56,56,48.32,49,51,55.7,55,57,3.2,2,2,55.85,55,53,58.97,59,59,50.56,51,50,48.6,48,48,49.92,47,48,90.75,55,250,52.67,50,48,50.38,52,52,50.99,45,45,49.17,48,49,53.68,54,56,110,61,250,59.45,60,60,58.12,52,54,53.16,52,53,60.33,56,55,53.13,53,55,52.48,47,45,50.7,48,48,74.43,42,250,49.82,50,52,46.53,48,47,54.26,52,50,61.45,61,61,50.07,48,49,89.49,70,250,66.29,45,250,97.24,67,250,44.58,37,2,55.27,46,250,62.98,62,49,50.75,48,52,109.49,64,250,66.55,39,2,56.18,57,57,71.24,36,250,62.45,43,250,54.98,54,53,68.77,51,250,52.46,31,250,60.95,46,4,45.82,42,46,51.79,48,51,83.84,49,250,47.71,45,48,56.99,57,58,62.47,42,2,92.89,69,250,53.6,52,52,61.1,28,250,118.29,98,250,74.62,49,250,55.93,47,50,41.89,39,3,40.87,38,45,91.12,86,250,0.947,0.03442 -VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,65.78,66,64,69.47,30,250,28.23,22,6,55,55,59,70.07,69,66,76.5,57,250,84.94,48,250,49.85,38,29,50.88,44,24,81.48,78,250,72.16,70,69,55.96,57,58,34.45,35,2,46.4,36,2,39.9,28,17,59.45,61,61,44.52,27,250,74.75,51,250,38.3,30,3,121.99,108,250,122.97,86,250,56.78,58,60,114.18,74,250,51.68,52,2,116.65,67,250,91.73,40,250,53.38,55,56,60.78,51,53,71.45,35,250,163.74,249,250,130.63,128,250,101.69,54,250,55.89,57,59,63.85,64,61,54.04,51,59,52.14,45,44,37.98,37,13,76.37,49,250,42.93,40,42,60.18,50,250,35.83,35,35,41.48,40,56,48.4,51,54,57.28,58,59,43.55,44,54,39.92,40,27,45.81,34,7,45.7,34,8,48.56,53,58,52,26,4,54.14,43,2,123.85,92,250,86.86,77,3,48.03,50,58,60.3,61,61,42.84,46,50,37.97,35,29,81.61,40,250,57.37,62,64,67.07,61,250,40.07,26,28,49.45,52,52,141.04,177,250,68.3,29,9,62.53,63,63,73.88,36,250,14.95,13,2,123.15,63,250,65.82,52,250,64.76,45,17,107.46,101,250,57.68,34,34,102.97,65,250,56.35,57,58,50.03,41,24,104.16,107,3,41.86,42,46,58.04,28,3,132.81,102,250,56.86,58,59,79.21,43,250,196.08,249,250,104.14,53,250,60.33,61,61,47.1,48,48,100.18,73,250,59.99,61,61,56.48,57,58,88.64,40,250,47.93,47,5,117.61,147,10,55.97,57,59,92.01,92,250,58.02,58,59,58.72,35,2,69.02,44,10,98.18,82,250,40.62,33,2,56.57,58,58,60.14,40,6,148.07,140,250,55.31,56,56,73.95,49,16,69.52,62,53,54.47,56,57,72.01,77,104,49.6,42,24,57.34,56,58,55.09,56,58,90.07,45,250,52.19,54,57,62,56,48,58.15,58,58,61.75,53,25,62.7,63,63,55.85,57,58,56.14,58,58,73.48,76,8,55.67,56,58,54.55,55,55,54.83,53,54,73.54,34,5,142.19,161,250,59.54,60,60,49,49,51,65.42,65,65,56.41,58,60,55.54,56,56,37.33,26,3,66.63,67,67,55.97,57,58,58.54,58,58,55.79,57,56,53.12,53,53,60.54,56,57,47.15,49,52,61.26,62,64,229.09,250,250,51.4,52,54,56.8,58,58,50.17,52,52,57.86,58,58,5.68,5,2,57.91,58,59,59.49,60,61,54.41,55,56,53.05,54,55,54.88,53,54,88.61,52,250,55.86,54,56,53.75,56,57,53.55,50,58,54.28,53,53,56.27,58,59,105.48,51,250,60.3,61,61,59.76,54,55,56.23,56,57,60.26,59,56,55.21,56,59,56.27,51,52,54.12,53,55,73.47,38,250,53.19,54,53,49.35,52,53,57.13,55,55,62.07,62,62,54.62,53,54,91.69,74,250,68.86,49,250,91.75,63,250,47.25,38,2,59,52,250,63.52,65,70,53.26,53,54,104.28,55,250,97.8,109,3,57.42,59,60,78.04,43,250,56.19,39,2,59.76,61,64,64.59,44,250,57.57,33,250,66.58,51,3,50.48,49,53,58.02,54,56,90.94,51,250,51.86,50,54,58.22,59,60,68.06,45,250,79.56,65,2,56.74,57,57,71.43,33,250,127.81,110,250,69.68,43,250,58.22,54,59,34.24,29,2,43.15,42,5,95.69,78,3,0.948,0.0343 -VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,71.46,72,71,70.42,34,250,30.4,26,2,62.54,64,66,73.86,75,73,79.04,53,250,127.7,115,250,50.42,38,3,50.13,40,4,103.22,111,19,82.45,83,85,62.31,64,65,43.13,45,3,52.88,45,2,42.42,30,5,65.8,69,74,52.74,31,250,113.99,113,250,51.46,54,31,122.22,115,250,118,83,250,63.33,65,66,122.98,85,250,55.75,57,59,114.56,55,250,76.33,28,250,60.14,62,62,58.45,56,59,79.91,45,250,156.45,196,250,195.57,248,250,119.73,97,250,62.12,64,65,68.87,69,65,60.04,58,60,57.61,53,58,46.41,43,5,76.29,53,250,50.71,50,57,65.38,57,58,39.38,39,43,46.9,47,31,55.25,59,63,63.39,65,66,45.06,46,41,45.19,44,38,50.29,35,15,46.65,32,2,54.92,60,68,51.33,24,4,59.52,50,66,125.25,99,250,66.06,44,2,52.42,55,62,66.87,68,69,52.16,56,59,43.99,43,65,87.33,47,250,63.07,68,72,120.01,106,250,47.59,27,3,55.49,58,60,149.35,233,250,84.83,37,12,68.02,69,69,81.17,48,250,16.92,11,2,132.18,129,250,74.76,59,250,67.86,47,19,128.74,126,250,52.03,34,250,101.61,62,250,62.94,64,65,57.39,53,50,84.55,74,6,47.68,47,41,67.57,42,4,130.53,94,250,63.18,65,66,97.55,65,250,161.24,175,250,104.77,64,250,66.86,68,68,56.9,62,71,104.67,76,250,66.31,67,68,63.08,64,66,68.4,37,250,45.52,46,9,93.33,110,5,62.5,64,65,99.83,90,250,65.16,65,65,49.76,18,3,58.16,35,6,95.87,70,250,28.25,18,4,63.05,65,66,63.64,42,30,137.09,143,250,62.48,64,65,79.33,50,20,77.37,71,56,60.73,62,64,58.15,61,72,61.81,56,23,64.2,63,64,61.32,63,65,98.65,62,250,58.48,61,64,76.38,64,57,64.72,65,65,67.22,53,3,69.36,70,70,62.8,64,65,61.63,64,65,99.52,109,9,62.2,63,64,61.36,62,62,61.13,60,62,77.88,44,5,123.73,80,250,65.71,66,66,65.13,60,2,71.04,71,68,63.4,65,68,62.16,63,63,39.34,20,10,77.33,75,72,61.73,64,66,64.19,64,64,63.66,65,64,59.89,61,63,66.72,63,65,52.3,58,64,68.6,70,72,233.83,250,250,59.3,60,60,62.83,65,67,55.41,58,62,64.44,66,67,9.02,9,15,65.69,66,68,65.94,67,68,61.64,63,64,59.68,61,61,61.63,60,60,83.71,40,250,63,62,62,60.99,63,63,56.92,54,62,61.11,61,61,62.54,65,68,101.94,47,250,66.79,68,68,66.57,61,250,91.21,96,100,68.52,67,68,61.74,63,62,61.79,60,64,59.89,59,58,75.88,39,250,61.29,62,65,56.47,60,62,65.02,63,63,68.77,69,69,60.38,60,62,97.33,81,250,66.98,52,250,107.54,83,250,45.09,39,2,63.14,58,250,69.72,73,76,60.29,60,63,92.73,33,250,162.78,195,250,63.51,65,67,83.87,51,250,65.98,41,250,64.58,65,67,67.55,54,8,70.37,43,250,66.77,52,2,52.44,53,58,62.53,59,60,94.4,59,250,60.47,59,62,64.77,66,67,72.75,49,250,103.52,77,250,64.35,65,66,68.24,44,250,138.22,143,250,82.66,43,250,66.62,60,63,46.76,37,2,45.91,43,6,81.96,68,3,0.95,0.03436 -VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,58.7,59,58,75.63,38,250,22.3,17,6,52.65,53,56,58.92,59,59,64.84,37,2,75.03,47,5,45.23,35,2,38.31,29,19,80,81,2,66.2,67,71,51.36,52,53,32.83,34,3,43.62,34,2,49.1,30,3,52.86,54,53,47.21,27,3,66.31,46,250,45.18,44,2,107.52,89,250,115.19,63,250,51.77,53,54,116.34,79,250,46.08,47,53,115.86,59,250,80.82,30,250,50.98,53,51,58.63,49,48,67.61,33,250,162.65,249,250,219.12,250,250,106.97,74,250,51.2,53,54,57.56,56,56,50.81,47,55,49.18,42,41,34.87,30,2,72.44,45,250,42.81,41,44,57.46,47,49,30.66,29,26,37.76,34,22,45.88,50,54,52.21,53,54,38.58,39,34,34.78,35,21,43.92,34,31,47.65,32,30,46.31,51,54,38.43,22,2,48.78,39,7,94.55,73,5,55.07,36,2,40.7,42,49,54.76,56,56,41.02,43,47,33.25,30,21,76.77,34,250,52.45,55,59,60.66,54,11,47.18,35,6,46.05,49,51,139.88,199,250,72.23,18,15,56.07,57,58,72.07,36,250,6.44,3,2,116.39,52,250,68.94,52,250,43.75,29,21,107.86,93,250,51,30,250,86.4,35,250,51.7,52,53,43.91,34,36,102.04,87,4,38.66,39,45,58.47,30,6,116.52,79,250,52.11,53,53,77.18,45,2,117.97,120,250,99.9,50,250,54.88,55,55,44.35,45,54,102.04,71,250,54.46,55,55,51.84,53,54,65.52,33,2,72.28,86,3,138.15,170,250,51.55,53,54,85.5,72,250,54.01,53,54,62.21,38,2,65.97,42,5,90.66,65,250,37.83,28,5,51.76,53,53,55.23,33,3,140.22,177,250,51.12,52,53,65.04,32,11,65.73,59,51,49.89,51,53,50.49,53,71,39.1,40,26,53.47,52,53,50.65,51,53,89.28,43,250,47.97,50,52,53.38,53,59,53.73,53,53,59.4,53,6,56.94,57,57,51.19,52,52,51.21,53,53,89.28,98,10,51.27,52,53,51.26,51,52,51.23,49,51,59.93,34,9,124.38,139,250,53.86,54,54,54.68,48,2,58.41,58,59,52.13,53,54,51.26,52,53,37.42,24,2,58.77,59,58,51.12,52,53,53.87,53,53,51.29,52,54,49.64,49,50,55.88,52,55,44.89,48,50,55.59,57,57,226.67,250,250,48.96,50,51,52.05,53,53,46.15,48,50,53.3,54,55,3.08,3,3,53.94,54,54,54.09,55,55,50.84,52,52,50.02,51,51,51.61,50,50,78.92,37,250,52.56,51,50,50.08,52,52,47.89,44,52,50.04,50,53,51.54,53,54,100.01,48,250,54.8,55,55,56.14,50,52,51.32,52,52,57.71,54,55,51.31,52,52,51.15,49,52,53.6,51,52,74.5,36,250,50.01,51,52,46.66,49,51,54.26,52,52,56.13,56,56,51.38,50,50,90.72,65,250,60.73,41,250,94.38,69,250,41.92,37,2,54.01,46,250,53.95,57,60,49.19,47,52,93.69,46,250,42.67,31,29,52.19,53,54,76.03,42,250,60.04,39,2,54.14,53,53,67.5,53,250,67.49,40,250,49.13,28,2,47.61,45,48,53.65,51,52,81.7,43,250,51.04,49,50,52.97,54,55,64.22,55,2,73.72,51,2,53.24,53,53,60.85,37,250,115.06,105,250,72.23,39,250,51.28,50,56,35.25,30,2,38.62,35,2,88.14,68,30,0.948,0.03428 -VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,48.85,49,49,67.09,31,250,22.73,19,6,42.55,44,44,48.18,48,42,54.01,37,10,84.24,50,3,47.79,37,2,35.53,28,13,68.37,53,3,48.94,49,48,43.61,44,45,29.96,31,2,39.98,32,2,33.98,28,5,45.71,48,50,43.61,22,5,64.74,38,250,31.56,28,15,92.11,78,250,118.76,80,250,44.34,45,46,93.92,56,250,38.78,39,45,54.08,37,3,83.76,25,250,43.02,44,47,54.73,41,41,64.88,28,250,130.56,164,42,192.92,245,250,103.26,68,250,43.67,45,45,48.51,48,45,43.88,41,45,44.43,35,31,30.09,30,5,65.72,34,250,35.67,33,37,50.6,40,43,27.72,26,26,32.86,32,31,37.58,40,41,44.65,45,46,34.15,34,36,31.19,31,27,32.55,27,4,34.43,22,19,36.36,39,43,37.65,21,5,44.02,34,43,103.79,85,250,86.76,94,9,36.42,38,16,46.49,47,46,35.43,37,39,28.12,27,28,75.32,30,250,44.75,47,48,66.57,48,6,32.11,21,20,40.58,43,44,138.48,173,250,66.58,21,5,46.71,47,47,67.13,29,250,5.41,3,2,98.43,54,250,57.53,39,250,42.93,26,11,90.34,84,250,47.37,25,8,84.9,50,250,43.98,44,45,57.66,51,62,51.67,40,8,31.56,31,28,54.17,24,4,109.3,64,250,44.28,45,46,59.34,36,5,142.67,147,250,94.65,46,250,46.44,47,47,38.62,38,36,76.62,58,30,46.16,46,47,44.34,44,45,47.8,26,5,47.41,41,2,131.85,162,250,43.96,44,45,84.24,70,250,46.07,45,46,43.91,24,2,54.09,27,3,51.26,49,32,26.04,18,4,44.23,45,46,44.8,29,2,85.86,81,4,43.91,44,44,44.73,33,2,53.96,49,42,42.08,43,44,23,22,21,32.96,33,44,45.91,44,44,43.01,44,45,79.94,34,250,40.93,42,44,60.14,46,41,45.7,45,45,50.17,38,4,47.99,48,47,44,44,45,43.52,44,44,79.24,82,2,43.87,44,44,43.61,43,43,44.11,41,41,44.97,33,4,127.89,120,250,45.84,46,46,49.36,42,43,49.15,48,47,44.48,45,46,43.49,44,44,27.38,15,2,49.72,50,51,43.58,44,46,46.09,45,45,43.88,44,43,42.58,42,43,48.85,45,47,39.09,37,39,47.67,48,48,228.55,250,250,40.93,41,42,44.11,45,45,38.93,39,43,44.34,45,45,7.42,6,4,46.33,46,45,45.98,46,47,43.24,44,44,41.99,43,44,43.8,42,42,79.07,40,250,44.69,43,43,42.05,43,44,42.49,38,42,43.07,43,45,43.94,45,46,90.26,46,250,46.46,47,47,47.65,41,44,46.09,46,47,50.27,47,47,43.64,44,43,45.18,42,41,45.11,42,44,66.35,36,250,42.89,43,44,40.56,42,42,45.78,43,41,47.51,48,47,44.16,42,45,79.46,60,250,56.75,39,3,83.2,60,250,38.93,30,28,47.79,40,42,47.96,49,48,42.77,41,40,99.22,51,250,45.2,30,31,44.45,45,46,69.27,34,250,47.31,33,2,46.48,47,48,50.99,37,34,47.39,27,250,47.8,27,2,39.98,38,40,45.68,42,43,84.57,43,250,43.8,41,41,45.15,46,46,61.48,46,3,68.24,53,250,45.45,45,47,59.44,32,250,111.29,91,250,56.86,35,11,48.97,42,45,27.36,19,6,35.31,33,40,70.67,55,2,0.946,0.03426 -VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,52.88,53,52,72.79,34,250,27.4,23,21,46.52,47,47,55.14,53,53,54.95,37,4,44.94,49,2,57.24,49,46,39.94,33,9,81.6,73,250,58.89,59,59,46.95,48,49,30.12,30,2,43.8,37,3,38.62,35,6,47.03,48,50,38.66,23,250,70.89,44,250,40.09,37,2,119.61,108,250,103.98,61,250,47.21,48,50,118.95,87,250,47.52,45,46,96.95,52,250,75.26,30,250,45.6,47,50,54.73,45,44,74.44,35,250,153.14,205,250,171.15,170,250,94.84,52,250,46.78,48,48,48.94,49,51,47.39,43,43,45.47,39,3,52.09,43,4,65.45,40,250,38.78,36,42,53.64,43,40,28.61,27,18,34.95,34,50,39.58,43,45,47.76,48,49,35.94,36,31,32.68,32,33,37.97,33,22,39.23,25,21,41.71,46,50,43.6,27,6,46.03,38,39,103.68,91,250,68.73,54,2,38.9,41,51,49.59,50,51,40.7,43,44,31.86,30,23,77.25,31,250,46.99,51,51,74.88,41,250,38.55,19,3,43.6,45,46,136.7,123,250,80.7,40,250,50.77,51,51,73.37,36,250,14.5,14,6,98.13,89,250,62.75,47,250,41.23,34,7,105.15,87,250,56.87,31,19,87.18,54,250,47.41,48,48,47.15,43,46,81.68,55,6,33.64,32,26,57.74,28,250,114.18,79,250,47.44,49,50,77.21,39,3,117.85,106,250,106.28,47,250,50,50,50,41.38,42,44,97.74,78,250,49.54,50,50,47.44,48,49,71.53,37,250,42.46,43,2,102.98,140,14,47.09,48,48,96.16,87,250,49.58,48,49,50.58,27,5,51.46,34,4,73.48,63,52,29.99,22,2,47.08,48,49,67.45,47,10,123.72,121,250,47.05,47,49,50.09,39,8,58.57,53,43,45.76,46,47,49.95,57,63,34.76,34,38,49.09,47,48,46.79,47,48,84.2,34,250,44,46,48,54.77,50,21,49.24,48,49,46.77,45,51,51.4,51,51,47.01,48,47,46.73,48,49,65.95,71,17,46.97,47,48,46.47,47,47,47.41,45,47,81.77,42,250,131.77,146,250,49.37,49,48,48.32,45,2,53.13,53,52,47.65,48,49,47.33,47,48,30.26,17,3,53.55,54,53,46.42,48,48,50.08,48,49,47.05,48,49,46.33,46,47,52.08,48,48,42.27,44,46,50.36,51,52,233.69,250,250,44.8,45,45,47.41,48,50,42.31,43,47,47.83,48,48,3.51,3,2,49.18,49,50,49.09,50,50,46.41,47,47,45.74,46,48,47.76,46,46,81.45,38,250,46.96,46,49,46.32,48,50,46.48,42,45,45.48,45,45,46.9,48,50,92.64,41,250,49.75,50,50,51.5,45,46,48.14,48,49,54.49,50,49,46.32,47,47,49.91,45,45,49.78,45,46,65.81,30,250,46.54,47,46,43.22,45,45,49.74,48,48,50.98,51,52,46.86,45,45,91.5,72,250,57.37,40,250,86.49,56,250,42.06,34,23,51,42,43,50.5,51,53,45.87,44,44,87.36,45,250,80.31,80,4,47.54,49,49,71.52,39,250,55.98,40,2,50.13,50,50,61.06,42,6,51.66,29,250,54.22,44,3,43.02,40,42,47.06,44,47,80.96,44,250,47.21,44,44,48.23,49,50,61.24,43,9,84.64,56,6,48.44,48,46,70.99,29,250,101.36,75,250,71.25,33,250,50.64,46,45,33.94,24,6,37.59,34,19,67.79,56,5,0.948,0.03421 -VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,65.99,65,63,70.52,31,250,21.1,14,3,51.65,53,56,71.4,69,68,59.17,39,3,86.06,75,2,48.55,31,10,45.6,40,8,87.67,71,250,80.02,79,82,53.91,55,56,37.89,39,2,46.17,36,2,47.26,31,2,57.68,59,59,42.15,24,9,75.84,49,250,49.91,40,3,112.08,99,250,121.22,96,250,55.71,57,57,85.78,56,30,48.86,46,54,125.79,89,250,85.34,34,250,51.76,53,54,50.68,47,46,73.56,35,250,148.61,189,250,200.73,227,250,100.7,50,250,53.83,55,56,63.47,61,54,50.43,47,52,50.98,43,45,34.67,31,2,66.78,40,250,41.56,39,42,58.51,48,250,33.1,33,34,41.97,40,22,44.58,48,48,55.67,56,56,42.16,42,31,37.66,37,34,39.32,31,6,45.15,27,4,48.51,52,56,50.92,25,3,53.22,46,55,112.89,82,250,77.49,65,3,43.94,45,58,59.32,60,59,42.19,44,47,36.48,33,25,80.84,32,250,56.96,63,70,73.31,66,8,38.91,23,21,46.61,49,48,145.45,239,250,78.96,31,250,62.24,62,61,78.91,41,250,5.71,4,2,111.19,92,250,68.39,53,250,45.64,31,14,117.26,116,250,48.44,29,9,90.83,45,250,54.3,55,57,39.76,26,16,68.53,57,6,39.95,40,40,62.01,32,2,123.7,90,250,55.63,57,57,77.48,37,250,132.59,139,250,105.05,50,250,59.25,59,58,47.3,47,52,95.76,67,250,58.66,59,59,54.6,55,57,55.7,32,2,38.69,41,4,138.37,180,250,54.25,55,55,82.42,53,250,56.73,56,57,49.44,20,2,55.41,33,8,116.39,108,250,27.09,15,2,54.66,56,57,64.63,40,8,128.84,140,250,53.17,53,54,64.65,45,11,64.67,60,55,52.76,53,54,34.04,35,16,43.64,44,45,55.68,54,55,52.71,53,55,91.27,45,250,50.39,52,55,38.93,36,33,56.29,56,55,67.35,57,18,61.93,62,61,54.01,55,55,54.93,56,57,70.56,76,25,53.54,54,54,51.19,51,52,52.94,50,50,50.2,25,3,128.06,141,250,57.95,58,58,53.25,48,2,66.07,65,63,55.11,56,57,52.65,53,54,36.55,22,5,67.41,67,64,54.38,55,57,55.39,55,57,53.78,55,55,51.16,51,54,59.59,55,54,44.54,48,54,60.41,61,61,229.27,250,250,48.62,49,51,55.01,56,57,46.45,48,50,56.6,57,59,5.42,5,5,56.74,56,56,58.41,59,59,52.47,53,52,50.26,51,52,51.63,49,49,81.47,43,250,53.58,52,53,50.94,52,53,53.01,48,53,50.62,50,51,54.19,56,55,86.11,42,250,58.98,59,60,57.76,52,55,54.4,54,57,60.66,57,55,52.84,54,52,51.77,48,47,52.51,49,49,65.96,32,250,50.88,51,49,47.6,49,51,55.1,53,54,61.38,62,61,52.52,50,51,90.37,66,250,60.18,40,250,92.68,68,250,34.72,31,3,55.27,48,51,65.4,66,77,52.77,51,51,94.83,39,250,59.65,53,53,55.9,57,58,75.73,40,250,59.94,37,8,59.26,59,54,61.17,43,250,74.97,42,250,61.35,50,6,45.29,44,46,55.42,52,49,88.25,47,250,49.75,48,47,57.1,58,58,55.72,36,6,81.87,63,250,54.91,55,56,72.91,31,250,108.27,87,250,70.13,37,250,54.81,47,45,34.85,31,4,40.94,40,56,75.77,61,5,0.946,0.03436 -VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,62.29,62,60,72.81,34,250,24.12,22,27,50.73,51,51,65.17,63,58,66.38,38,250,80.82,50,250,49.52,41,36,41.52,34,2,70.18,61,250,73.48,73,79,51.53,52,54,35.17,37,2,46.69,40,3,46.46,36,2,54.25,56,58,39.61,21,14,74.46,46,250,42.02,36,2,101.5,96,250,124.07,102,250,52.96,54,55,105.3,68,250,48.36,49,51,110.4,58,250,87.86,26,250,49.57,51,53,47.69,46,46,68.35,32,250,166.92,249,250,168.98,189,207,93.2,45,250,51.55,53,52,61.02,60,56,48.11,46,53,47.48,39,42,31.65,28,4,69.62,42,250,39.06,37,44,55.94,46,46,32.72,32,23,37.88,36,23,42.76,47,51,52.91,53,54,39.99,41,48,36.88,37,49,44.85,31,5,36.92,25,25,46.23,51,54,38.63,16,3,48.43,41,45,116.27,86,250,53.49,33,4,41.56,44,51,56.3,57,57,41.55,45,51,34.66,34,24,77.24,32,250,56.28,60,62,55.05,45,7,40.18,26,8,44.19,46,47,137.2,145,250,65.57,23,14,59.05,59,58,72.42,36,250,13.01,10,2,91.55,70,250,63.88,44,250,54.01,37,18,107.19,96,250,48.03,29,2,95.92,50,250,51.9,53,53,42.07,29,9,113.56,96,250,40.43,39,32,58.21,25,12,131.91,122,250,53.08,54,55,82.7,45,250,133.83,121,250,105.62,59,250,56.24,57,57,43.02,44,53,88.18,64,250,55.77,56,56,52.03,52,53,62.34,32,24,38.84,43,3,141.15,183,250,51.58,52,53,89.98,74,250,54.21,53,54,55,35,5,54.93,33,2,77.7,44,250,34.23,27,9,52.16,53,53,51.75,32,11,148.79,193,250,50.75,51,51,67.76,39,4,61.35,54,43,50.03,51,52,40.92,44,61,40.17,41,50,52.84,51,52,50.18,51,53,87.2,41,250,47.98,50,51,36.1,37,44,53.33,53,53,64.39,51,3,58.7,59,58,51.24,52,54,51.73,53,52,120.23,136,250,51.07,51,51,49.55,49,49,50.47,48,48,77.13,34,250,123.68,116,250,55.05,55,55,47.83,44,2,62.17,61,60,51.63,53,54,50.24,50,50,33.13,22,6,62.92,63,62,51.33,53,53,53.73,53,53,51.24,52,53,48.89,48,50,56.33,52,54,39.39,43,49,57.72,58,59,227.64,250,250,47.08,48,47,52.74,54,55,46.13,47,51,54.1,54,53,5.56,4,2,54.26,54,53,55.44,56,56,49.86,51,52,48.48,49,48,49.76,48,48,85.51,50,250,50.08,49,50,49.08,50,49,48.8,44,48,49.46,48,49,52.01,53,55,94.12,46,250,56.08,56,56,54.59,49,49,52.14,52,54,58.43,56,55,50.69,52,52,50.75,47,48,50.27,49,51,74.76,41,250,49.1,49,49,45.31,47,53,53.4,51,49,58.01,58,58,49.94,48,51,84.54,65,250,62.68,45,250,92.72,71,250,38.76,30,2,54.3,46,250,63.39,65,65,48.96,48,52,93.58,49,250,98.93,115,2,53.15,54,55,74.63,36,250,48.17,32,3,54.66,55,56,58.25,45,2,55.65,30,250,60.8,51,4,44.9,42,44,49.53,46,45,80.24,45,250,49.21,46,47,54.38,55,55,56.47,37,4,86.3,57,250,53.91,54,60,59.62,25,250,115.18,96,250,78.26,40,6,43.49,43,19,26.28,24,5,39.41,36,29,94.09,71,10,0.948,0.0343 -VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,57.22,57,57,63.95,32,250,23.36,18,5,46.62,47,54,60.28,60,58,55.3,36,2,37.02,38,3,49.84,33,20,36.71,28,13,71.46,59,250,66.41,66,65,46.56,47,48,29.16,31,2,41.45,35,2,40.34,24,8,51.05,52,52,44.79,26,250,61.71,40,250,36.43,34,2,123.36,126,250,112.6,77,250,48.26,49,49,112.66,77,250,41.69,40,43,108.15,82,250,78.72,34,250,43.5,44,42,41.43,39,38,69.62,29,250,160.53,246,250,200.41,223,250,99.52,61,250,46.2,47,48,54.61,53,51,45.5,41,43,43.49,35,35,32.18,31,6,63.73,37,250,36.56,33,34,52.89,42,48,32.72,33,33,38.3,35,18,39.45,43,46,48.05,48,48,39.01,38,29,32.87,33,40,34.09,27,25,36.77,25,23,42.62,45,54,42.17,23,4,42.29,37,41,99.39,82,250,56.75,40,250,38.83,40,44,51.46,52,52,36.07,38,38,31.96,30,17,77.55,30,250,47.02,51,56,50.81,38,21,40.98,22,2,38.42,40,39,131.58,111,250,62.15,20,2,53.94,54,54,69.57,34,250,4.02,3,2,104.79,50,250,55.22,39,250,59.91,45,6,99.28,98,250,50,25,24,86.93,60,250,47.08,47,48,44.72,33,13,61.26,53,3,35.9,35,20,57.04,23,2,119.62,90,250,48,49,49,74.38,38,2,92.96,64,250,99.26,48,250,51.23,51,51,38.13,38,44,96.93,69,250,50.85,51,51,47.32,48,48,75.27,36,250,35.8,33,2,128.78,164,250,46.72,47,47,75,66,250,48.86,48,47,55.13,26,2,45.85,28,6,88.62,82,57,26.92,16,2,47.27,48,49,44.65,36,13,132.85,108,250,45.56,46,46,79.54,41,250,55.92,51,43,45,45,45,31.6,28,21,31.43,32,24,48.05,46,46,45.88,46,46,88.17,36,250,43.4,45,47,57.25,44,31,48.6,48,49,50.56,46,29,53.54,53,53,46,46,46,47.58,48,50,76.92,72,5,46.36,46,47,43.55,44,46,45.95,43,44,82.8,36,250,126.15,138,250,49.85,50,49,52.51,44,2,57.16,56,56,46.88,48,49,44.92,45,46,46.43,30,3,58.35,58,55,46.94,48,49,49.29,48,49,46.15,47,47,44.54,44,45,50.82,47,46,36.84,40,43,53.08,54,56,224.92,250,250,41.7,42,41,47.76,48,48,41.47,42,45,48.72,49,50,5.45,4,3,49,48,47,50.45,51,51,44.86,45,46,43.18,43,43,44.76,42,44,79.15,36,250,47.15,45,45,44.33,45,44,45.14,40,41,42.07,42,39,46.58,48,49,88.45,41,250,51.03,51,51,51.14,44,47,46.74,47,49,51.97,50,49,45.09,45,46,44.39,41,44,47.01,43,44,71.45,33,250,43.51,44,45,41.48,43,43,48.62,46,46,52.92,53,52,44.38,42,42,80.59,53,250,60.13,40,250,87.05,56,250,35.72,29,2,50.6,42,46,56.11,57,62,44.62,43,45,86.82,34,250,62.33,60,58,48.25,49,49,68.66,34,250,50.56,35,6,49.33,48,47,53.48,40,250,60.39,32,250,53.99,28,2,41.16,38,44,46.81,44,43,75.08,39,250,43.27,40,43,49.47,50,50,53.87,42,2,76.13,47,250,47.79,47,47,57.15,32,250,106.96,89,250,58.63,32,250,48.64,44,42,28.34,26,2,33.97,31,41,75.89,55,3,0.947,0.03431 -VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,71.7,71,70,75.93,45,250,27.92,17,11,57.49,60,67,74.75,74,81,70.05,49,250,84.16,85,5,58.09,47,2,54.91,47,27,81.58,78,250,81.53,81,78,60.18,61,62,36.53,37,2,48.74,40,3,42.16,35,2,62.76,65,68,47.71,29,250,87.81,55,250,48.98,46,2,120.83,119,250,132.18,112,250,61.37,63,64,109.76,78,250,53.26,53,56,113.52,65,250,74.23,45,250,57.72,59,60,59.56,55,57,75.53,35,250,165.67,241,250,168.17,178,250,113.31,78,250,60.37,62,64,70.98,70,64,57.25,54,59,52.17,46,250,39.22,35,2,77.43,49,250,46.01,45,49,63.73,55,56,38.29,36,35,45.18,45,68,51.19,57,60,61.91,63,64,45.88,45,42,44.19,44,43,41.77,35,35,52.32,36,2,53.57,59,60,57.83,30,3,56.24,43,28,129.54,114,250,58.42,43,2,48.07,50,58,65.58,67,67,47.62,51,53,42.22,42,57,80.87,37,250,61.68,69,75,87.5,69,2,43.43,32,2,51.68,54,53,131.62,141,250,82.98,30,250,68.15,69,69,76.22,40,250,5.34,5,2,111.22,76,250,72.13,54,250,52.8,35,18,124.96,132,250,56.59,36,13,100.63,73,250,60.76,62,63,53.55,53,57,89.42,63,250,44.68,44,47,65.85,34,250,129.22,105,250,61.73,63,65,78.16,45,250,197.53,249,250,111.3,64,250,65.43,66,66,49.19,51,55,100.97,73,250,64.93,66,66,60.86,62,62,75.05,42,250,40.68,44,3,154.41,238,250,60.2,61,63,93.49,72,250,62.54,62,63,66.78,36,250,62.76,37,11,153.25,153,250,40.09,27,4,60.9,62,63,54.54,35,5,132.69,145,250,59.37,60,61,67.46,46,14,73.28,67,65,58.58,60,62,47.08,38,23,55.34,55,2,61.2,60,62,59.16,61,62,86.89,41,250,56.32,59,62,87.1,54,13,62.33,62,62,67.53,58,2,68.1,68,68,60.76,62,61,60.46,62,63,94.54,99,2,59.95,61,63,58.41,58,58,58.92,57,60,77.41,39,2,136.75,159,250,64.36,65,64,54.16,56,60,71.61,71,69,60.78,62,64,59.04,60,61,40.46,23,7,72.47,72,69,60.45,62,63,62.62,62,63,60.5,61,63,56.82,57,59,64.08,61,64,49.73,55,58,66.54,68,67,227.67,250,250,55.38,56,56,61.1,63,63,53.41,56,61,62.85,63,61,3.25,3,2,63.35,63,63,64.55,66,66,58.58,60,60,57.15,58,60,58.12,57,59,92.53,51,250,59.7,58,60,58.25,60,61,56.22,53,59,57.06,56,55,59.93,62,66,102.6,55,250,65.42,66,67,63.32,58,250,59.95,60,63,68.14,65,67,58.79,60,59,58.42,56,57,57.3,56,60,69.52,39,250,57.12,58,60,52.78,55,54,61.5,60,60,67.31,68,68,57.94,57,59,103.28,75,250,65.99,45,250,105.92,88,250,40.7,35,4,61.06,55,250,68.61,71,76,57.24,56,58,101.12,44,250,104.18,118,250,61.97,63,64,80.11,43,250,65.51,45,250,62.41,63,68,62.65,46,2,65.81,39,250,67.31,53,2,52.4,50,56,59.27,56,60,90.95,52,250,57.07,55,52,62.95,64,66,69.17,50,3,111.79,84,250,61.95,62,62,80.63,45,250,119.58,113,250,64.84,39,250,59.77,56,58,46.04,36,4,47.26,45,2,93.9,74,250,0.95,0.03433 -VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,60.55,60,59,79.83,36,250,28.49,23,4,46.43,47,48,67.47,65,62,66.18,39,3,110.02,81,250,61.86,34,2,43.08,37,2,93.65,92,250,67.63,66,63,48.98,49,49,35.5,37,2,44.9,38,3,61.71,29,2,53.44,55,63,51.77,27,250,72.24,44,250,53.47,35,2,131.58,134,250,107.46,73,250,50.85,51,53,115.29,71,250,40.18,37,43,116.49,94,250,74.18,23,250,44.29,45,44,47.78,42,43,75.29,37,250,150.34,202,250,218.27,249,250,109.05,69,250,49.5,50,51,62.27,61,57,48.21,44,47,40.96,31,2,61.65,44,5,69.64,43,42,37.19,34,36,53.48,42,250,34.5,34,37,41.17,41,21,41.66,45,49,51.17,51,50,40.43,42,49,37.3,38,47,45.15,32,4,49.46,35,34,46.52,50,55,53.79,24,2,51.23,39,24,114.48,78,250,56.97,38,250,41.09,42,48,53.18,54,54,39.48,41,40,33.85,33,22,77.13,32,250,57.79,60,60,106.07,103,250,50.23,27,250,39.35,41,43,143.37,156,250,81.71,39,250,59.34,59,58,72.06,32,250,4,4,4,97.23,56,250,68.88,45,250,50.83,36,28,122.81,112,250,52.56,30,250,120.14,69,250,50.13,50,51,57.51,45,53,71.81,59,32,40.02,40,43,64.35,33,250,119.9,89,250,51.93,53,54,99.2,51,250,142.6,169,250,99.36,54,250,55.18,55,56,43.4,43,45,101.84,82,250,53.54,54,53,49.67,49,50,65.81,43,41,39.14,42,51,129.26,173,250,48.66,49,48,88.42,69,250,51.3,50,50,69.81,45,3,66.59,38,6,90.3,71,250,30.61,18,3,50.18,51,50,74.79,52,27,145.15,186,250,46.37,46,46,90.5,52,250,60.71,56,54,48.52,49,49,56.66,58,72,42.91,45,43,51.36,48,48,49.11,49,51,90.72,45,250,46.19,48,50,55.39,48,43,50.51,49,48,79.95,53,5,56.01,56,55,47.86,48,48,50.88,51,51,100.53,110,10,47.59,47,48,48.78,48,47,49.22,45,43,93.91,50,250,124.64,110,250,53.54,54,56,53.34,40,37,61.32,61,62,49.39,50,49,47.4,47,48,51.97,34,2,60.42,60,58,49.93,51,52,50.45,49,51,46.8,47,46,47.52,46,48,53.73,48,47,36.63,37,35,52.37,53,56,229.64,250,250,43.7,44,44,50.36,51,53,47.8,48,49,51.52,51,49,,2,2,49.48,49,47,54.05,55,54,45.87,46,44,44.59,45,44,47.06,44,44,92.25,48,250,47.69,45,46,45.33,47,47,49.26,43,51,44.74,43,44,47.4,48,50,101.1,64,250,54.87,55,54,55.96,49,51,48.03,46,47,54.53,51,53,48.18,47,45,46.36,42,45,45.64,41,40,83.85,48,250,43.05,44,46,42.59,42,39,48.03,45,45,55.99,56,57,46.23,43,44,96.8,83,250,69.95,46,250,104.33,94,250,42.49,34,5,49.66,41,43,59.47,59,64,47.61,45,47,118.57,71,250,76.01,67,64,51.26,52,52,76.31,39,250,61.06,38,250,52.31,51,53,76.71,56,250,65.71,36,250,58.77,33,13,42.4,38,38,45.37,42,42,85.37,47,250,44.64,40,39,51.87,52,52,74.17,48,250,83.25,69,250,47.72,47,47,75.88,54,250,116.89,104,250,74.59,49,250,48.35,43,38,41.94,36,8,36.28,34,39,91.07,89,250,0.946,0.03425 -VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,43.14,43,43,64.94,26,250,25.61,20,8,38.37,39,40,42.5,43,44,54.12,29,21,47.25,52,5,53.01,37,35,32.07,27,2,62.26,53,250,43.94,44,41,38.65,39,40,26.14,26,2,39.34,33,2,32.43,21,2,40.13,41,39,40.72,20,250,61.33,36,250,33.49,30,3,85.17,70,250,112.89,84,250,39.16,40,40,88.68,54,30,35.58,34,38,83.27,41,4,68.59,23,250,37.56,38,40,37.75,34,34,54.06,24,2,117.26,145,38,149.11,162,167,92.3,60,250,38.38,39,40,41.56,41,36,39.94,36,39,39.81,31,35,27.66,26,3,60.08,33,250,32.16,29,34,47.49,35,36,23.31,22,17,30.5,29,22,34.52,37,38,39.17,39,40,29.23,28,18,27.61,27,20,29.68,25,20,33.19,22,14,32.98,35,40,33.38,16,4,39.27,30,19,87.23,68,250,54.99,38,250,30.94,32,41,41.01,42,42,31.58,32,31,25.84,25,21,72.45,26,250,38.8,41,42,47.63,35,3,33.32,20,3,35.65,36,34,130.52,128,250,68.37,23,13,41.39,41,42,64.98,26,250,5.14,4,2,94.41,73,250,52.18,32,250,39.57,19,13,93.85,91,250,49,28,5,92.88,48,250,38.73,39,40,40.22,33,33,57.24,48,2,28.83,28,24,52.87,22,2,99.1,54,250,39.1,40,41,77.75,43,10,131.25,135,250,96.34,39,250,41.12,41,41,31.73,32,38,74.36,48,36,40.87,41,41,39.18,39,40,52.04,27,2,33.01,31,2,128.53,152,250,38.83,39,41,74.88,56,250,40.77,40,40,40.75,28,2,49.68,26,5,49.45,41,2,21.34,12,2,39.05,40,40,38.71,24,3,129.91,144,250,38.53,39,39,44.15,30,7,49.02,45,39,37.1,38,39,73.07,83,2,29.64,30,33,40.82,39,38,38.26,38,40,79.72,30,250,36.18,37,38,29.64,31,40,40.63,40,40,49.71,38,2,42.55,42,42,38.74,39,39,38.56,39,39,95.7,106,5,38.99,39,38,38.05,38,38,39.45,36,39,52.15,25,3,121.61,133,250,40.46,40,40,41.23,34,42,43.22,43,42,39.05,39,39,38.72,39,38,27.63,17,3,43.77,44,44,38.45,39,40,40.79,40,41,39.04,39,39,38.09,37,38,44.43,39,39,31.05,35,37,42.19,43,43,228.5,250,250,36.32,37,38,39.22,40,40,34.69,35,36,39.69,40,40,4.4,3,3,40.92,41,42,40.49,41,41,38.2,39,40,37.23,37,37,39.35,37,36,75.44,35,250,39.49,38,38,37.67,39,40,37.35,33,38,38.22,37,36,38.44,39,40,80.23,37,250,41.05,41,41,43.72,37,38,40.3,40,40,44.54,41,40,38.57,39,39,39.61,37,39,39.38,36,38,60.66,31,250,37.77,38,39,35.49,36,41,41.12,38,36,42.04,42,42,38.71,36,37,72.65,53,250,52.27,35,36,78.26,58,250,28.57,26,3,44.15,34,32,40.54,41,44,38.47,36,39,84.66,45,250,79.35,84,85,39.08,40,41,64.48,30,250,49.76,32,3,41.18,40,44,47.52,35,17,50.56,27,250,42.1,22,3,35.5,33,33,40.66,38,39,66.89,33,250,37.63,35,36,40.04,40,41,47.43,38,4,56.53,44,5,40.67,40,40,65.46,44,250,106.78,85,250,60.52,33,19,39.53,37,36,30.54,25,3,31.79,31,34,54.89,47,2,0.945,0.03424 -VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,75.11,75,75,71.31,39,250,37.02,31,30,60.14,63,63,79.29,78,74,81.78,55,250,65.89,68,5,74.79,61,2,53.74,47,2,99.31,104,250,85.17,85,82,64.04,65,66,40.71,41,2,53.28,41,5,56.48,48,3,68.76,72,75,51.1,33,250,85.14,57,250,48.82,50,3,134.13,142,250,126.68,88,250,65.45,67,69,111.4,80,250,58.1,56,2,134.55,126,250,75.56,47,250,61.15,63,67,72.55,61,250,81.61,44,250,157.89,198,250,223.95,250,250,107.91,67,250,63.79,66,67,74.13,73,69,62.86,61,68,58.69,53,250,67.04,53,2,78.62,54,250,52.02,51,57,68.01,59,250,40.35,39,42,49.17,50,71,53.77,59,61,65.34,67,68,49,50,72,46.7,46,33,52.11,41,7,51.85,37,2,56.5,61,60,55.03,32,2,62.65,50,250,113.6,105,250,66.46,53,2,53.61,56,59,68.97,70,71,54.14,58,63,43.21,41,27,83.66,42,250,62.93,68,73,76.73,65,5,59.09,38,250,54.5,57,62,138.05,157,250,70.83,24,250,71.3,72,74,78.57,41,250,17.54,10,3,118.9,68,250,69.76,55,250,74.97,52,25,127.62,144,250,63.9,41,2,103.27,59,250,64.39,66,67,64.52,59,61,101.35,58,250,46.61,47,50,66.65,35,250,128.03,103,250,65.48,67,68,95.17,57,250,144.74,172,250,110.35,62,250,68.93,70,71,49.02,52,57,107.18,87,250,68.49,69,70,64.78,66,68,81.66,51,250,55.34,56,2,156.6,217,250,64.01,65,66,108.82,98,250,66.77,66,67,55.48,22,2,67.99,34,5,103.89,81,250,42.08,24,8,64.5,66,67,66.19,39,22,155.44,205,250,63.78,65,65,72.78,45,26,79.69,70,60,62.26,64,64,84.04,92,111,40.09,39,41,65.04,64,66,63.32,65,67,91.09,46,250,59.54,63,65,51.26,57,60,66.48,66,67,76.25,68,3,71.95,72,72,63.73,65,66,64.14,66,66,118.78,133,250,63.57,64,65,62.81,63,63,63.04,62,64,67.24,49,9,127.05,80,250,67.87,68,68,63.54,57,2,75.09,75,75,64.85,66,67,63.6,64,65,43.79,26,20,76.16,76,77,63.35,65,66,66.42,66,65,64.26,66,67,60.81,61,63,68.7,65,66,53.9,59,73,70.35,72,73,224.92,250,250,59.38,61,61,65.13,66,65,57.38,60,62,66.77,67,65,8.65,8,2,67.49,67,67,68.14,69,70,63.09,64,64,61.1,62,63,62.27,61,64,96.13,57,250,63.5,62,64,62.54,65,66,60.86,58,67,61.54,61,61,63.49,66,66,102.13,51,250,68.92,70,70,66.66,61,250,65.08,66,69,71.27,68,71,62.52,65,66,64.6,60,62,59.9,59,64,75.53,40,250,62.05,63,64,57.54,60,64,65.36,64,64,71.06,71,72,61.4,60,60,109.43,91,250,71.67,53,250,99.26,80,250,50.38,44,3,67.51,59,250,76.06,77,77,60.36,60,63,95.24,43,250,99.46,101,106,65.53,67,68,78.18,45,250,65.27,44,250,67.97,68,71,76.84,57,250,67.29,42,250,63.29,41,2,55.16,56,60,64.28,61,61,100.91,63,250,61.17,59,56,66.77,68,69,76.12,56,250,97.93,72,250,64.74,65,66,83.71,39,250,134.24,133,250,75.81,49,250,65.09,60,62,45.6,36,5,51.95,51,60,122.8,131,250,0.948,0.03438 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672491,median_cov_KB672491,mode_cov_KB672491,mean_cov_KB672492,median_cov_KB672492,mode_cov_KB672492,mean_cov_KB672503,median_cov_KB672503,mode_cov_KB672503,mean_cov_KB672514,median_cov_KB672514,mode_cov_KB672514,mean_cov_KB672525,median_cov_KB672525,mode_cov_KB672525,mean_cov_KB672536,median_cov_KB672536,mode_cov_KB672536,mean_cov_KB672547,median_cov_KB672547,mode_cov_KB672547,mean_cov_KB672558,median_cov_KB672558,mode_cov_KB672558,mean_cov_KB672569,median_cov_KB672569,mode_cov_KB672569,mean_cov_KB672580,median_cov_KB672580,mode_cov_KB672580,mean_cov_KB672591,median_cov_KB672591,mode_cov_KB672591,mean_cov_KB672602,median_cov_KB672602,mode_cov_KB672602,mean_cov_KB672603,median_cov_KB672603,mode_cov_KB672603,mean_cov_KB672614,median_cov_KB672614,mode_cov_KB672614,mean_cov_KB672625,median_cov_KB672625,mode_cov_KB672625,mean_cov_KB672636,median_cov_KB672636,mode_cov_KB672636,mean_cov_KB672647,median_cov_KB672647,mode_cov_KB672647,mean_cov_KB672658,median_cov_KB672658,mode_cov_KB672658,mean_cov_KB672680,median_cov_KB672680,mode_cov_KB672680,mean_cov_KB672691,median_cov_KB672691,mode_cov_KB672691,mean_cov_KB672702,median_cov_KB672702,mode_cov_KB672702,mean_cov_KB672713,median_cov_KB672713,mode_cov_KB672713,mean_cov_KB672714,median_cov_KB672714,mode_cov_KB672714,mean_cov_KB672725,median_cov_KB672725,mode_cov_KB672725,mean_cov_KB672736,median_cov_KB672736,mode_cov_KB672736,mean_cov_KB672747,median_cov_KB672747,mode_cov_KB672747,mean_cov_KB672758,median_cov_KB672758,mode_cov_KB672758,mean_cov_KB672769,median_cov_KB672769,mode_cov_KB672769,mean_cov_KB672780,median_cov_KB672780,mode_cov_KB672780,mean_cov_KB672788,median_cov_KB672788,mode_cov_KB672788,mean_cov_KB672789,median_cov_KB672789,mode_cov_KB672789,mean_cov_KB672790,median_cov_KB672790,mode_cov_KB672790,mean_cov_KB672791,median_cov_KB672791,mode_cov_KB672791,mean_cov_KB672792,median_cov_KB672792,mode_cov_KB672792,mean_cov_KB672793,median_cov_KB672793,mode_cov_KB672793,mean_cov_KB672794,median_cov_KB672794,mode_cov_KB672794,mean_cov_KB672795,median_cov_KB672795,mode_cov_KB672795,mean_cov_KB672796,median_cov_KB672796,mode_cov_KB672796,mean_cov_KB672797,median_cov_KB672797,mode_cov_KB672797,mean_cov_KB672798,median_cov_KB672798,mode_cov_KB672798,mean_cov_KB672799,median_cov_KB672799,mode_cov_KB672799,mean_cov_KB672800,median_cov_KB672800,mode_cov_KB672800,mean_cov_KB672801,median_cov_KB672801,mode_cov_KB672801,mean_cov_KB672802,median_cov_KB672802,mode_cov_KB672802,mean_cov_KB672803,median_cov_KB672803,mode_cov_KB672803,mean_cov_KB672804,median_cov_KB672804,mode_cov_KB672804,mean_cov_KB672805,median_cov_KB672805,mode_cov_KB672805,mean_cov_KB672806,median_cov_KB672806,mode_cov_KB672806,mean_cov_KB672807,median_cov_KB672807,mode_cov_KB672807,mean_cov_KB672808,median_cov_KB672808,mode_cov_KB672808,mean_cov_KB672809,median_cov_KB672809,mode_cov_KB672809,mean_cov_KB672810,median_cov_KB672810,mode_cov_KB672810,mean_cov_KB672811,median_cov_KB672811,mode_cov_KB672811,mean_cov_KB672812,median_cov_KB672812,mode_cov_KB672812,mean_cov_KB672813,median_cov_KB672813,mode_cov_KB672813,mean_cov_KB672814,median_cov_KB672814,mode_cov_KB672814,mean_cov_KB672815,median_cov_KB672815,mode_cov_KB672815,mean_cov_KB672816,median_cov_KB672816,mode_cov_KB672816,mean_cov_KB672817,median_cov_KB672817,mode_cov_KB672817,mean_cov_KB672818,median_cov_KB672818,mode_cov_KB672818,mean_cov_KB672819,median_cov_KB672819,mode_cov_KB672819,mean_cov_KB672820,median_cov_KB672820,mode_cov_KB672820,mean_cov_KB672821,median_cov_KB672821,mode_cov_KB672821,mean_cov_KB672823,median_cov_KB672823,mode_cov_KB672823,mean_cov_KB672824,median_cov_KB672824,mode_cov_KB672824,mean_cov_KB672825,median_cov_KB672825,mode_cov_KB672825,mean_cov_KB672826,median_cov_KB672826,mode_cov_KB672826,mean_cov_KB672827,median_cov_KB672827,mode_cov_KB672827,mean_cov_KB672828,median_cov_KB672828,mode_cov_KB672828,mean_cov_KB672829,median_cov_KB672829,mode_cov_KB672829,mean_cov_KB672830,median_cov_KB672830,mode_cov_KB672830,mean_cov_KB672832,median_cov_KB672832,mode_cov_KB672832,mean_cov_KB672833,median_cov_KB672833,mode_cov_KB672833,mean_cov_KB672835,median_cov_KB672835,mode_cov_KB672835,mean_cov_KB672837,median_cov_KB672837,mode_cov_KB672837,mean_cov_KB672838,median_cov_KB672838,mode_cov_KB672838,mean_cov_KB672839,median_cov_KB672839,mode_cov_KB672839,mean_cov_KB672843,median_cov_KB672843,mode_cov_KB672843,mean_cov_KB672845,median_cov_KB672845,mode_cov_KB672845,mean_cov_KB672846,median_cov_KB672846,mode_cov_KB672846,mean_cov_KB672849,median_cov_KB672849,mode_cov_KB672849,mean_cov_KB672851,median_cov_KB672851,mode_cov_KB672851,mean_cov_KB672855,median_cov_KB672855,mode_cov_KB672855,mean_cov_KB672857,median_cov_KB672857,mode_cov_KB672857,mean_cov_KB672859,median_cov_KB672859,mode_cov_KB672859,mean_cov_KB672861,median_cov_KB672861,mode_cov_KB672861,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672869,median_cov_KB672869,mode_cov_KB672869,mean_cov_KB672871,median_cov_KB672871,mode_cov_KB672871,mean_cov_KB672873,median_cov_KB672873,mode_cov_KB672873,mean_cov_KB672877,median_cov_KB672877,mode_cov_KB672877,mean_cov_KB672880,median_cov_KB672880,mode_cov_KB672880,mean_cov_KB672884,median_cov_KB672884,mode_cov_KB672884,mean_cov_KB672891,median_cov_KB672891,mode_cov_KB672891,mean_cov_KB672892,median_cov_KB672892,mode_cov_KB672892,mean_cov_KB672894,median_cov_KB672894,mode_cov_KB672894,mean_cov_KB672900,median_cov_KB672900,mode_cov_KB672900,mean_cov_KB672901,median_cov_KB672901,mode_cov_KB672901,mean_cov_KB672902,median_cov_KB672902,mode_cov_KB672902,mean_cov_KB672905,median_cov_KB672905,mode_cov_KB672905,mean_cov_KB672907,median_cov_KB672907,mode_cov_KB672907,mean_cov_KB672913,median_cov_KB672913,mode_cov_KB672913,mean_cov_KB672914,median_cov_KB672914,mode_cov_KB672914,mean_cov_KB672915,median_cov_KB672915,mode_cov_KB672915,mean_cov_KB672924,median_cov_KB672924,mode_cov_KB672924,mean_cov_KB672930,median_cov_KB672930,mode_cov_KB672930,mean_cov_KB672932,median_cov_KB672932,mode_cov_KB672932,mean_cov_KB672935,median_cov_KB672935,mode_cov_KB672935,mean_cov_KB672946,median_cov_KB672946,mode_cov_KB672946,mean_cov_KB672954,median_cov_KB672954,mode_cov_KB672954,mean_cov_KB672957,median_cov_KB672957,mode_cov_KB672957,mean_cov_KB672964,median_cov_KB672964,mode_cov_KB672964,mean_cov_KB672968,median_cov_KB672968,mode_cov_KB672968,mean_cov_KB672975,median_cov_KB672975,mode_cov_KB672975,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB672980,median_cov_KB672980,mode_cov_KB672980,mean_cov_KB672991,median_cov_KB672991,mode_cov_KB672991,mean_cov_KB673001,median_cov_KB673001,mode_cov_KB673001,mean_cov_KB673002,median_cov_KB673002,mode_cov_KB673002,mean_cov_KB673013,median_cov_KB673013,mode_cov_KB673013,mean_cov_KB673024,median_cov_KB673024,mode_cov_KB673024,mean_cov_KB673027,median_cov_KB673027,mode_cov_KB673027,mean_cov_KB673028,median_cov_KB673028,mode_cov_KB673028,mean_cov_KB673035,median_cov_KB673035,mode_cov_KB673035,mean_cov_KB673044,median_cov_KB673044,mode_cov_KB673044,mean_cov_KB673046,median_cov_KB673046,mode_cov_KB673046,mean_cov_KB673057,median_cov_KB673057,mode_cov_KB673057,mean_cov_KB673068,median_cov_KB673068,mode_cov_KB673068,mean_cov_KB673070,median_cov_KB673070,mode_cov_KB673070,mean_cov_KB673079,median_cov_KB673079,mode_cov_KB673079,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673091,median_cov_KB673091,mode_cov_KB673091,mean_cov_KB673102,median_cov_KB673102,mode_cov_KB673102,mean_cov_KB673113,median_cov_KB673113,mode_cov_KB673113,mean_cov_KB673124,median_cov_KB673124,mode_cov_KB673124,mean_cov_KB673130,median_cov_KB673130,mode_cov_KB673130,mean_cov_KB673135,median_cov_KB673135,mode_cov_KB673135,mean_cov_KB673138,median_cov_KB673138,mode_cov_KB673138,mean_cov_KB673146,median_cov_KB673146,mode_cov_KB673146,mean_cov_KB673157,median_cov_KB673157,mode_cov_KB673157,mean_cov_KB673168,median_cov_KB673168,mode_cov_KB673168,mean_cov_KB673179,median_cov_KB673179,mode_cov_KB673179,mean_cov_KB673187,median_cov_KB673187,mode_cov_KB673187,mean_cov_KB673190,median_cov_KB673190,mode_cov_KB673190,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,mean_cov_KB673202,median_cov_KB673202,mode_cov_KB673202,mean_cov_KB673213,median_cov_KB673213,mode_cov_KB673213,mean_cov_KB673224,median_cov_KB673224,mode_cov_KB673224,mean_cov_KB673235,median_cov_KB673235,mode_cov_KB673235,mean_cov_KB673246,median_cov_KB673246,mode_cov_KB673246,mean_cov_KB673257,median_cov_KB673257,mode_cov_KB673257,mean_cov_KB673268,median_cov_KB673268,mode_cov_KB673268,mean_cov_KB673279,median_cov_KB673279,mode_cov_KB673279,mean_cov_KB673290,median_cov_KB673290,mode_cov_KB673290,mean_cov_KB673301,median_cov_KB673301,mode_cov_KB673301,mean_cov_KB673312,median_cov_KB673312,mode_cov_KB673312,mean_cov_KB673313,median_cov_KB673313,mode_cov_KB673313,mean_cov_KB673324,median_cov_KB673324,mode_cov_KB673324,mean_cov_KB673335,median_cov_KB673335,mode_cov_KB673335,mean_cov_KB673346,median_cov_KB673346,mode_cov_KB673346,mean_cov_KB673357,median_cov_KB673357,mode_cov_KB673357,mean_cov_KB673368,median_cov_KB673368,mode_cov_KB673368,mean_cov_KB673379,median_cov_KB673379,mode_cov_KB673379,mean_cov_KB673390,median_cov_KB673390,mode_cov_KB673390,mean_cov_KB673401,median_cov_KB673401,mode_cov_KB673401,mean_cov_KB673412,median_cov_KB673412,mode_cov_KB673412,mean_cov_KB673423,median_cov_KB673423,mode_cov_KB673423,mean_cov_KB673424,median_cov_KB673424,mode_cov_KB673424,mean_cov_KB673435,median_cov_KB673435,mode_cov_KB673435,mean_cov_KB673446,median_cov_KB673446,mode_cov_KB673446,mean_cov_KB673457,median_cov_KB673457,mode_cov_KB673457,mean_cov_KB673468,median_cov_KB673468,mode_cov_KB673468,mean_cov_KB673479,median_cov_KB673479,mode_cov_KB673479,mean_cov_KB673490,median_cov_KB673490,mode_cov_KB673490,mean_cov_KB673501,median_cov_KB673501,mode_cov_KB673501,mean_cov_KB673512,median_cov_KB673512,mode_cov_KB673512,mean_cov_KB673523,median_cov_KB673523,mode_cov_KB673523,mean_cov_KB673534,median_cov_KB673534,mode_cov_KB673534,mean_cov_KB673535,median_cov_KB673535,mode_cov_KB673535,mean_cov_KB673546,median_cov_KB673546,mode_cov_KB673546,mean_cov_KB673557,median_cov_KB673557,mode_cov_KB673557,mean_cov_KB673568,median_cov_KB673568,mode_cov_KB673568,mean_cov_KB673579,median_cov_KB673579,mode_cov_KB673579,mean_cov_KB673590,median_cov_KB673590,mode_cov_KB673590,mean_cov_KB673601,median_cov_KB673601,mode_cov_KB673601,mean_cov_KB673612,median_cov_KB673612,mode_cov_KB673612,mean_cov_KB673623,median_cov_KB673623,mode_cov_KB673623,mean_cov_KB673634,median_cov_KB673634,mode_cov_KB673634,mean_cov_KB673645,median_cov_KB673645,mode_cov_KB673645,mean_cov_KB673646,median_cov_KB673646,mode_cov_KB673646,mean_cov_KB673657,median_cov_KB673657,mode_cov_KB673657,mean_cov_KB673668,median_cov_KB673668,mode_cov_KB673668,mean_cov_KB673679,median_cov_KB673679,mode_cov_KB673679,mean_cov_KB673690,median_cov_KB673690,mode_cov_KB673690,mean_cov_KB673701,median_cov_KB673701,mode_cov_KB673701,mean_cov_KB673712,median_cov_KB673712,mode_cov_KB673712,mean_cov_KB673723,median_cov_KB673723,mode_cov_KB673723,mean_cov_KB673734,median_cov_KB673734,mode_cov_KB673734,mean_cov_KB673745,median_cov_KB673745,mode_cov_KB673745,frac_gen_cov,divergence +VBS46299-6321STDY9453299,41.48,42,42,42.02,42,43,43.79,44,45,60.55,27,250,16.23,11,4,38.94,39,42,44.94,45,43,54.29,35,9,45.56,42,2,52.79,54,2,34.42,29,5,55.21,47,5,47.0,48,50,40.02,40,41,26.22,26,4,36.38,27,2,39.86,25,8,40.5,42,44,37.91,20,11,59.17,38,35,30.22,30,47,87.41,72,250,99.45,56,250,40.2,41,42,78.14,49,30,38.88,37,37,83.94,34,12,66.36,21,250,38.76,40,37,39.03,38,39,59.96,28,250,156.93,227,250,198.16,249,250,97.68,64,250,39.5,40,41,41.69,42,42,41.74,38,41,41.35,32,33,30.58,28,13,65.33,35,250,44.28,41,40,49.37,38,44,24.49,23,22,30.33,31,15,36.77,39,39,40.66,41,42,30.6,31,41,26.96,26,23,36.19,24,3,32.29,22,23,35.4,38,41,41.02,23,2,39.73,34,43,81.5,66,21,53.69,38,5,34.67,36,40,41.7,42,43,33.54,35,37,28.07,26,13,77.45,27,250,38.85,42,45,54.61,39,3,28.84,18,2,35.55,36,38,134.14,139,250,64.91,24,2,42.47,43,43,62.35,29,250,13.41,14,13,114.89,51,250,55.01,38,250,46.89,35,14,101.41,72,250,39.55,25,10,86.38,50,250,40.47,41,41,40.24,34,10,49.96,38,7,29.04,29,28,52.07,21,3,104.64,54,250,39.58,41,41,73.95,43,6,138.3,127,250,92.6,44,250,42.19,42,43,35.91,36,35,94.91,64,250,41.69,42,42,40.46,41,41,44.44,27,9,29.76,29,2,73.41,93,10,40.08,41,41,70.99,61,250,42.22,41,42,52.12,28,3,48.28,26,3,54.92,44,29,21.33,15,2,39.97,41,41,47.79,27,2,131.4,123,250,40.01,40,41,38.28,29,4,50.06,46,39,38.71,40,40,28.73,28,28,36.66,32,15,42.06,40,41,40.04,40,41,83.07,33,250,37.81,39,40,42.39,43,45,41.88,41,42,50.39,45,5,43.08,43,43,40.01,40,42,38.86,40,42,60.32,60,8,40.04,40,41,40.55,41,41,41.0,38,40,52.51,32,3,101.08,61,250,41.7,42,42,40.63,34,26,43.94,44,43,40.55,41,42,40.81,41,41,22.44,11,6,44.21,45,45,39.73,40,41,41.93,41,42,40.24,41,42,38.84,39,41,44.91,41,41,35.1,37,37,42.02,43,42,232.25,250,250,38.77,39,39,40.06,41,41,36.63,37,40,40.41,41,42,2.45,2,2,41.75,42,42,41.48,42,42,40.0,41,41,39.07,40,41,41.43,39,41,70.47,29,250,40.79,39,38,39.76,41,40,39.15,35,42,41.15,40,40,42.83,42,43,76.39,32,250,42.02,42,42,45.23,39,40,39.8,39,40,45.23,42,40,39.32,40,42,42.4,39,38,41.98,39,41,57.08,29,250,40.08,40,40,37.03,38,41,44.01,41,43,42.85,43,43,40.93,38,37,70.11,50,250,50.12,32,25,83.34,64,250,32.28,29,2,42.77,36,41,40.47,41,41,39.04,37,37,72.68,26,250,55.31,53,3,40.12,41,42,69.35,34,250,51.5,32,3,41.52,42,45,55.5,39,250,49.38,28,250,41.06,22,2,38.34,36,37,41.41,39,42,70.15,35,250,40.96,39,38,41.08,41,42,44.65,34,4,62.66,46,4,42.0,41,42,51.54,18,250,105.22,76,250,69.42,34,250,42.66,39,41,24.68,18,2,33.62,31,4,66.75,52,7,0.946,0.03433 +VBS46300-6321STDY9453300,52.17,53,53,53.0,54,54,55.48,56,56,75.61,40,250,27.9,21,2,48.46,50,51,58.59,56,50,67.28,41,250,101.45,69,250,52.44,39,5,41.34,33,15,84.55,66,15,57.66,59,62,50.13,51,52,32.54,33,5,44.01,33,2,50.52,41,2,51.84,54,55,44.1,25,250,79.53,48,250,37.46,31,25,110.62,91,250,118.04,80,250,50.65,52,54,122.63,88,250,46.91,46,49,91.77,74,2,67.97,39,250,48.13,49,47,45.75,47,48,77.52,36,250,160.03,223,250,127.56,131,131,101.74,72,250,49.78,51,53,54.64,54,51,51.32,49,53,48.8,41,44,37.18,35,12,77.18,45,250,42.32,41,49,56.41,47,47,30.18,30,36,38.52,39,55,45.84,50,51,50.56,51,53,39.03,39,41,34.74,34,24,40.26,32,32,48.64,34,2,44.22,48,51,42.33,22,2,49.0,43,51,109.61,82,250,66.17,54,3,42.26,44,50,52.61,54,54,43.24,46,47,33.99,32,29,74.41,35,250,50.92,53,51,103.89,99,6,44.47,29,4,44.69,46,45,141.24,171,250,75.33,30,250,53.68,54,56,75.21,35,250,6.37,4,2,115.58,71,250,60.85,44,250,41.06,25,19,101.74,71,250,52.25,32,9,91.08,43,250,50.72,51,53,42.43,29,24,75.23,58,2,34.28,33,31,61.49,32,250,116.94,77,250,49.66,51,53,68.06,37,3,131.88,137,250,103.57,50,250,53.15,54,54,44.3,45,47,115.65,79,250,52.56,53,54,50.65,51,53,55.69,24,2,34.59,38,2,139.03,184,250,50.47,51,52,91.42,79,250,53.06,52,53,54.54,32,2,59.11,36,2,110.93,95,250,29.28,16,3,50.36,52,53,57.87,32,24,129.38,76,250,50.54,51,52,45.42,34,4,61.98,55,42,48.82,50,51,46.88,45,18,44.56,41,33,52.15,51,50,49.46,50,52,79.16,39,250,47.39,49,52,82.82,56,47,52.26,52,52,50.27,45,39,54.34,55,55,50.36,51,52,49.82,51,51,92.16,105,6,50.28,51,51,51.0,51,53,50.28,48,49,58.91,34,13,119.93,103,250,52.12,52,53,51.06,46,4,55.19,56,58,50.19,51,52,51.0,51,52,30.93,16,10,56.05,56,56,49.91,51,52,51.76,51,52,50.49,51,52,49.52,49,51,55.79,52,54,44.73,48,48,53.72,55,54,227.09,250,250,48.17,49,50,50.25,52,54,45.5,47,51,51.22,52,54,4.23,4,2,52.44,52,53,52.35,53,53,50.43,51,53,48.65,50,50,51.75,50,52,85.26,41,250,52.02,50,52,49.92,51,52,47.06,43,49,50.34,50,50,49.83,51,52,81.73,43,250,52.88,53,54,54.08,48,52,50.04,50,49,56.56,53,55,48.65,50,50,51.85,50,49,50.3,49,48,66.83,34,250,50.51,51,53,46.15,49,51,52.94,51,50,54.02,54,54,50.9,49,50,92.23,75,250,58.63,40,2,91.35,76,250,48.03,43,4,51.05,45,49,50.84,51,50,48.7,47,49,84.9,37,250,76.67,85,3,50.6,52,53,73.6,38,250,68.06,41,2,52.49,52,53,68.0,51,2,54.88,34,250,48.54,26,3,47.54,45,48,53.87,49,48,87.34,48,250,51.48,50,52,51.67,53,53,66.04,54,2,79.52,59,250,52.38,52,54,61.88,36,250,115.86,104,250,62.48,37,250,54.35,49,49,34.01,25,6,40.94,40,4,87.3,66,4,0.946,0.03436 +VBS46301-6321STDY9453301,67.16,68,69,68.26,69,70,71.02,72,72,73.54,39,250,28.38,18,12,60.78,64,71,72.67,74,75,82.42,51,4,111.85,91,250,53.46,33,24,51.9,44,2,95.56,105,250,76.59,77,78,64.76,66,68,41.06,41,4,51.7,42,3,60.86,58,3,67.5,70,75,54.61,31,250,88.06,63,250,51.55,52,6,133.29,148,250,132.9,116,250,65.09,67,69,121.71,78,250,57.62,56,5,121.34,102,250,92.74,31,250,63.85,66,70,63.91,62,63,76.97,44,250,154.72,193,250,191.05,219,250,109.5,66,250,63.64,66,68,68.84,70,67,66.0,64,69,58.17,54,250,44.44,43,17,81.76,54,250,53.71,54,63,66.52,59,250,41.34,40,42,47.12,45,31,56.99,64,65,65.59,67,68,46.78,47,35,44.91,44,31,53.77,42,4,53.52,36,35,56.81,62,69,52.79,30,3,57.93,49,4,112.18,104,250,83.16,73,2,55.46,59,63,67.92,69,70,54.63,58,60,43.31,41,67,84.58,44,250,66.05,69,68,82.62,75,250,48.47,28,3,60.37,64,68,142.35,174,250,80.68,34,250,68.8,70,71,82.5,46,250,4.57,3,3,111.68,65,250,72.6,60,250,75.79,58,21,128.85,130,250,63.22,39,250,107.06,67,250,65.47,67,68,60.86,55,18,63.06,50,2,47.64,47,46,62.29,35,250,121.73,86,250,64.94,67,68,83.08,44,250,151.59,181,250,110.05,65,250,68.62,69,70,53.38,54,72,112.13,81,250,67.76,69,69,65.31,67,67,74.43,43,250,47.2,55,2,107.89,117,2,65.06,67,68,113.94,121,250,67.98,67,68,66.66,38,2,72.11,38,250,82.47,62,32,36.24,25,2,64.78,67,69,72.51,37,19,147.92,173,250,65.52,67,68,61.01,49,6,79.85,73,65,63.23,65,67,45.4,48,60,47.86,45,2,66.97,66,67,63.72,66,67,94.79,55,250,60.71,64,67,50.62,55,63,67.19,67,67,75.74,67,4,70.22,71,71,65.13,67,67,64.6,67,68,85.51,91,30,65.04,66,67,65.68,66,66,64.01,63,66,88.49,53,250,131.69,155,250,67.81,68,68,60.69,62,2,70.8,71,72,65.72,67,68,65.7,67,68,35.61,21,14,72.21,73,73,64.45,66,68,65.58,66,71,65.18,67,68,61.86,63,68,70.81,67,68,57.23,61,68,68.21,70,71,226.32,250,250,63.48,65,65,65.43,67,67,58.41,61,66,66.45,68,70,4.08,3,2,67.92,68,69,67.48,69,70,64.53,66,66,63.37,65,65,65.43,65,65,88.13,51,250,66.04,65,66,64.08,67,68,60.11,56,67,65.37,65,65,64.31,67,69,103.44,49,250,68.29,69,70,68.83,64,250,64.21,65,67,70.24,68,70,62.98,65,65,63.85,65,70,62.4,63,68,75.59,47,250,65.16,66,68,60.05,63,68,66.81,66,65,69.75,70,70,64.37,62,63,109.88,94,250,75.8,58,250,111.92,92,250,47.65,41,3,65.01,60,250,66.34,68,70,62.83,63,67,96.86,46,250,93.39,89,5,65.34,67,68,82.38,50,250,68.6,43,2,66.04,67,68,70.91,54,250,67.99,44,250,64.82,36,2,58.33,59,63,70.34,67,67,95.68,55,250,65.85,65,68,66.39,68,69,74.81,55,250,100.29,70,250,66.99,67,69,61.16,28,250,136.51,138,250,75.25,42,250,68.41,64,62,40.71,33,3,52.48,48,4,94.22,70,250,0.948,0.03442 +VBS46302-6321STDY9453302,61.92,63,63,63.09,64,64,66.29,67,66,76.23,39,250,27.97,21,10,58.09,60,60,69.48,69,73,68.46,47,2,79.75,55,2,59.53,41,23,49.67,39,3,95.15,94,250,71.28,72,68,59.33,61,61,37.78,38,4,48.06,39,3,54.06,41,3,62.73,65,68,48.81,30,6,79.52,52,250,45.08,41,3,120.06,107,250,128.8,108,250,59.84,61,63,111.5,82,250,55.31,53,54,108.91,74,250,78.26,34,250,57.83,60,61,67.75,56,56,78.55,42,250,168.15,249,250,181.46,196,250,112.61,70,250,59.05,61,63,66.13,67,66,55.38,54,59,55.34,50,55,44.01,41,9,75.47,49,250,47.25,46,50,63.37,54,250,39.25,39,32,44.41,45,67,53.01,57,61,60.06,61,63,45.52,46,32,41.05,40,32,48.25,37,20,46.37,32,32,53.6,59,65,52.7,28,2,58.06,48,4,113.67,93,250,73.77,58,3,49.11,51,60,62.59,64,64,50.28,54,57,41.16,39,24,82.03,40,250,59.76,62,66,63.85,44,250,44.95,22,8,52.82,55,57,151.04,234,250,80.43,35,250,64.0,65,67,78.3,46,250,7.88,3,2,123.41,69,250,82.37,59,250,69.36,50,23,114.72,120,250,59.16,39,250,92.34,44,250,60.0,61,62,58.52,54,59,88.15,78,5,43.18,43,47,63.96,35,250,133.95,121,250,59.93,62,62,93.5,60,250,149.35,176,250,107.32,60,250,63.12,64,65,49.56,52,58,110.53,85,250,62.5,63,64,60.06,61,62,74.06,44,250,54.73,50,51,128.92,174,250,59.48,61,61,111.51,114,250,62.93,62,62,57.16,36,2,71.23,46,4,84.9,55,250,41.46,32,3,59.77,61,63,61.27,30,16,142.06,171,250,59.32,60,61,53.27,49,20,73.52,65,54,58.08,59,60,72.33,78,29,45.84,47,53,61.34,60,60,58.51,60,63,88.64,41,250,55.48,58,61,83.63,55,47,61.15,61,61,67.9,55,27,64.97,65,65,59.6,61,62,59.44,61,63,83.85,86,27,59.16,60,62,59.4,60,60,58.75,57,59,87.05,56,6,135.19,154,250,62.58,63,64,63.51,57,58,66.34,67,67,59.35,61,63,59.64,60,62,33.07,14,14,66.92,67,65,59.1,61,62,61.66,61,62,59.62,61,61,57.15,58,60,63.05,61,63,52.26,56,57,63.81,65,65,224.74,250,250,57.14,58,59,60.28,62,62,54.19,56,61,60.29,61,62,5.31,4,3,62.11,62,60,62.21,63,64,59.13,60,61,57.52,59,62,59.02,58,59,89.76,49,250,60.47,59,59,58.21,60,61,57.98,53,59,58.65,58,61,59.2,61,61,93.09,45,250,63.07,64,64,63.99,58,60,58.85,59,61,64.87,63,63,58.13,60,59,62.58,58,57,58.73,57,57,68.58,38,250,58.14,59,60,54.39,58,62,61.31,61,61,64.26,65,65,58.09,57,58,97.23,76,250,67.72,52,250,101.61,75,250,43.39,37,2,61.17,55,250,61.97,63,60,57.34,56,60,83.01,35,250,116.87,135,250,60.11,62,63,81.43,47,250,63.84,48,2,60.7,62,61,73.92,54,250,58.98,37,250,70.78,53,250,53.44,53,57,61.14,58,58,87.87,53,250,61.1,59,58,61.13,62,63,82.47,67,2,98.72,70,250,61.97,63,67,68.69,49,250,130.84,125,250,82.41,39,250,64.13,60,62,60.15,44,2,43.93,41,6,88.46,70,250,0.947,0.03441 +VBS46303-6321STDY9453303,44.15,44,45,44.67,45,45,46.41,47,47,66.42,29,250,21.5,15,3,42.14,43,45,49.5,49,48,50.85,34,2,103.98,58,250,39.9,31,8,35.31,31,2,79.6,79,14,49.03,50,54,42.54,43,44,26.17,25,20,41.08,32,4,30.13,22,3,43.9,45,49,39.44,21,15,68.3,42,250,32.86,30,19,91.85,73,250,106.34,72,250,42.71,44,44,93.23,51,250,41.04,42,45,103.59,62,250,64.92,24,250,42.07,43,43,41.43,40,41,68.04,30,250,87.1,99,45,185.44,235,250,95.32,54,250,42.13,43,44,45.3,46,45,44.4,41,45,44.87,36,37,39.6,36,10,74.21,38,250,37.06,34,35,52.07,41,44,25.57,26,31,32.1,30,18,37.03,39,43,43.37,44,45,31.69,33,40,29.3,28,22,34.54,29,5,39.43,24,15,36.72,40,41,29.51,21,2,41.43,35,44,105.06,85,250,55.27,41,5,36.84,38,39,44.36,45,45,37.24,40,46,28.17,27,19,74.16,27,250,39.82,43,47,101.43,86,250,36.78,21,2,40.91,43,45,141.85,191,250,61.77,18,6,44.99,46,46,68.52,31,250,7.99,4,2,107.13,68,250,54.58,39,250,55.25,29,20,98.25,77,250,42.92,27,36,82.72,55,250,43.18,44,44,47.22,45,45,67.08,55,2,30.88,30,27,52.68,25,4,107.7,62,250,42.52,44,45,63.53,30,9,151.21,161,250,98.73,47,250,44.89,45,46,35.44,36,41,88.09,61,250,44.25,45,45,43.0,43,44,47.51,29,23,33.45,37,2,105.86,126,3,42.87,43,44,78.48,74,250,45.46,44,44,46.0,24,2,46.78,28,4,64.59,60,48,20.29,14,6,42.63,43,44,44.24,23,15,91.96,96,2,43.25,44,44,78.08,43,250,54.12,49,40,41.61,42,43,22.71,23,23,32.01,32,37,45.21,43,44,42.32,43,44,83.43,33,250,39.85,41,43,53.2,46,2,44.62,44,44,47.78,42,17,45.88,46,46,43.54,44,44,42.03,43,43,85.61,96,6,42.69,43,44,43.47,44,44,43.56,41,42,71.54,35,6,112.9,72,250,44.46,44,44,39.56,40,45,46.53,46,47,43.2,44,44,43.29,44,44,34.9,25,3,47.05,47,48,42.03,43,44,44.53,43,44,43.13,44,44,42.03,42,42,47.73,44,44,38.84,41,44,44.75,46,47,229.83,250,250,41.64,43,44,42.38,43,46,37.02,38,43,43.55,44,44,3.3,3,2,44.58,45,45,44.14,45,45,43.1,44,45,42.16,43,42,44.87,43,43,80.52,43,250,44.07,43,45,42.64,44,46,41.85,37,41,43.66,43,42,41.83,43,45,81.71,40,250,44.63,45,45,48.52,42,43,43.39,44,46,48.22,44,43,42.56,43,44,43.86,42,43,46.83,43,42,69.97,34,250,43.2,44,46,40.49,42,45,45.95,43,44,45.51,46,46,44.14,42,43,74.34,52,250,52.81,36,31,74.73,62,250,40.37,31,3,46.13,38,44,44.44,46,50,41.34,40,40,84.39,42,250,61.76,66,73,42.81,44,45,66.01,32,250,47.25,30,2,43.96,44,48,51.44,35,4,48.07,28,250,53.64,39,3,42.36,40,47,46.31,43,44,77.5,40,250,44.31,43,45,43.64,44,45,61.32,38,3,65.4,46,11,45.48,45,45,67.83,23,250,103.02,82,250,54.57,34,3,46.5,44,44,32.37,25,6,35.41,32,8,62.61,51,6,0.947,0.03424 +VBS46304-6321STDY9453304,62.75,63,64,63.72,64,65,66.94,67,67,79.63,40,250,26.99,21,7,58.06,59,62,71.97,71,71,75.27,55,250,115.12,97,250,73.85,68,250,47.24,38,6,95.45,97,250,74.23,75,79,60.16,61,62,42.97,42,3,52.94,45,9,63.2,31,25,61.93,65,67,46.23,29,5,86.5,57,250,64.12,53,2,124.93,117,250,125.3,72,250,60.8,62,64,119.09,83,250,64.14,56,3,111.9,73,250,93.48,33,250,58.33,60,63,68.1,57,250,79.27,45,250,167.63,249,250,222.33,250,250,109.33,67,250,60.0,62,62,66.09,66,67,61.58,56,58,57.22,50,250,52.81,47,43,84.18,57,250,50.68,49,50,65.35,57,250,37.02,37,38,44.46,43,29,53.41,57,60,61.28,62,64,45.39,47,56,42.44,42,30,53.84,43,13,56.44,37,250,51.64,56,65,62.34,30,3,62.76,52,58,130.3,102,250,81.82,70,250,49.77,53,62,63.38,64,64,52.13,55,59,40.34,39,39,84.92,41,250,59.06,62,66,105.89,90,250,56.37,34,31,56.09,57,56,146.38,193,250,83.34,35,250,64.82,65,65,81.82,48,250,5.91,4,3,128.26,85,250,70.11,52,250,64.3,47,41,131.64,127,250,69.82,38,250,111.7,74,250,60.78,61,62,45.52,31,25,81.26,61,250,41.68,42,37,75.82,41,250,141.93,135,250,60.07,62,62,90.01,72,250,131.24,150,250,104.39,61,250,63.72,64,64,57.31,57,56,114.96,92,250,63.19,64,65,60.99,61,63,83.08,44,250,54.55,52,2,112.64,128,9,60.67,62,63,115.6,101,250,63.07,62,62,70.07,44,4,75.08,46,250,116.31,97,250,52.49,33,2,60.72,62,64,92.76,56,250,140.01,122,250,60.45,61,62,77.65,51,29,76.08,69,62,58.57,60,61,50.99,52,81,64.33,59,36,63.02,61,62,60.31,61,61,93.56,52,250,56.84,59,61,48.67,50,49,62.53,62,63,72.55,53,250,65.51,66,66,60.38,61,63,59.02,61,61,131.64,144,250,60.7,61,61,60.73,61,62,60.03,58,58,94.67,47,250,117.55,65,250,62.85,63,63,62.34,53,3,67.03,67,67,60.49,61,62,61.05,61,62,47.01,28,2,67.54,68,67,59.98,61,63,62.52,62,62,60.52,61,62,58.63,58,59,64.95,61,62,56.58,55,60,64.07,65,64,230.34,250,250,58.3,59,59,60.35,62,64,54.74,56,60,61.52,62,61,5.35,5,2,63.18,63,63,63.0,64,65,60.24,61,62,57.66,59,62,61.19,59,60,93.71,54,250,62.31,60,63,58.87,60,60,59.12,54,64,59.53,60,59,59.5,62,62,107.19,53,250,63.63,64,65,64.34,58,63,62.42,61,63,67.16,63,64,60.9,62,65,65.0,59,61,64.14,59,59,83.67,51,250,59.39,60,60,55.53,58,62,62.46,60,61,65.02,65,65,59.07,57,59,111.53,91,250,72.73,50,250,101.11,77,250,50.75,44,9,65.06,55,250,63.94,65,68,59.86,56,56,118.04,64,250,95.8,88,250,60.92,62,64,88.96,52,250,66.77,43,250,65.61,63,65,85.09,61,250,68.17,44,250,78.11,58,2,57.28,53,60,65.41,60,61,103.21,62,250,60.84,58,57,61.96,63,63,79.73,55,250,88.15,67,250,62.7,63,64,72.07,46,250,140.52,138,250,84.57,44,250,66.28,62,66,49.52,46,27,56.32,51,52,95.21,83,4,0.948,0.03448 +VBS46305-6321STDY9453305,65.69,67,67,67.22,68,68,71.5,72,71,60.43,42,250,27.14,22,3,59.42,62,66,74.83,76,84,74.68,50,250,50.94,49,3,66.4,51,12,53.34,47,2,97.93,106,250,78.77,78,78,62.61,64,65,40.13,41,2,52.34,42,2,43.67,31,2,66.59,69,71,65.31,31,250,84.42,58,250,45.71,47,30,122.54,125,250,129.02,90,250,63.45,65,67,117.51,87,250,58.91,58,65,127.47,124,250,78.41,30,250,60.6,62,61,58.05,57,54,79.83,42,250,160.73,216,250,214.67,249,250,107.41,74,250,62.3,64,66,68.81,68,66,61.56,59,61,56.44,50,250,43.23,41,6,82.78,58,250,48.59,47,54,64.59,56,250,38.96,38,17,47.0,46,30,56.32,61,65,63.77,65,66,49.07,50,51,43.61,42,28,51.56,41,6,58.33,42,33,54.89,60,63,66.77,34,7,59.58,54,66,132.36,127,250,73.53,62,250,51.2,52,63,67.03,68,69,50.99,55,55,43.44,41,32,85.78,44,250,66.92,70,70,58.53,54,2,48.79,27,8,54.48,58,60,141.48,168,250,86.66,31,250,68.3,69,70,73.93,41,250,5.7,5,2,119.45,70,250,70.67,55,250,68.48,50,22,118.04,109,250,62.61,36,2,105.5,76,250,62.92,64,64,58.15,54,58,87.83,62,2,47.75,46,41,68.78,35,250,126.09,90,250,63.5,65,67,101.37,67,250,169.75,193,250,113.7,71,250,67.06,68,68,55.31,57,60,119.24,78,250,66.65,68,67,63.09,64,66,76.12,43,250,42.59,47,4,124.81,153,3,62.29,64,66,92.72,79,250,65.07,65,66,46.73,28,2,81.09,48,3,82.59,70,50,35.89,18,2,63.35,65,65,66.94,42,11,134.4,134,250,62.08,63,64,67.1,40,4,75.7,67,54,61.07,62,65,92.11,91,22,52.1,52,52,64.44,63,64,61.45,63,64,98.32,53,250,58.51,61,63,83.78,68,69,65.21,65,66,67.82,61,4,69.32,70,69,62.29,63,66,62.51,64,66,107.65,114,27,62.22,63,65,61.71,62,63,60.86,59,60,77.89,39,250,122.77,131,250,66.41,67,66,51.3,39,31,71.12,71,73,63.32,65,64,61.84,63,64,36.36,19,6,71.89,72,69,62.55,64,66,64.71,64,66,62.87,64,64,58.99,59,60,67.95,64,64,58.57,59,67,67.81,69,69,229.48,250,250,58.74,60,62,63.74,65,65,56.18,58,60,64.13,65,66,3.32,3,4,65.67,65,65,66.17,67,68,61.36,63,64,60.4,61,61,61.35,60,61,101.0,60,250,62.05,61,64,60.65,63,64,58.22,54,65,60.71,60,62,62.21,64,66,93.54,63,250,66.84,68,68,66.47,61,250,63.23,64,64,68.11,66,67,61.31,63,64,63.03,61,62,61.42,60,61,77.53,48,250,60.2,61,59,56.79,60,67,64.27,63,61,68.69,69,69,60.92,60,61,106.46,84,250,71.55,52,250,100.6,89,250,46.75,43,3,62.76,56,250,68.03,71,74,59.64,59,63,98.79,52,250,85.07,78,91,63.81,66,67,84.58,50,250,71.11,46,250,64.92,65,67,73.03,58,250,67.01,42,250,53.91,32,2,54.94,54,58,64.7,60,58,95.92,59,250,59.02,58,59,64.76,66,67,68.93,52,250,104.32,85,250,65.26,65,64,62.1,36,250,131.8,135,250,78.48,46,250,60.55,59,69,31.93,25,4,51.39,47,4,83.57,65,2,0.947,0.03441 +VBS46306-6321STDY9453306,54.83,55,56,55.87,56,57,59.29,59,59,69.36,30,250,22.03,17,6,52.93,53,55,62.22,62,57,70.71,43,250,35.91,38,3,74.99,60,8,43.41,36,3,80.78,72,250,66.33,67,66,52.42,53,55,35.62,38,2,46.37,36,3,47.67,29,9,54.7,57,58,49.94,30,250,72.85,46,250,44.71,41,2,103.47,98,250,116.18,64,250,52.92,54,55,117.67,83,250,48.18,46,50,120.93,72,250,96.83,38,250,51.57,53,53,49.05,49,50,74.39,34,250,158.75,217,250,201.14,249,250,100.57,52,250,52.25,54,55,57.46,57,58,50.58,48,49,50.07,43,52,40.03,38,6,74.47,45,250,42.12,40,44,57.37,48,50,32.21,31,32,40.54,39,20,44.48,48,51,53.13,54,54,40.41,42,51,34.89,34,26,43.97,32,11,44.24,26,28,47.35,52,54,48.07,26,3,50.68,42,8,131.16,122,250,79.87,72,250,44.54,47,55,55.63,57,56,43.85,47,53,34.03,33,46,79.59,36,250,52.38,57,59,91.22,64,250,41.76,28,23,47.6,49,52,131.16,123,250,76.91,33,250,56.65,57,58,76.22,38,250,13.7,14,4,114.63,109,250,67.17,50,250,58.51,33,14,104.48,82,250,51.89,33,6,104.68,63,250,52.71,53,54,40.9,31,21,82.32,70,4,38.16,37,32,60.45,27,13,121.1,90,250,52.92,54,55,82.77,43,250,146.94,155,250,116.84,74,250,55.61,56,56,45.66,49,56,99.79,81,250,55.26,56,57,53.06,54,55,70.55,39,250,38.8,41,3,137.07,181,250,52.53,54,55,109.72,117,250,55.22,54,55,52.76,20,2,58.7,41,14,77.55,62,29,35.42,30,2,52.71,54,55,64.07,33,21,153.64,206,250,52.49,53,54,67.96,45,6,65.85,61,54,50.77,52,53,78.82,86,102,46.34,44,45,54.9,53,54,51.93,53,54,93.1,50,250,49.03,51,55,98.0,56,49,54.7,54,56,62.58,54,2,57.67,58,58,52.62,53,54,52.02,53,55,110.92,126,250,52.75,53,54,51.24,52,52,51.46,50,52,83.39,42,250,115.55,104,250,54.59,55,55,55.89,48,2,59.02,59,59,53.38,54,56,52.07,53,55,31.94,17,14,60.15,60,59,52.19,54,55,55.24,54,53,53.44,54,56,50.88,51,53,59.13,54,54,42.55,48,50,57.1,58,59,230.65,250,250,49.36,50,50,52.75,54,56,47.56,49,51,53.93,55,55,5.16,5,6,55.0,55,55,54.9,56,57,51.76,53,53,50.88,52,51,52.61,51,51,91.55,60,250,53.48,52,52,51.07,53,54,49.22,44,50,51.99,51,52,52.12,54,53,103.04,47,250,55.56,56,56,57.19,51,55,52.99,54,56,56.0,56,58,51.47,52,53,54.61,50,50,54.52,51,50,77.6,44,250,51.48,52,53,48.18,50,54,54.34,52,53,57.05,57,58,51.32,49,49,98.81,78,250,65.85,46,250,102.68,81,250,41.5,37,2,55.95,48,53,58.18,60,64,49.62,49,47,98.41,61,250,81.96,88,90,53.0,54,55,76.95,40,250,63.95,40,250,55.43,55,56,61.99,46,3,60.22,37,250,60.4,36,2,47.4,47,52,54.03,51,52,81.59,48,250,52.65,50,51,54.06,55,56,55.63,47,7,88.66,69,250,54.29,54,55,78.6,55,250,107.76,95,250,77.16,51,250,53.72,50,48,20.73,19,4,42.64,40,48,68.22,59,3,0.946,0.03434 +VBS46307-6321STDY9453307,47.43,48,48,48.35,49,49,51.58,52,51,63.28,25,250,21.94,15,3,44.29,44,46,54.87,55,56,55.33,36,4,58.62,52,5,46.75,31,14,40.38,33,2,63.31,54,8,57.57,58,59,45.18,46,46,30.53,32,3,39.55,30,5,31.5,25,4,47.09,48,48,38.42,21,250,69.59,41,250,40.32,35,28,103.91,90,250,103.98,64,250,46.13,47,48,98.72,52,250,41.45,40,41,79.84,41,2,68.6,23,250,43.37,45,46,54.93,42,40,68.48,30,250,145.07,186,250,100.49,86,84,86.4,42,250,45.02,46,47,50.56,51,52,44.66,41,43,45.07,37,40,33.15,25,2,62.56,34,250,37.25,35,38,51.82,41,40,27.46,27,29,32.4,31,14,39.0,42,45,45.92,47,48,34.01,36,37,32.43,31,25,30.9,25,22,34.62,22,19,40.16,43,44,36.92,23,2,43.31,35,49,94.0,77,24,59.33,45,250,37.04,38,41,48.09,49,49,38.53,40,39,28.76,27,16,74.69,28,250,46.61,48,53,77.64,55,7,34.88,26,2,40.44,42,42,138.09,133,250,57.45,22,3,49.36,50,50,69.23,34,250,13.15,14,2,89.76,60,250,56.5,41,250,38.09,26,9,94.27,84,250,45.74,27,2,87.31,37,250,45.62,46,47,38.96,22,17,64.95,52,2,34.33,34,33,51.66,24,3,116.86,119,250,45.58,47,48,69.44,40,2,118.65,121,21,100.61,53,250,48.37,49,49,38.3,39,45,88.68,63,250,47.96,48,49,45.55,46,47,58.12,30,28,34.61,36,43,117.1,141,6,45.26,46,46,79.35,74,250,47.59,47,47,44.9,26,4,45.21,28,5,84.8,63,250,33.05,29,2,45.49,46,47,48.58,35,3,97.85,85,24,45.0,45,46,57.18,41,9,56.31,51,45,43.88,44,46,26.96,27,18,29.47,31,34,47.08,45,45,44.57,45,46,83.84,31,250,42.34,44,45,36.04,37,35,47.05,46,48,44.65,39,2,49.81,50,49,45.27,46,46,45.23,46,47,65.98,65,22,45.09,45,45,44.4,45,44,45.15,43,43,51.31,20,8,127.74,134,250,47.49,48,49,42.65,37,2,51.63,51,52,45.46,46,47,45.37,45,45,25.98,15,3,51.7,52,52,45.08,46,48,48.81,46,46,45.38,46,48,43.74,43,45,49.76,45,45,39.77,42,47,49.75,50,52,230.2,250,250,42.47,43,43,46.09,47,47,40.61,41,43,46.63,47,47,5.13,4,4,47.25,47,47,47.73,48,49,44.48,45,48,43.28,44,45,45.87,44,44,73.95,35,250,45.93,44,44,43.53,45,45,41.45,38,47,44.02,44,43,45.25,47,47,83.47,36,250,48.26,49,49,49.68,43,47,46.48,45,45,50.65,48,48,45.18,46,46,46.87,42,44,45.25,43,47,63.68,32,250,43.89,44,43,40.32,42,42,48.66,46,46,49.42,50,49,45.84,44,42,76.6,61,250,52.43,36,36,78.34,54,250,30.33,27,4,46.87,39,45,49.23,49,46,43.13,41,41,84.52,40,250,55.56,51,50,45.89,47,47,71.14,36,250,56.12,35,4,46.46,46,45,52.77,38,3,51.4,28,250,55.23,43,4,40.99,38,38,46.54,43,46,82.38,39,250,44.56,42,43,46.83,48,48,47.02,39,2,71.31,50,3,46.64,46,43,57.2,30,250,101.56,79,250,61.6,34,3,46.65,43,45,31.1,27,3,35.15,32,3,67.06,57,7,0.947,0.03415 +VBS46308-6321STDY9453308,60.25,61,62,61.42,62,63,65.06,65,65,73.45,41,250,24.55,16,3,55.53,58,61,65.99,67,68,64.8,43,250,79.95,44,3,69.82,57,3,47.67,40,10,94.2,90,250,69.96,70,64,57.55,59,59,35.28,36,3,47.54,34,2,51.53,30,5,61.93,64,67,48.23,28,2,73.24,54,250,40.43,38,3,115.01,108,250,127.92,101,250,58.21,60,61,102.08,59,250,53.01,53,2,104.8,49,250,80.65,34,250,56.45,58,58,62.69,54,55,75.84,37,250,165.24,246,250,215.02,249,250,109.94,75,250,57.13,59,60,62.3,63,65,56.28,54,59,55.54,49,51,57.81,41,250,81.24,53,250,46.5,45,50,62.08,54,250,34.72,33,32,42.29,40,33,49.8,54,55,58.48,59,60,43.21,43,27,40.77,41,29,46.52,38,4,45.67,31,25,51.58,56,62,43.33,24,2,53.93,47,4,124.74,114,250,70.79,53,250,49.03,51,62,61.22,62,63,48.47,52,56,39.17,38,23,80.18,34,250,56.14,60,60,111.6,100,250,42.01,25,26,51.27,53,53,146.36,210,250,76.49,29,250,62.41,63,65,73.08,37,250,6.38,5,2,109.95,79,250,69.83,54,250,63.33,41,9,102.81,76,250,51.81,33,3,98.03,57,250,58.35,59,60,44.21,28,19,68.3,45,12,41.48,40,34,58.12,29,2,122.62,85,250,58.44,60,61,78.21,48,250,139.26,151,250,111.3,73,250,61.48,62,62,49.04,52,59,102.98,76,250,60.85,62,62,57.94,59,60,70.33,41,250,44.6,46,3,137.52,167,250,57.66,59,60,97.64,93,250,60.51,60,60,60.3,43,4,63.31,32,6,99.82,87,250,39.92,30,6,57.86,59,61,58.32,32,27,137.55,149,250,57.49,58,60,62.35,40,29,70.25,63,54,56.14,57,60,43.34,33,20,44.04,47,55,59.51,58,59,56.63,58,58,91.92,47,250,54.1,57,60,79.83,86,6,59.79,59,60,62.98,51,22,63.53,64,63,57.88,59,59,57.15,59,59,124.56,132,250,57.58,58,59,57.01,58,59,57.09,56,58,75.22,38,6,107.53,80,2,60.73,61,62,59.25,55,3,64.64,65,66,57.8,59,60,57.86,58,59,33.89,19,10,65.46,66,65,57.36,59,60,60.48,59,61,58.15,59,60,55.18,56,58,63.67,59,60,52.63,55,58,61.36,62,63,221.8,250,250,54.67,56,57,57.98,59,59,51.95,54,57,58.87,59,61,5.0,4,2,60.07,60,61,60.56,62,62,57.05,58,58,55.38,56,58,58.68,57,58,91.29,57,250,58.09,57,60,57.02,59,61,53.13,50,56,56.84,57,56,56.77,59,59,89.43,48,250,61.3,62,62,60.24,55,57,57.33,58,60,63.98,62,64,56.74,59,57,58.64,55,54,57.9,55,57,71.5,41,250,56.36,57,58,52.25,55,59,61.11,59,59,62.82,63,63,57.09,56,57,98.81,84,250,71.19,50,250,92.49,63,250,43.79,39,2,59.42,53,59,61.24,64,65,55.21,55,56,100.47,44,250,61.45,58,3,58.45,60,61,79.27,42,250,58.6,40,2,59.15,60,65,66.26,48,2,60.18,37,250,59.27,33,28,53.55,53,59,60.89,58,57,93.47,54,250,56.82,55,54,59.52,61,62,66.27,47,2,76.03,61,250,60.17,60,60,69.59,30,250,133.62,134,250,63.04,40,250,48.99,49,57,31.46,27,3,47.89,45,59,101.38,76,250,0.947,0.03438 +VBS46309-6321STDY9453309,56.48,57,58,57.43,58,58,59.12,60,60,65.99,33,250,27.44,23,6,52.68,54,57,60.05,59,59,69.2,43,250,88.26,59,5,67.49,52,34,49.04,43,19,91.79,83,250,62.9,64,68,54.51,56,57,32.79,34,4,41.52,32,3,47.63,33,10,56.64,58,58,56.75,24,5,77.65,52,250,38.9,38,31,101.21,83,250,126.09,101,250,54.61,56,57,111.11,73,250,54.94,51,54,87.18,42,8,89.93,34,250,52.06,53,53,63.36,54,56,75.22,39,250,129.82,143,60,97.84,98,95,103.75,64,250,54.22,56,57,56.72,57,57,53.07,50,55,51.35,44,45,50.39,43,3,78.23,48,250,48.07,47,50,61.58,51,250,34.44,33,31,41.37,40,30,48.36,53,55,55.03,56,57,39.76,40,49,39.7,39,32,45.52,36,5,51.28,30,28,48.29,53,54,46.95,25,3,55.79,43,52,132.51,129,250,69.27,49,250,45.75,47,50,56.98,58,59,47.55,51,54,37.74,36,29,78.77,36,250,56.23,59,63,70.37,51,11,44.83,27,18,50.6,53,56,140.26,191,250,70.59,18,5,57.6,59,59,75.51,38,250,7.08,5,3,113.56,52,250,73.35,55,250,59.43,24,7,114.89,106,250,52.49,31,7,90.18,58,250,55.13,56,57,53.37,40,250,90.94,85,7,38.27,38,49,64.21,31,250,126.7,88,250,54.65,56,57,86.96,55,250,163.96,177,250,104.83,58,250,57.44,58,58,46.66,46,42,107.35,83,250,56.96,58,58,54.99,56,56,73.31,40,250,50.72,53,3,131.38,159,250,54.62,55,57,103.31,98,250,57.22,56,58,61.39,38,4,66.87,41,6,118.53,107,250,37.86,29,2,54.6,56,57,63.45,31,16,141.06,169,250,54.55,55,55,64.72,49,19,66.83,60,53,52.93,54,56,34.73,37,41,45.6,48,50,56.76,55,56,54.15,55,57,90.16,43,250,51.51,54,56,57.42,52,37,56.41,56,56,68.91,53,2,58.55,59,59,54.63,56,56,53.9,55,57,109.66,117,32,54.41,55,55,55.32,55,55,54.63,53,54,87.52,48,250,127.7,104,250,57.04,57,58,52.91,51,5,58.85,59,59,55.44,56,57,55.51,56,55,36.56,22,8,59.18,60,61,54.33,56,57,57.35,57,59,54.89,56,56,52.67,53,55,61.32,56,57,47.73,50,50,56.76,58,59,224.15,250,250,52.86,54,55,54.56,56,58,49.78,51,54,54.93,56,57,5.64,5,3,56.9,57,57,56.72,58,58,54.32,55,56,53.43,54,55,55.44,54,54,87.34,52,250,56.36,55,57,54.08,56,55,51.3,48,54,54.27,54,55,54.6,56,60,102.36,49,250,57.1,58,58,59.1,54,57,56.01,55,55,61.35,59,59,54.6,55,54,53.76,53,58,54.74,53,55,73.42,45,250,54.17,55,55,50.44,53,55,57.7,55,56,58.27,59,59,54.0,52,53,94.42,73,250,70.33,50,250,102.26,72,250,45.97,39,3,58.74,50,250,53.82,55,57,52.91,51,51,108.38,74,250,72.49,64,40,55.02,56,57,74.3,41,250,69.35,40,250,56.08,54,57,66.1,45,250,59.68,36,250,62.66,33,30,50.39,49,53,58.31,54,54,93.48,57,250,54.77,52,50,55.67,57,58,68.32,55,4,87.94,65,250,56.85,56,56,77.96,54,250,126.62,118,250,72.39,45,250,63.26,55,58,29.23,26,2,45.14,42,54,79.02,64,5,0.949,0.03429 +VBS46310-6321STDY9453310,63.6,64,64,63.85,64,64,63.5,64,65,76.37,39,250,34.98,30,22,63.59,65,69,68.18,65,66,79.36,54,250,87.1,41,250,98.06,85,250,55.03,49,7,96.08,88,250,64.09,66,67,62.85,64,65,42.06,41,2,49.68,35,2,40.76,27,3,65.92,69,73,55.4,32,14,91.78,70,250,45.15,41,3,131.78,128,250,135.58,89,250,61.74,63,63,118.27,82,250,65.4,66,75,114.14,49,250,91.05,34,250,62.67,64,62,79.46,68,250,84.08,48,250,171.29,249,250,223.15,250,250,121.53,82,250,61.87,63,64,60.21,61,61,66.92,67,70,62.96,58,250,51.9,49,10,94.99,61,250,59.27,61,69,70.19,64,250,36.54,35,33,43.04,43,55,58.69,65,69,62.82,63,64,43.75,44,33,45.05,45,64,56.82,47,5,52.78,35,250,51.84,56,56,51.28,30,2,62.52,52,250,138.31,149,250,77.93,59,249,50.71,55,63,63.34,64,65,61.21,65,74,42.95,43,21,84.1,42,250,58.04,61,67,93.76,73,250,53.62,29,2,62.47,66,65,142.72,187,250,79.5,29,2,62.51,63,64,82.24,49,250,9.56,7,5,124.02,96,250,84.86,70,250,82.06,57,250,122.79,124,250,65.28,46,250,87.36,61,250,63.55,64,65,45.61,34,35,121.74,103,250,42.7,40,31,68.77,40,250,129.99,98,250,61.72,63,64,81.83,53,250,196.49,249,250,106.82,62,250,63.92,64,64,57.15,58,60,120.85,87,250,63.43,64,65,62.74,63,64,84.84,56,250,55.37,57,67,138.86,181,250,63.94,65,66,106.36,100,250,65.99,65,66,87.41,55,250,60.0,37,5,112.34,107,250,41.31,27,6,62.43,64,63,67.65,39,12,142.35,177,250,65.18,66,67,99.62,62,250,79.4,74,64,61.43,63,64,77.06,84,107,54.8,52,58,66.65,65,65,62.12,63,62,93.37,51,250,59.47,62,65,66.22,67,69,66.52,66,66,88.58,72,3,64.99,65,65,64.23,65,66,61.43,62,62,121.18,123,250,63.85,64,64,67.62,68,69,63.88,63,66,84.46,33,250,110.76,73,250,63.59,63,64,69.55,63,250,64.04,64,65,64.15,65,66,66.46,67,68,56.17,38,2,63.41,64,63,61.5,63,63,66.25,64,65,64.53,66,66,62.34,62,65,68.89,65,65,64.61,68,71,64.21,65,63,228.38,250,250,65.38,66,69,62.54,64,63,58.26,60,64,62.88,64,64,5.76,4,2,66.57,67,68,63.23,64,64,65.91,67,66,65.07,66,66,67.27,66,68,99.28,66,250,66.47,66,67,64.55,67,70,60.49,55,68,68.41,68,67,62.27,64,65,96.89,58,250,64.14,64,64,68.04,61,250,65.02,64,63,68.19,66,67,66.19,66,67,69.23,69,74,67.68,67,68,91.24,54,250,67.02,68,71,61.89,66,69,66.84,65,69,64.61,65,65,64.75,64,62,110.27,94,250,87.17,63,250,113.7,95,250,55.57,43,2,62.71,56,250,56.76,59,58,62.59,62,66,89.36,48,250,71.33,48,37,61.98,63,64,85.98,52,250,69.81,52,250,64.93,64,66,86.03,64,250,69.8,46,250,71.63,58,3,61.35,61,58,71.9,68,65,101.1,69,250,70.72,69,69,62.67,63,64,78.94,60,250,104.45,80,250,67.37,68,69,69.04,30,250,130.69,117,250,76.12,43,250,79.98,67,61,47.79,41,3,60.37,56,68,95.33,83,250,0.948,0.03447 +VBS46311-6321STDY9453311,61.12,62,62,62.59,63,64,67.23,67,67,70.04,35,250,28.87,25,30,56.5,59,62,72.27,72,73,73.36,47,250,50.72,40,5,60.12,42,30,47.81,39,3,113.13,102,250,77.16,77,70,57.98,59,60,38.16,42,2,53.07,43,2,50.7,31,9,62.56,65,65,58.01,28,8,81.12,50,250,45.99,41,2,127.56,135,250,114.77,73,250,58.96,60,61,121.53,85,250,54.71,57,63,79.61,78,2,86.99,30,250,56.38,58,58,55.6,53,54,75.32,33,250,167.07,249,250,203.06,250,250,115.32,88,250,57.94,60,61,66.59,65,64,56.43,55,60,54.37,48,55,70.88,53,9,86.86,57,250,43.98,42,49,63.15,54,56,36.82,36,35,43.46,44,60,51.34,56,59,59.18,60,61,45.48,46,51,40.55,40,35,49.72,38,7,48.82,29,13,51.82,57,61,53.94,29,6,54.89,43,7,118.95,113,250,78.39,65,250,49.44,52,62,62.22,63,63,48.32,51,49,37.66,36,22,81.99,40,250,62.18,66,69,77.13,69,8,40.69,22,3,51.53,53,60,133.56,95,250,85.69,42,250,63.99,65,65,80.63,42,250,4.06,4,4,119.54,63,250,69.55,52,250,62.47,37,26,121.29,103,250,58.57,33,250,110.14,67,250,58.3,59,60,49.28,34,26,54.01,40,7,42.96,43,36,66.25,33,250,127.12,103,250,58.96,61,62,87.62,51,250,165.4,180,250,107.79,64,250,62.34,63,62,48.01,51,55,105.84,89,250,61.86,63,63,58.65,59,60,73.54,44,250,43.14,47,3,138.58,173,250,57.97,59,60,113.65,103,250,60.69,60,61,64.69,51,5,72.48,43,4,84.03,66,250,36.07,28,8,58.71,60,62,68.3,45,2,159.93,222,250,57.85,58,59,65.92,42,6,70.92,64,63,56.28,57,58,30.62,32,36,49.92,50,64,60.41,58,61,57.1,58,60,87.04,42,250,54.17,57,60,87.24,65,7,60.17,60,61,79.61,65,2,64.63,65,65,57.61,59,59,58.12,60,62,137.82,163,250,57.72,58,60,56.24,57,57,56.72,55,56,67.01,29,11,127.09,84,250,61.49,62,61,58.24,55,62,67.03,67,67,58.33,59,60,57.3,58,57,41.26,24,24,67.8,68,68,57.85,59,61,60.85,60,61,57.57,59,60,55.71,56,58,62.74,59,59,46.44,52,61,62.92,64,66,231.34,250,250,53.83,55,56,58.8,60,60,52.33,54,55,59.95,61,61,8.71,5,3,61.24,61,60,61.49,62,62,56.46,57,56,54.22,55,58,57.1,56,58,92.16,56,250,57.71,57,59,55.94,58,60,54.44,50,57,54.85,55,58,58.02,60,61,99.98,51,250,62.21,63,63,62.25,56,250,59.2,59,61,61.51,61,59,57.22,58,59,61.25,54,51,55.42,53,55,79.44,52,250,56.05,57,58,52.17,54,53,60.05,58,60,63.97,64,64,56.08,55,57,91.79,70,250,72.27,46,250,118.22,107,250,46.16,41,2,59.19,53,250,63.31,65,69,55.85,55,56,109.94,58,250,89.38,78,71,59.14,61,62,79.9,43,250,61.5,42,250,61.99,62,63,73.34,52,250,69.72,41,250,64.26,49,5,52.17,51,58,58.76,55,57,94.67,53,250,55.02,53,52,60.37,61,62,67.86,51,250,95.82,68,250,59.58,59,58,66.48,44,250,121.8,109,250,81.7,43,250,61.31,56,58,31.68,24,15,48.22,44,5,82.25,62,35,0.947,0.03439 +VBS46312-6321STDY9453312,73.02,74,75,73.98,75,76,76.49,77,78,87.35,54,250,31.26,23,5,68.96,71,75,80.5,77,75,96.64,67,250,79.46,75,9,88.87,68,250,61.93,51,5,118.61,131,250,83.69,84,82,70.74,72,74,49.4,51,2,56.6,49,2,73.94,47,250,71.23,73,76,59.91,36,250,93.1,71,250,64.05,51,250,133.48,110,250,133.72,86,250,70.74,73,75,130.17,97,250,69.35,70,250,130.59,137,250,107.25,49,250,70.23,73,73,82.2,72,250,90.8,58,250,169.71,249,250,220.69,250,250,120.05,91,250,70.11,72,73,74.41,76,75,71.79,71,71,65.46,61,250,56.49,54,2,86.71,61,250,61.23,60,62,74.61,68,72,43.85,42,42,51.73,50,34,62.7,69,72,71.52,73,75,52.98,55,64,49.91,49,35,60.98,54,55,58.79,35,250,61.78,68,72,62.38,27,250,70.68,59,250,147.88,145,250,75.12,47,250,59.96,65,74,73.65,75,75,63.68,68,70,46.15,44,34,94.29,58,250,69.44,73,73,136.98,114,250,62.24,48,250,67.4,70,70,149.17,224,250,83.61,41,250,74.31,76,78,86.14,55,250,9.07,7,3,131.43,92,250,92.03,76,250,73.8,50,250,143.63,165,250,69.55,44,250,108.31,73,250,71.44,73,74,51.71,36,34,90.96,88,5,52.02,49,47,68.73,39,250,142.94,115,250,70.87,73,75,95.73,65,250,130.03,129,250,116.09,74,250,74.25,75,75,61.95,61,72,139.89,141,250,73.41,75,76,71.19,73,74,84.95,52,250,60.75,59,2,154.13,248,250,71.13,73,74,113.48,96,250,73.85,73,73,93.41,86,250,77.9,52,2,107.48,81,250,45.85,29,2,70.77,73,75,81.91,44,37,139.86,149,250,71.49,73,74,85.2,62,12,89.7,81,76,68.79,71,71,42.53,38,22,54.98,58,60,73.66,72,74,70.45,72,75,99.8,61,250,66.55,70,72,105.7,84,69,73.47,73,74,95.19,81,4,75.79,76,76,71.67,73,74,69.99,72,72,134.44,132,250,71.17,72,74,72.85,73,74,70.33,70,71,82.91,51,8,129.4,98,250,73.47,74,76,69.33,62,4,76.44,77,78,71.22,73,74,72.7,73,75,48.99,29,3,77.12,78,78,69.98,72,74,73.4,73,73,71.51,73,74,68.48,69,73,77.13,73,75,66.58,70,69,73.85,76,77,228.56,250,250,70.1,71,73,70.78,73,76,64.33,68,71,71.56,73,72,4.39,4,4,73.76,74,74,73.31,75,75,71.05,73,73,69.22,71,73,71.85,71,71,105.56,75,250,72.25,71,71,69.69,72,73,66.42,63,70,70.56,71,71,71.13,74,74,112.99,65,250,74.06,75,76,74.65,70,250,72.0,72,76,77.09,75,74,70.53,72,73,77.21,73,75,73.73,72,74,85.17,58,250,70.7,72,74,66.9,70,72,72.82,71,69,75.46,76,77,70.46,70,72,127.02,122,250,85.13,64,250,126.11,120,250,62.46,56,3,71.47,66,250,73.99,76,81,71.9,70,69,113.23,67,250,116.54,103,250,71.23,73,74,91.06,59,250,82.0,49,250,74.4,73,77,94.61,69,250,77.63,50,250,82.7,66,250,65.56,66,69,75.64,71,68,110.61,75,250,72.28,71,72,72.02,74,75,89.26,78,250,106.38,80,250,74.66,75,77,72.43,46,250,149.42,159,250,102.34,64,250,75.74,70,74,39.83,32,2,62.07,58,56,104.45,79,250,0.949,0.0345 +VBS46313-6321STDY9453313,52.73,53,54,53.62,54,54,56.71,57,57,74.45,37,250,31.45,23,3,47.68,49,49,59.22,59,60,58.69,43,11,81.97,69,3,64.06,51,41,48.38,41,29,112.91,76,250,61.96,62,64,50.64,51,52,31.76,32,4,45.0,36,4,36.75,29,8,53.93,56,57,42.43,25,2,79.27,50,250,42.63,35,2,95.1,84,250,119.34,90,250,51.11,52,53,108.6,65,250,48.17,46,49,99.32,84,5,79.57,32,250,50.41,52,53,48.47,48,49,71.51,32,250,162.28,249,250,190.92,210,250,96.85,55,250,50.16,52,53,55.16,55,49,50.37,48,54,48.52,41,39,35.15,27,9,79.56,50,250,41.36,39,44,55.14,45,49,31.55,31,23,37.63,38,56,44.84,49,49,51.24,52,53,38.29,39,46,36.57,36,21,42.68,35,9,48.52,30,27,45.61,49,56,45.77,24,3,47.81,41,6,112.67,97,250,75.07,64,250,42.5,45,57,53.32,54,55,42.6,45,45,35.04,33,27,82.28,38,250,51.83,55,62,69.09,66,3,45.47,31,3,44.87,47,47,148.2,211,250,62.44,18,2,54.48,55,55,73.44,37,250,14.57,14,5,113.71,75,250,63.96,47,250,49.99,35,18,107.76,83,250,53.9,33,10,99.52,62,250,51.05,52,52,45.81,31,18,89.63,56,250,36.52,35,33,59.53,30,250,113.48,83,250,50.89,52,53,82.17,50,250,149.62,155,250,112.42,57,250,53.67,54,54,45.71,47,48,108.84,82,250,53.13,54,54,51.0,52,53,63.11,34,250,38.86,42,3,101.49,126,2,50.79,52,53,80.82,74,250,53.34,52,52,55.93,40,4,69.53,36,8,73.6,57,20,31.63,16,4,50.93,52,52,58.98,37,24,130.39,99,250,50.61,51,52,79.72,41,250,62.82,56,48,49.22,50,51,47.98,49,2,34.83,36,49,52.67,51,53,49.86,51,52,88.0,44,250,47.22,49,51,80.83,54,50,52.63,52,52,64.66,55,29,55.22,55,55,50.53,51,52,50.17,51,52,99.24,107,10,50.49,51,52,50.81,51,51,50.83,49,49,79.91,38,250,135.53,168,250,53.22,53,54,53.52,51,56,57.07,57,57,51.18,52,53,50.87,51,50,42.63,23,2,56.94,57,58,49.87,51,53,52.36,52,53,51.07,52,52,49.43,49,50,56.0,51,53,46.52,50,55,53.82,55,55,230.83,250,250,48.49,49,49,50.69,52,52,46.28,47,50,51.57,52,53,6.11,6,7,52.73,53,54,52.85,54,53,50.37,51,51,49.09,50,52,50.6,49,51,78.95,39,250,50.86,50,52,49.17,51,52,48.03,44,50,50.43,50,52,50.25,52,55,102.12,44,250,53.61,54,55,54.7,48,50,50.63,51,49,57.4,54,52,50.5,51,51,51.84,49,49,52.63,50,54,69.11,35,250,49.26,50,49,46.76,49,53,52.58,51,51,54.77,55,55,52.03,50,50,88.25,67,250,61.73,45,250,98.63,74,250,39.71,33,2,53.67,46,250,55.0,56,59,49.6,48,52,114.34,53,250,52.42,41,39,51.18,52,52,76.24,36,250,59.21,36,250,53.39,52,49,53.89,40,19,54.82,33,250,59.65,47,2,47.96,45,46,52.29,49,49,89.37,45,250,50.38,49,49,52.16,53,54,65.83,44,3,73.5,55,8,52.73,53,55,71.67,37,250,130.42,114,250,63.4,35,250,56.83,52,52,38.19,35,5,42.55,39,4,74.18,59,5,0.947,0.03427 +VBS46314-6321STDY9453314,46.57,47,47,47.42,48,48,50.2,50,49,62.97,30,250,21.16,15,4,42.95,44,45,51.77,53,55,55.21,31,4,46.38,49,5,45.13,30,15,37.64,31,8,72.73,63,11,53.32,54,58,44.52,45,46,29.18,31,3,37.86,23,2,36.1,27,19,46.05,48,49,36.12,17,11,70.63,42,250,33.75,34,4,99.51,86,250,113.83,60,250,45.01,46,47,106.89,67,250,41.08,40,45,91.51,67,5,75.05,26,250,43.32,44,44,44.01,41,41,65.25,29,250,80.38,88,44,220.24,250,250,94.27,54,250,44.18,45,46,49.89,50,47,46.2,43,47,43.89,37,40,30.94,28,4,69.4,43,250,37.93,35,40,52.43,41,40,27.36,26,24,31.61,32,13,38.93,42,47,45.28,46,46,34.16,34,30,31.14,31,29,37.12,28,23,35.4,24,18,39.83,42,43,28.23,19,3,42.8,35,7,83.48,74,250,80.08,66,4,37.73,41,48,47.37,48,48,37.47,39,41,29.41,27,19,78.95,33,250,46.16,48,48,65.85,36,6,33.05,18,19,40.15,42,44,136.78,135,250,65.91,23,10,47.97,48,49,68.87,31,250,23.87,16,3,86.04,66,250,57.13,37,250,55.83,41,11,95.18,94,250,46.46,25,9,88.65,36,250,45.08,46,46,48.7,35,11,54.99,44,14,32.42,32,31,52.14,24,3,118.14,91,250,44.73,46,46,75.36,40,2,154.79,145,250,101.2,46,250,47.38,48,48,38.34,39,41,89.34,63,250,46.97,47,48,44.9,45,47,54.09,29,26,35.47,34,43,90.11,112,8,44.99,46,47,74.89,65,250,47.13,46,47,43.92,26,6,62.84,34,4,77.65,63,11,23.34,20,4,44.87,46,47,46.17,28,17,131.03,87,250,44.78,45,46,32.96,30,11,54.5,49,45,42.99,44,45,50.99,52,80,34.93,35,37,46.14,45,45,44.2,44,45,83.83,33,250,41.72,43,45,58.31,45,5,46.81,46,46,39.91,36,34,48.91,49,49,44.78,45,46,44.62,45,44,87.45,97,32,44.9,45,46,44.09,44,45,44.43,43,43,52.27,23,6,107.48,85,250,46.47,47,48,42.27,43,48,50.06,50,50,45.04,46,47,44.96,45,47,25.65,14,7,50.91,51,50,43.98,45,46,46.6,46,46,44.76,45,45,43.38,43,46,49.99,46,46,36.86,39,39,47.92,49,48,229.4,250,250,42.3,43,44,45.08,46,48,39.98,41,43,45.89,46,47,3.52,3,2,46.79,47,46,46.76,47,48,44.38,45,46,42.99,44,43,45.08,43,43,76.34,34,250,44.81,43,44,43.97,45,46,42.4,39,43,44.6,43,43,44.33,46,49,77.41,35,250,47.23,48,48,46.82,43,43,44.68,45,49,50.48,47,48,43.28,45,44,46.91,44,45,46.41,43,45,58.44,25,250,43.71,44,45,41.29,43,45,47.08,45,45,48.47,49,48,44.23,43,46,72.47,57,250,55.6,36,250,79.93,54,250,34.21,29,6,47.93,40,44,47.44,50,51,42.71,42,44,82.04,31,250,50.8,47,42,45.08,46,47,69.61,34,250,53.28,34,2,46.11,47,44,57.44,45,10,55.21,29,250,52.28,41,2,41.22,39,42,48.28,45,46,75.14,37,250,44.54,43,42,46.13,47,47,46.4,33,5,77.23,59,5,46.66,46,46,56.82,21,250,102.77,93,250,58.44,32,24,45.85,43,43,25.62,25,2,36.78,34,5,73.79,55,3,0.947,0.03424 +VBS46315-6321STDY9453315,40.01,40,40,40.49,41,41,42.76,42,42,67.81,27,250,21.09,17,3,36.49,36,35,43.72,43,43,55.07,34,3,51.29,50,2,58.14,48,17,35.03,31,3,70.87,63,8,45.51,45,46,38.49,39,39,25.62,25,2,39.5,29,2,36.48,29,3,38.72,39,40,49.68,21,2,60.12,35,35,37.08,29,4,89.35,71,250,108.53,60,250,38.69,39,40,104.97,68,250,37.09,35,41,90.78,77,6,76.89,26,250,37.04,38,40,39.05,35,39,67.67,28,250,134.86,179,42,180.49,208,250,89.48,52,250,38.14,39,39,42.62,42,40,40.04,35,38,39.15,31,31,36.72,35,7,59.3,34,30,34.51,31,32,47.5,35,39,24.83,23,20,28.78,29,21,33.98,37,41,38.94,39,39,29.32,30,36,26.98,27,23,32.61,25,6,39.27,27,14,32.69,35,39,37.21,21,4,37.0,31,33,83.18,75,2,57.79,37,2,31.9,32,42,40.14,40,41,32.32,34,31,24.45,25,14,72.51,27,250,37.28,39,40,45.73,31,5,32.97,21,20,33.69,35,33,132.26,118,250,68.81,24,2,41.29,41,42,72.16,38,250,3.98,3,2,79.42,54,250,52.86,34,250,52.07,31,14,98.95,91,250,45.46,25,250,89.14,54,250,38.8,39,40,46.47,37,34,63.06,46,9,27.42,26,23,49.69,21,5,112.96,82,250,38.42,39,40,70.15,33,250,179.93,217,250,104.06,42,250,40.72,41,40,34.55,35,34,81.2,56,21,40.18,40,40,38.78,39,39,51.59,31,14,27.35,28,2,77.32,96,11,38.47,39,39,81.12,83,250,41.08,39,39,49.38,27,3,60.2,36,3,74.85,53,14,22.72,21,5,38.47,39,40,44.55,29,16,120.43,129,250,38.34,38,39,56.4,37,7,48.2,44,34,36.94,37,38,26.07,28,33,24.53,18,5,40.66,38,38,38.15,38,38,79.13,28,250,35.87,37,39,32.5,34,34,40.08,39,39,52.36,49,16,41.62,41,41,38.24,38,39,38.0,38,38,84.66,90,15,38.24,38,38,38.28,38,38,39.19,36,37,77.13,33,250,124.54,91,250,40.04,40,40,40.79,36,38,43.16,43,42,38.91,39,40,38.66,38,39,34.37,20,2,43.16,43,42,38.19,39,39,40.16,39,39,38.24,38,38,37.2,36,36,43.9,39,39,32.0,35,43,40.19,41,41,226.4,250,250,36.98,37,38,38.6,39,40,35.76,36,38,39.36,39,40,5.96,3,4,39.32,39,39,40.06,40,40,37.96,38,39,37.23,37,38,39.65,38,37,76.96,37,250,39.67,38,38,38.07,39,39,39.15,33,36,38.77,37,37,38.53,40,42,88.49,44,250,40.37,40,40,44.16,37,39,38.83,37,38,44.65,40,39,37.68,38,39,40.48,37,37,39.95,36,36,70.17,40,250,37.72,38,37,35.05,36,36,40.87,38,38,41.2,41,41,38.03,36,36,71.79,56,250,57.99,37,250,96.44,75,250,34.04,28,2,42.71,35,35,40.92,43,46,38.07,36,38,82.36,34,250,36.64,21,18,38.75,39,40,69.9,31,250,41.51,27,3,41.6,40,43,56.15,36,250,45.89,25,250,47.34,37,4,35.43,33,34,41.12,37,39,74.33,36,250,39.54,37,38,39.4,40,39,53.87,39,4,74.94,54,250,40.41,39,39,67.05,44,250,95.58,75,3,69.74,35,14,40.62,39,40,25.24,21,20,31.71,29,4,77.59,54,4,0.946,0.03426 +VBS46316-6321STDY9453316,49.96,50,51,50.86,51,52,53.76,54,55,62.92,25,250,23.23,21,21,47.17,48,51,55.75,56,57,57.71,33,10,75.42,40,250,60.24,54,3,40.09,35,2,70.9,65,250,61.18,61,58,47.82,49,50,31.85,33,4,38.95,29,2,40.83,20,4,48.71,50,48,46.05,24,250,62.28,45,250,34.84,30,2,108.38,93,250,120.22,86,250,48.19,49,50,101.01,53,250,45.83,45,50,104.42,61,250,86.29,34,250,46.03,47,50,48.65,46,48,64.36,31,250,149.97,185,250,191.8,221,250,101.84,63,250,47.58,49,49,52.81,53,54,47.71,45,48,45.53,38,39,52.95,32,6,58.75,41,38,39.85,38,42,53.88,42,42,30.93,30,28,34.21,32,20,43.22,47,47,48.69,49,50,37.26,38,25,33.09,33,28,37.67,30,13,34.39,25,25,42.41,47,50,40.47,24,2,46.64,38,40,79.9,64,250,103.17,108,3,38.7,41,44,50.68,52,52,41.68,44,47,30.36,28,22,80.01,31,250,49.35,52,52,47.32,38,22,32.33,19,16,42.88,45,45,139.53,177,250,71.13,28,2,51.7,52,52,71.3,33,250,8.75,3,2,79.1,50,250,60.53,42,250,41.08,30,20,107.44,106,250,47.86,34,2,90.16,47,250,48.2,49,49,47.5,45,47,53.62,40,7,33.91,32,26,55.52,26,8,111.02,66,250,48.24,49,50,65.17,40,4,126.7,121,250,101.66,52,250,51.02,51,51,40.55,42,47,85.52,60,250,50.34,51,51,48.17,49,50,62.41,37,22,33.58,33,4,96.96,124,12,48.01,49,49,75.48,62,250,50.43,50,50,49.19,37,3,60.68,34,2,60.92,57,44,28.21,22,2,47.95,49,50,45.98,28,15,120.73,72,250,47.88,48,49,30.96,30,10,58.81,51,37,46.35,47,49,24.04,25,25,36.3,36,44,49.45,48,50,47.37,48,48,88.88,43,250,45.05,47,48,35.96,39,43,49.85,49,49,55.54,39,2,52.46,53,53,47.84,49,49,47.28,49,49,56.71,60,6,47.8,48,48,47.45,48,47,47.45,46,48,52.66,30,7,72.28,62,4,50.49,51,51,45.59,44,5,53.82,54,52,48.44,49,50,48.28,49,50,25.73,14,9,54.62,55,56,47.63,49,50,50.41,49,49,47.57,48,49,46.34,46,49,52.48,49,49,41.82,45,51,51.39,52,51,229.21,250,250,45.43,46,46,48.08,49,50,42.68,44,47,48.96,49,49,4.46,4,4,49.73,50,49,50.25,51,51,47.47,48,50,46.13,47,48,48.79,47,48,77.78,33,250,48.76,47,49,46.8,48,49,44.16,41,42,47.18,47,48,47.47,49,50,84.46,41,250,50.84,51,52,51.56,46,46,47.52,47,47,53.68,51,51,47.41,49,50,49.66,46,47,51.23,48,47,56.7,27,250,47.13,47,48,43.78,46,48,50.09,48,49,51.95,52,52,46.62,46,49,86.3,65,250,59.07,38,250,96.15,71,250,40.02,30,3,50.69,43,46,51.86,53,53,45.91,45,47,83.87,32,250,52.13,47,47,48.34,49,50,69.29,34,250,52.03,36,2,49.24,50,53,57.22,40,5,54.02,29,250,57.22,42,2,42.55,41,43,50.41,48,52,81.47,44,250,48.06,46,48,49.43,50,50,52.48,35,10,79.02,58,250,50.37,50,50,57.35,23,250,109.24,85,250,60.83,33,26,43.97,42,45,28.84,25,2,38.22,36,44,56.02,47,23,0.946,0.03433 +VBS46317-6321STDY9453317,55.85,56,57,56.99,58,58,60.51,61,61,68.86,30,250,33.45,27,17,53.29,54,54,61.17,61,57,68.3,41,2,58.8,46,2,50.32,40,40,44.39,38,2,128.84,102,250,66.67,67,65,53.55,54,55,36.76,39,2,46.55,38,2,45.53,33,7,57.33,59,60,43.1,25,3,68.89,48,250,39.95,36,3,106.42,99,250,120.99,65,250,53.96,55,56,112.36,66,250,52.3,51,2,129.45,115,250,87.69,30,250,52.57,54,53,58.71,50,250,72.13,33,250,159.36,248,250,169.05,184,250,110.5,63,250,53.0,55,55,58.03,58,57,53.25,51,55,50.48,44,49,38.47,35,3,80.76,47,250,43.8,42,48,57.6,48,250,34.66,33,28,39.14,37,25,45.7,51,57,53.98,55,57,39.12,39,41,38.63,40,52,47.11,32,7,40.68,25,26,46.84,51,50,49.09,24,2,50.45,42,3,115.84,82,250,76.37,66,250,44.42,45,53,56.92,58,58,44.47,47,47,34.95,33,21,77.75,33,250,56.49,59,60,81.78,60,250,43.08,25,26,46.84,49,52,128.21,128,250,81.13,42,250,58.1,59,59,73.8,36,250,16.11,8,3,123.79,117,250,63.99,49,250,57.6,29,17,108.22,76,250,50.33,30,9,101.91,67,250,53.59,54,55,50.14,41,25,84.99,78,3,38.54,38,36,61.77,31,3,120.75,79,250,53.83,55,57,84.23,46,250,116.13,116,250,106.48,52,250,57.02,58,58,41.85,43,48,100.05,75,250,56.45,57,57,53.77,55,56,66.59,34,250,42.99,41,53,124.57,146,10,53.54,55,55,89.63,72,250,55.91,55,56,59.52,30,2,60.07,47,4,117.81,116,72,28.1,17,2,53.8,55,55,52.47,31,17,127.61,95,250,53.36,54,53,34.85,31,21,65.46,60,48,51.83,53,55,27.37,28,25,44.14,45,47,55.32,54,55,52.21,53,54,88.1,43,250,50.09,52,54,63.14,52,50,55.64,55,55,64.44,51,20,58.84,59,59,53.28,54,55,52.86,54,55,105.71,119,28,53.2,54,55,53.08,53,54,52.9,51,51,76.41,38,250,122.28,130,250,56.27,57,57,54.42,50,7,60.38,61,59,54.03,55,56,52.97,53,52,29.1,14,2,61.47,62,61,52.81,54,56,55.65,55,55,53.67,55,55,51.12,51,54,57.43,54,56,46.57,47,46,57.49,59,57,227.09,250,250,50.06,51,52,54.29,56,57,47.19,49,53,54.71,55,56,6.35,6,4,55.84,56,56,56.17,57,57,52.68,54,53,51.64,52,54,52.95,51,52,80.55,36,250,53.35,52,55,52.12,54,56,47.89,43,26,52.02,52,54,53.18,55,56,101.21,49,250,56.76,57,58,57.65,52,53,54.05,55,56,59.13,56,58,51.06,53,55,56.3,52,54,53.36,52,54,66.04,34,250,52.52,53,54,47.68,51,54,56.47,54,53,58.29,59,59,53.6,52,54,80.66,55,250,63.42,42,250,100.24,69,250,39.79,36,3,54.59,49,54,57.39,58,64,51.1,50,50,95.16,44,250,74.67,77,4,54.25,56,57,76.12,42,250,58.88,39,2,56.87,57,56,60.63,43,2,56.02,35,250,66.39,52,3,48.03,45,44,54.3,49,48,80.38,52,250,53.54,51,51,55.19,56,57,60.78,51,3,78.85,63,250,55.47,56,55,79.12,57,250,126.15,110,250,77.43,40,250,51.22,49,51,27.09,24,2,40.19,38,51,61.75,57,4,0.947,0.0343 +VBS46318-6321STDY9453318,59.71,60,61,60.96,62,62,65.19,65,66,75.63,39,250,31.49,26,24,54.22,56,57,65.75,66,66,71.05,42,250,53.54,29,2,62.17,55,3,44.15,33,21,101.69,89,250,72.44,72,71,56.91,58,59,37.16,40,2,48.94,36,2,47.99,30,4,59.84,62,62,49.38,27,250,82.31,51,250,41.98,40,2,120.69,114,250,124.14,95,250,57.73,59,61,122.0,93,250,52.36,51,52,127.33,113,250,90.4,30,250,54.9,57,59,52.42,51,51,73.57,39,250,123.35,140,58,227.29,250,250,108.66,74,250,56.54,58,59,63.27,63,64,56.3,51,54,54.07,47,47,39.84,36,12,76.04,51,250,44.44,43,46,61.66,53,56,35.25,35,33,40.99,41,58,49.01,54,60,57.84,59,60,42.91,44,30,39.26,40,46,43.39,34,7,49.9,32,2,50.72,55,58,45.87,25,2,52.81,46,59,127.94,108,250,77.72,61,3,50.46,53,58,60.98,62,62,45.93,50,55,38.74,37,30,82.71,39,250,58.25,63,63,62.89,46,5,43.24,24,2,50.95,53,57,145.7,200,250,78.84,33,250,62.3,63,63,73.98,37,250,26.38,18,3,103.59,55,250,74.15,55,250,76.99,58,15,110.56,96,250,57.21,30,11,98.57,61,250,57.47,58,59,43.53,24,2,78.13,59,2,41.42,41,36,61.69,35,250,126.27,101,250,57.67,59,60,90.34,46,250,177.31,204,250,107.2,57,250,60.91,61,62,46.97,49,55,106.04,86,250,60.39,61,61,57.37,58,61,70.31,42,250,40.14,43,3,107.18,134,6,57.09,58,58,97.02,87,250,59.98,59,59,54.37,37,2,73.31,41,250,103.77,93,250,41.01,28,4,57.21,59,60,62.95,30,10,143.97,173,250,57.04,58,58,70.73,44,15,67.68,61,52,54.94,56,58,34.48,36,43,45.02,44,27,58.52,57,58,56.24,57,59,89.92,42,250,53.07,55,58,101.23,66,50,59.41,59,58,67.2,56,20,62.89,63,63,56.89,58,58,56.42,58,60,112.32,127,250,56.72,57,59,55.82,56,55,55.96,55,57,72.95,23,7,121.24,101,250,59.91,60,60,56.52,53,60,64.83,65,66,57.14,59,61,56.82,57,58,42.8,27,3,66.02,66,66,56.35,58,59,59.69,59,59,57.03,58,59,54.96,55,58,62.92,59,61,47.53,50,51,62.22,63,63,231.21,250,250,53.59,55,56,58.01,59,59,50.65,53,56,58.62,59,60,6.18,4,2,59.82,60,60,60.12,61,62,56.34,57,57,54.86,56,58,56.58,55,54,90.23,54,250,56.63,55,58,54.9,57,57,53.49,50,57,55.86,55,57,56.96,59,62,106.34,53,250,60.8,61,62,59.49,54,55,56.58,57,60,64.19,61,61,56.48,58,62,58.6,54,54,56.05,54,55,77.99,45,250,55.11,56,55,52.2,55,56,59.04,57,58,62.41,63,63,55.04,54,54,98.49,80,250,69.44,47,250,100.84,73,250,42.51,39,2,59.41,51,55,61.73,63,69,53.52,53,52,107.37,61,250,75.89,72,2,57.76,59,60,80.1,42,250,63.99,42,250,58.92,60,61,69.66,55,250,60.19,37,250,69.5,54,2,50.13,49,51,58.16,54,54,88.18,50,250,55.53,53,52,59.0,60,61,65.12,50,7,100.44,76,250,58.43,59,61,59.75,28,250,120.26,115,250,78.7,45,250,56.16,53,57,31.22,29,2,43.27,40,30,78.34,60,27,0.95,0.03434 +VBS46319-6321STDY9453319,55.26,56,56,56.41,57,57,60.45,60,60,77.62,41,250,21.59,15,6,51.32,52,54,63.23,62,59,67.31,38,250,48.27,38,2,51.51,29,22,41.05,32,6,87.98,82,250,67.89,66,60,52.57,53,54,35.94,39,5,45.58,39,2,48.2,28,2,54.43,56,59,44.36,26,7,69.5,46,250,37.71,31,2,120.92,114,250,117.76,88,250,53.23,54,56,113.9,71,250,48.01,45,51,89.05,71,21,90.91,26,250,50.17,51,54,49.51,47,50,72.51,32,250,155.91,203,250,223.37,250,250,103.67,61,250,52.21,54,55,60.46,60,57,52.42,49,54,48.62,41,250,48.31,36,3,73.62,45,250,43.69,41,44,57.54,47,51,34.4,33,32,37.25,36,26,45.25,49,50,53.52,54,55,39.75,39,40,36.85,37,26,40.79,32,12,47.43,31,3,47.96,51,57,43.39,28,3,50.58,42,54,115.52,88,250,71.67,58,249,43.71,46,52,56.02,57,57,43.69,47,49,34.59,33,21,79.43,34,250,57.18,58,58,63.71,41,2,38.11,24,27,47.36,49,48,142.97,197,250,75.35,32,250,57.73,58,60,71.31,33,250,2.21,2,2,125.74,78,250,66.42,51,250,61.69,41,15,109.79,106,250,53.3,31,22,91.76,50,250,52.92,54,53,51.45,47,50,68.73,59,10,40.72,41,40,60.89,33,250,125.52,103,250,53.32,55,56,77.45,44,250,151.04,164,250,97.16,56,250,56.25,57,57,45.82,48,49,111.55,89,250,55.8,56,57,53.02,54,55,69.24,37,250,35.7,39,5,153.31,249,250,52.63,54,55,96.2,70,250,54.83,54,54,58.22,40,6,66.5,39,7,93.13,63,250,36.77,28,3,52.97,54,56,49.45,30,3,133.42,135,250,52.2,53,54,65.99,41,40,65.37,59,53,50.75,52,54,27.03,27,24,38.42,41,46,54.6,53,54,51.79,52,53,91.73,43,250,48.99,51,55,64.11,59,48,54.69,54,54,70.96,56,5,58.31,58,58,53.24,54,53,52.5,54,55,100.18,100,12,52.43,53,53,52.1,52,54,52.71,50,50,55.39,40,4,102.77,92,2,55.4,56,56,51.09,45,3,60.12,60,61,53.08,54,55,52.7,53,54,35.0,20,5,61.48,61,58,52.45,54,55,54.59,54,55,52.77,53,54,50.07,50,53,58.31,54,54,45.08,48,49,57.08,58,59,224.33,250,250,49.48,50,50,53.61,55,54,47.72,49,53,53.68,54,55,2.52,2,2,54.93,55,57,55.54,56,56,51.71,53,53,49.96,51,52,52.18,51,52,83.24,43,250,53.23,52,50,51.57,53,53,51.42,46,56,51.49,51,51,52.98,55,56,100.54,48,250,56.23,57,57,56.04,51,54,53.43,53,57,59.16,56,56,51.87,53,55,53.62,50,50,51.9,50,52,74.49,43,250,50.83,52,52,47.37,50,54,53.95,52,55,57.7,58,59,51.63,50,52,86.59,67,250,63.34,48,250,100.45,86,250,41.67,36,4,55.16,48,55,58.21,60,60,49.96,49,53,88.87,55,250,112.55,131,250,53.47,55,56,76.59,39,250,64.98,41,250,55.15,55,58,67.67,50,30,60.5,37,250,61.79,41,2,48.41,46,49,53.84,50,48,82.86,49,250,51.13,49,49,54.68,56,56,65.92,51,250,84.57,62,250,54.52,54,55,58.8,25,250,132.0,135,250,71.07,45,250,54.3,50,53,44.34,30,3,41.15,39,50,86.18,51,250,0.947,0.03435 +VBS46320-6321STDY9453320,53.04,54,54,53.77,54,55,56.54,57,57,71.09,38,250,20.1,14,5,51.95,52,50,59.66,59,53,61.48,38,2,60.79,49,2,55.96,42,2,47.65,42,27,75.51,74,250,61.23,61,61,50.98,52,53,32.32,34,2,46.15,38,8,47.35,35,2,54.64,57,57,49.44,26,250,69.98,49,250,36.35,35,2,120.37,112,250,108.28,70,250,51.28,52,53,111.51,72,250,48.7,48,54,51.94,45,6,76.65,28,250,49.75,52,57,49.63,50,56,75.03,36,250,163.07,228,250,134.8,134,250,104.6,77,250,50.55,52,52,56.01,55,49,53.48,49,50,51.35,44,44,40.29,38,14,70.49,49,250,41.89,40,51,55.16,44,48,32.9,32,28,37.97,37,57,45.11,49,49,51.9,53,54,37.5,36,31,36.41,37,30,47.8,32,9,47.37,30,29,43.45,46,54,39.57,23,4,45.94,40,48,108.93,102,250,80.27,73,250,41.99,44,48,53.75,55,55,42.7,47,49,33.98,32,25,79.13,36,250,50.16,53,55,69.87,49,250,45.61,34,5,47.63,50,50,147.41,217,250,78.2,32,250,54.38,55,55,70.6,32,250,7.49,4,4,125.4,107,250,68.74,50,250,64.8,39,16,108.17,90,250,52.49,32,250,90.18,42,250,51.42,52,52,53.5,49,48,76.91,73,2,37.96,37,40,62.09,33,4,121.64,79,250,51.37,53,53,70.24,36,250,148.36,181,250,102.45,51,250,53.87,54,55,42.0,41,45,101.91,79,250,53.38,54,55,51.57,52,53,64.76,37,2,37.09,41,5,82.43,101,12,51.27,52,53,81.41,66,250,53.67,53,54,59.3,35,6,76.15,32,250,123.13,124,141,33.43,24,2,51.08,52,54,58.52,30,5,100.99,89,250,51.25,52,52,64.56,36,9,63.32,59,50,49.57,51,53,25.57,26,29,48.11,45,44,53.38,52,53,50.69,51,52,92.2,45,250,47.6,50,52,88.55,64,3,53.29,53,53,68.6,47,3,55.44,56,55,51.51,52,53,50.29,52,52,89.88,97,21,51.21,52,53,51.82,52,52,51.06,49,51,81.88,38,4,135.45,169,250,53.02,53,54,48.81,47,2,56.12,56,58,51.63,53,54,51.12,52,52,39.65,28,3,57.24,57,56,50.6,52,53,53.85,53,52,50.98,52,53,49.67,49,52,55.74,52,52,43.55,48,50,53.95,55,54,223.33,250,250,49.05,50,51,51.27,53,54,46.23,47,50,52.33,53,55,4.71,4,2,53.54,54,53,53.18,54,55,50.89,52,53,49.79,50,51,51.89,51,51,85.28,49,250,52.12,51,51,50.5,52,52,47.84,43,48,52.3,51,52,50.77,53,55,96.43,48,250,53.71,54,55,54.94,49,47,50.65,51,53,56.19,53,54,50.94,52,54,56.2,50,52,53.71,50,48,75.2,42,250,50.26,51,53,47.1,49,50,53.44,52,54,54.99,55,55,51.46,50,50,82.8,55,250,68.78,46,250,111.66,100,250,43.87,35,4,53.56,46,47,51.14,51,50,49.27,48,50,81.27,34,250,60.96,53,47,51.34,53,53,72.97,37,250,65.18,39,2,52.97,54,54,66.34,44,250,56.68,35,250,59.55,40,3,47.47,45,51,54.89,51,50,85.24,44,250,51.36,50,51,52.45,53,54,62.62,46,4,83.78,59,250,52.92,52,50,64.57,35,250,124.0,119,250,69.25,43,250,56.38,50,50,43.3,31,2,42.72,39,5,77.39,60,11,0.947,0.03434 +VBS46321-6321STDY9453321,68.33,69,70,70.16,71,72,75.06,75,75,73.57,38,250,33.61,25,13,64.11,67,72,80.6,81,74,76.33,47,250,83.46,82,4,59.61,40,3,52.82,44,5,97.0,97,250,84.15,87,93,64.86,66,67,40.07,41,3,52.58,44,6,46.46,36,4,68.09,70,69,47.86,29,21,91.27,59,250,48.8,49,5,136.75,123,250,129.47,101,250,65.68,68,69,142.76,126,250,59.77,58,65,130.52,120,250,92.13,46,250,60.92,63,65,61.18,59,63,78.18,42,250,166.17,246,250,212.77,249,250,101.34,54,250,64.68,67,68,72.49,72,73,61.48,61,66,57.52,52,52,65.71,48,9,84.94,53,250,49.58,49,54,67.38,60,250,38.61,37,38,49.37,47,68,55.71,61,65,66.11,67,69,51.38,52,72,46.68,46,40,44.37,35,5,57.05,37,250,56.76,62,72,45.11,27,3,58.39,48,7,130.11,102,250,113.93,107,250,53.9,57,63,69.89,71,71,51.63,55,63,43.82,41,26,90.31,56,250,65.67,72,73,93.28,65,250,48.93,32,5,58.13,60,59,145.68,207,250,88.06,47,250,71.53,73,74,79.72,45,250,16.25,8,2,129.68,76,250,75.32,58,250,71.61,47,250,123.13,117,250,63.85,44,250,103.96,55,250,65.21,67,67,59.55,55,67,90.6,89,3,49.39,48,42,66.77,35,250,132.48,125,250,65.86,68,70,98.19,56,250,141.65,166,250,109.98,65,250,70.11,71,71,49.24,52,54,134.87,118,250,69.19,70,71,65.43,67,69,91.66,42,250,46.07,50,2,129.38,170,250,64.67,66,69,98.35,91,250,67.41,67,67,70.58,56,3,76.04,51,4,113.63,95,250,37.36,26,3,65.63,67,69,74.39,38,22,141.47,155,250,64.56,66,66,66.76,47,19,82.05,74,66,62.68,64,65,47.86,50,61,51.4,53,50,66.18,65,67,63.89,65,66,97.21,48,250,60.66,63,65,69.38,61,5,67.0,67,69,73.45,71,2,72.5,73,73,64.91,66,69,64.82,66,68,121.28,123,250,64.18,66,70,63.43,64,65,62.75,61,62,80.64,33,250,126.73,114,250,68.77,69,71,66.23,58,2,74.65,75,75,65.54,67,69,64.48,65,66,41.33,26,4,76.17,76,79,64.38,67,69,67.38,67,67,64.34,66,67,61.42,62,63,69.02,66,66,54.55,55,3,71.09,72,72,226.04,250,250,60.91,62,61,66.17,68,70,57.62,60,66,67.1,68,70,5.99,5,3,67.89,68,71,68.95,70,71,64.11,65,66,61.58,63,62,63.39,62,63,91.99,54,250,64.91,64,65,63.19,65,65,60.83,56,67,62.56,62,64,64.9,68,69,105.68,56,250,69.78,70,70,67.25,62,250,65.48,65,70,72.81,70,68,63.5,65,66,67.16,62,65,63.67,62,61,75.69,45,250,62.65,63,62,59.55,62,64,67.14,65,66,71.88,72,73,61.44,61,63,100.29,82,250,80.51,58,250,105.17,87,250,46.96,38,2,64.87,60,63,72.17,73,72,63.56,63,69,116.21,73,250,103.42,118,8,66.33,68,70,83.43,47,250,56.52,44,250,67.26,70,67,78.65,55,250,61.58,39,250,66.17,40,250,55.59,54,56,65.12,62,64,94.42,60,250,62.99,60,61,67.45,69,70,77.32,68,3,101.18,79,250,65.7,66,67,84.01,60,250,138.24,129,250,79.2,49,250,65.47,63,62,49.86,41,2,47.9,46,3,103.09,98,250,0.949,0.03429 +VBS46322-6321STDY9453322,75.5,77,78,77.0,78,79,81.13,82,82,79.93,39,250,39.99,31,12,70.1,72,76,84.1,84,85,87.38,56,250,77.91,67,6,59.39,42,40,64.51,61,3,148.27,184,250,91.63,92,85,72.47,74,76,45.03,46,2,56.15,44,4,60.07,47,6,72.63,75,74,58.96,36,2,92.15,68,250,52.1,48,3,148.25,161,250,137.06,113,250,72.67,75,77,143.12,110,250,67.97,70,78,111.28,89,250,102.22,56,250,70.68,74,76,72.47,68,70,76.97,46,250,171.61,248,250,222.27,249,250,126.23,94,250,72.24,75,77,79.63,82,85,70.85,70,73,63.09,60,250,72.79,66,11,84.99,63,250,59.56,59,62,72.62,67,250,46.18,44,45,56.08,55,35,62.27,70,76,73.61,75,77,56.57,58,72,51.56,53,78,63.09,51,6,48.02,37,5,64.1,70,79,63.37,32,8,65.89,56,8,129.57,125,250,104.25,96,2,61.15,66,75,76.6,78,79,61.85,66,67,47.72,44,34,86.62,51,250,72.71,76,75,95.75,75,250,56.83,37,250,64.42,68,70,149.4,236,250,79.91,31,2,77.98,79,80,82.18,48,250,4.42,2,2,125.31,84,250,82.76,69,250,72.82,57,21,143.2,165,250,61.15,42,250,115.27,83,250,73.11,75,76,64.28,63,14,114.23,96,250,53.54,54,65,73.01,41,250,145.07,130,250,73.19,76,78,101.99,63,250,196.18,250,250,117.57,74,250,77.07,78,77,60.47,64,74,116.29,101,250,76.25,78,78,73.25,75,75,101.63,62,250,55.1,63,4,148.11,227,250,72.42,74,77,118.63,107,250,74.92,75,77,84.21,48,250,64.64,38,250,123.26,122,92,43.87,32,4,72.92,75,77,80.29,46,7,146.7,180,250,72.78,74,76,70.55,57,12,88.12,79,62,69.91,72,73,63.2,64,2,51.23,54,71,73.97,74,76,71.28,73,75,101.29,53,250,67.89,72,74,45.26,43,27,75.07,75,76,98.5,77,37,79.39,80,80,72.6,74,76,72.24,75,78,151.38,195,250,72.2,74,73,72.88,73,72,70.25,70,72,86.31,29,250,135.65,155,250,75.48,76,77,70.13,65,13,80.65,81,81,73.25,75,76,72.43,73,74,46.67,28,4,82.55,83,82,72.09,75,76,75.48,75,77,72.7,74,75,68.69,70,76,77.88,75,78,58.94,65,67,77.31,79,79,227.39,250,250,69.24,71,73,73.37,76,78,65.0,68,71,73.24,75,77,4.32,4,2,76.38,77,77,76.0,78,78,71.96,74,74,71.0,72,73,71.98,71,72,98.77,63,250,72.58,72,75,70.82,74,76,64.94,61,71,72.8,72,74,72.04,75,78,109.22,60,250,76.98,78,78,75.09,71,250,72.63,73,74,80.84,79,80,70.81,73,77,74.31,71,73,70.54,71,73,84.48,59,250,71.57,73,75,65.59,70,75,72.75,73,76,78.82,79,79,70.64,70,71,107.83,90,250,83.12,64,250,128.01,125,250,61.62,53,4,75.19,70,250,77.04,79,76,69.02,69,72,105.59,56,250,111.31,130,12,73.41,76,77,86.77,54,250,75.24,55,250,74.2,76,82,84.31,66,250,64.56,45,250,68.4,38,250,64.28,65,71,78.1,73,69,96.62,62,250,69.96,69,72,74.41,76,77,78.88,59,2,116.86,103,250,74.44,75,79,79.68,57,250,146.34,142,250,79.97,56,250,76.8,70,70,49.08,37,3,58.43,54,5,117.72,98,250,0.948,0.03438 +VBS46323-6321STDY9453323,50.12,51,51,50.99,52,52,54.02,54,55,66.06,29,250,20.95,14,10,47.92,49,48,57.96,57,57,59.72,42,3,48.97,34,5,47.53,37,7,39.13,34,7,66.14,61,250,60.8,61,57,47.96,49,50,30.94,33,4,42.31,27,2,45.37,28,5,48.43,49,49,39.18,20,2,71.94,47,250,36.19,34,3,108.85,95,250,116.51,76,250,48.44,49,51,102.38,54,250,45.05,46,50,110.29,65,250,76.34,29,250,46.48,48,49,57.83,47,50,76.6,36,250,144.97,182,250,205.56,250,250,95.58,52,250,47.65,49,50,52.51,52,49,49.1,45,48,48.79,42,47,34.45,32,7,75.01,42,250,41.19,39,46,54.36,44,45,28.13,27,25,36.27,36,21,43.48,46,51,48.93,49,51,36.63,37,40,33.98,32,30,36.27,29,25,36.52,24,29,45.02,49,52,33.06,16,6,47.06,38,3,91.79,76,250,69.8,57,2,41.36,43,46,50.85,52,53,40.07,42,45,33.34,32,24,75.48,33,250,48.88,51,52,69.34,62,2,34.28,20,2,43.39,46,49,139.72,143,250,68.73,20,250,51.8,52,52,70.28,34,250,15.07,15,14,123.62,107,250,60.12,43,250,62.48,42,14,107.2,99,250,45.34,23,8,98.17,59,250,48.47,49,50,60.53,57,71,69.92,56,2,34.33,33,31,49.97,23,8,116.31,78,250,48.32,50,50,73.01,42,5,170.06,185,250,100.9,52,250,51.04,51,52,43.19,43,43,87.87,60,250,50.51,51,51,48.34,49,49,52.05,33,3,41.91,43,50,134.04,174,250,48.22,49,50,91.35,90,250,50.95,50,50,41.52,12,3,60.33,32,2,124.48,118,250,27.83,22,2,48.32,49,50,49.58,32,18,127.41,94,250,48.18,49,50,50.47,38,37,62.2,59,55,46.49,48,49,79.4,87,107,27.93,20,13,49.77,48,50,47.35,48,50,89.13,43,250,44.79,47,49,30.75,29,28,50.0,49,50,55.29,49,32,52.64,53,53,48.24,49,49,47.65,49,51,79.96,94,3,48.22,49,50,47.87,48,49,47.73,46,48,48.29,27,6,134.59,159,250,49.95,50,51,47.0,43,3,53.73,54,53,48.5,49,52,48.34,49,50,31.22,19,9,54.68,55,55,47.38,49,50,50.99,49,50,48.44,49,49,46.74,47,49,53.73,49,51,40.21,42,40,51.82,52,52,228.05,250,250,46.43,47,48,49.02,50,53,42.45,44,47,49.46,50,51,7.64,6,3,50.7,51,51,50.14,51,51,47.92,49,49,46.79,48,50,48.15,47,46,78.02,33,250,49.5,48,50,47.71,49,50,48.19,43,51,47.81,48,47,47.3,49,51,93.22,38,250,50.77,51,51,52.14,46,47,48.36,49,52,53.85,51,51,47.88,49,47,47.6,46,48,49.06,47,47,61.18,29,250,47.89,49,49,44.31,46,51,50.25,48,48,52.04,52,52,48.71,47,46,81.48,62,250,54.47,39,250,87.29,55,250,37.57,30,3,49.9,43,45,52.03,54,57,46.95,46,47,94.87,45,250,80.87,91,97,48.7,50,50,67.64,29,250,57.15,40,2,49.04,51,57,57.07,42,250,56.51,34,250,56.51,43,4,44.67,43,49,51.36,48,49,83.12,41,250,47.8,46,44,49.5,50,51,54.19,36,5,85.06,71,3,50.5,50,52,70.41,28,250,117.92,86,250,69.21,31,250,49.36,45,46,33.66,26,7,39.87,39,48,81.25,64,7,0.947,0.03426 +VBS46324-6321STDY9453324,46.98,47,48,47.78,48,49,50.36,50,49,62.09,30,250,26.69,22,3,43.77,45,46,53.11,51,49,53.14,32,3,79.49,40,250,49.61,40,15,35.91,29,2,67.21,66,85,55.84,57,57,44.89,46,46,27.1,27,3,39.95,29,4,38.64,29,9,45.03,46,49,38.53,20,11,63.11,43,250,30.31,30,4,102.37,88,250,113.6,85,250,45.24,46,47,103.94,64,250,42.18,42,45,88.47,73,3,83.42,27,250,43.1,44,45,52.34,43,44,70.95,30,250,161.81,249,250,177.9,196,250,98.22,58,250,44.8,46,47,48.32,49,55,46.22,42,45,43.78,36,37,58.12,36,3,73.95,41,250,39.08,37,46,52.22,42,250,28.2,27,25,33.74,32,21,36.75,40,40,45.94,46,47,34.31,34,38,32.19,32,21,33.66,28,3,40.67,22,17,39.32,43,50,37.13,20,2,44.88,35,3,104.89,90,250,66.23,57,2,38.31,40,44,47.46,48,49,37.2,39,43,30.46,29,25,75.88,31,250,46.29,49,49,71.06,56,2,34.31,19,4,40.95,42,44,137.88,164,250,64.41,26,2,48.59,49,50,63.9,28,250,3.2,3,2,111.34,61,250,56.88,40,250,39.94,29,13,106.12,64,250,43.94,26,2,85.66,36,250,45.45,46,47,33.21,20,17,81.58,69,2,32.0,32,32,52.81,19,4,109.76,71,250,45.24,46,47,73.34,39,2,120.4,111,250,100.19,62,250,47.69,48,48,37.85,39,45,84.76,57,250,47.28,48,48,45.43,46,48,55.93,32,2,37.89,37,5,115.73,134,2,44.98,46,46,82.71,82,250,47.51,47,47,54.96,33,2,46.69,29,5,98.19,95,79,32.39,18,3,45.18,46,46,47.03,21,8,89.47,69,3,44.74,45,46,62.37,37,11,56.12,53,46,43.51,44,46,33.47,35,34,41.42,41,3,47.05,45,46,44.54,45,46,82.28,35,250,42.2,44,45,58.13,48,42,46.64,46,47,62.72,54,30,49.09,49,49,44.98,45,47,44.4,46,47,98.1,101,4,45.0,45,46,45.14,45,45,45.66,43,44,66.88,35,2,119.6,90,250,47.29,47,48,46.06,45,52,50.16,50,50,45.19,46,46,45.36,46,47,31.21,19,3,50.53,51,50,44.91,46,47,47.28,46,46,44.9,46,47,43.83,43,45,50.26,46,45,38.68,41,46,47.97,49,49,224.88,250,250,43.31,44,43,45.34,46,48,41.05,42,45,45.86,46,47,4.0,4,2,46.95,47,47,47.01,48,48,44.46,45,46,43.15,44,44,45.46,44,43,82.19,45,250,46.14,44,45,44.5,46,46,43.06,38,44,45.04,44,44,44.42,46,49,93.97,41,250,47.64,48,48,50.92,44,46,45.03,45,46,48.19,47,49,45.29,45,45,45.56,43,42,45.41,43,44,70.15,36,250,43.58,44,43,40.43,42,45,48.25,45,45,48.74,49,49,45.37,43,46,80.81,58,250,60.0,41,250,81.55,59,250,37.61,30,3,46.39,40,40,47.23,48,47,42.6,41,46,93.38,46,250,97.22,111,116,45.71,47,47,69.8,39,250,48.61,35,2,46.44,46,51,54.93,41,2,51.43,30,250,50.25,25,2,41.38,40,44,45.72,44,45,85.2,41,250,45.1,43,42,46.28,47,48,59.94,45,7,84.4,68,250,47.04,47,49,55.38,29,250,95.25,70,250,55.1,36,10,44.9,41,38,33.24,23,3,36.95,33,2,81.23,59,250,0.946,0.0343 +VBS46325-6321STDY9453325,63.62,64,65,65.24,66,66,70.03,70,70,74.56,34,250,26.94,25,26,56.4,59,67,73.55,72,64,73.73,45,2,99.94,88,3,63.26,52,4,49.16,40,5,90.18,93,250,78.05,80,78,60.27,62,63,38.02,38,3,50.0,39,2,37.67,30,4,61.54,64,66,47.63,29,11,77.54,56,250,47.29,42,2,124.67,113,250,123.24,82,250,61.41,63,64,93.56,62,250,55.55,56,59,105.74,67,250,94.33,33,250,57.54,60,62,70.66,58,58,74.18,38,250,164.19,249,250,201.9,250,250,100.5,54,250,60.12,62,63,67.71,68,68,60.38,56,58,53.94,47,52,58.99,43,3,79.74,54,250,47.95,47,57,63.87,55,250,35.74,34,36,46.29,44,34,50.97,56,64,61.48,63,64,46.63,46,37,39.18,38,28,44.98,34,28,39.13,28,4,53.22,58,64,64.36,36,6,54.93,45,4,97.28,84,250,59.37,45,2,48.08,51,62,65.11,66,66,48.75,52,56,39.72,38,26,79.2,32,250,64.86,68,77,72.8,46,29,37.6,25,2,54.37,58,62,143.76,175,250,80.33,37,2,66.54,67,67,76.99,44,250,5.79,5,2,117.2,69,250,69.44,53,250,58.61,38,20,120.22,122,250,50.65,32,32,92.28,45,250,60.93,62,63,59.0,55,55,61.07,49,14,42.6,42,42,64.82,35,3,131.52,125,250,61.14,63,64,88.77,51,250,146.67,161,250,108.8,68,250,64.95,66,66,46.53,48,51,108.8,86,250,64.38,65,66,60.87,62,64,88.43,46,250,52.7,51,69,121.79,146,10,60.53,62,63,97.42,87,250,63.25,63,62,54.45,20,3,62.99,38,2,118.71,112,250,39.82,28,5,60.91,62,63,47.27,28,22,149.49,168,250,60.36,61,61,58.94,47,4,74.52,69,59,58.53,60,62,46.93,48,27,40.79,42,23,61.79,61,63,59.3,61,62,92.05,45,250,56.15,59,60,66.02,65,64,62.9,62,63,63.91,52,12,67.53,68,68,60.39,61,61,60.51,62,65,101.62,106,6,60.57,62,63,59.53,59,59,58.69,57,59,78.94,28,5,129.78,122,250,63.86,64,63,56.79,53,5,69.83,70,70,60.86,62,64,59.93,61,60,39.95,24,2,71.02,71,68,60.2,62,63,62.64,63,65,61.1,62,65,57.5,58,62,65.03,62,64,49.92,54,53,66.2,67,66,229.1,250,250,56.65,58,59,60.98,63,65,53.67,56,56,62.43,63,61,5.63,4,4,63.93,64,64,63.97,65,65,59.53,61,61,57.55,59,60,59.25,58,60,90.74,47,250,59.58,59,62,58.96,61,63,55.99,51,62,58.8,58,59,60.05,62,64,103.24,50,250,64.83,66,66,62.45,58,61,59.89,61,61,65.99,64,66,58.8,61,63,63.6,59,59,56.02,56,57,74.32,40,250,59.12,60,60,55.87,58,62,63.12,62,63,66.84,67,67,59.91,59,62,97.81,82,250,65.05,50,250,107.58,99,250,45.48,38,2,60.18,55,60,65.28,67,69,58.03,58,59,99.76,52,250,62.5,48,28,61.57,63,64,76.63,47,250,76.2,47,250,62.4,64,66,77.43,57,250,60.36,38,250,70.67,55,2,52.84,52,56,61.46,58,59,91.5,54,250,59.53,57,57,62.83,64,65,70.45,51,2,95.74,75,250,62.62,62,64,71.55,30,250,131.51,124,250,72.19,40,250,63.95,56,60,43.94,39,6,42.77,41,6,112.52,87,250,0.947,0.03439 +VBS46326-6321STDY9453326,57.02,57,58,58.34,59,59,62.65,62,62,70.16,39,250,27.55,24,4,50.73,52,53,66.37,65,67,70.08,41,250,63.95,55,8,59.95,38,3,51.34,41,28,101.25,104,250,70.18,70,71,54.25,55,56,35.09,36,2,46.98,41,2,35.47,22,5,56.11,58,59,46.68,27,250,71.51,49,250,42.48,40,26,95.98,80,250,123.51,79,250,55.17,56,58,114.54,70,250,48.24,49,53,119.57,55,250,84.44,29,250,52.26,54,54,49.14,49,54,70.6,35,250,117.75,139,61,201.74,245,250,108.62,80,250,54.0,55,56,60.76,60,57,52.58,50,49,51.22,45,46,36.16,28,7,78.6,47,250,41.37,40,44,58.94,50,57,33.09,33,28,40.75,38,26,48.25,53,56,54.96,56,57,40.86,40,34,36.89,36,33,36.83,33,3,59.97,51,2,47.9,53,54,41.77,29,4,49.8,41,61,105.82,92,250,70.79,57,3,44.52,47,51,58.1,59,59,42.71,46,49,36.67,34,29,79.19,31,250,54.69,60,66,93.2,77,250,42.38,27,10,47.36,50,52,145.99,193,250,72.03,34,11,59.93,60,61,72.35,40,250,21.98,18,2,121.62,65,250,63.5,45,250,50.77,37,11,108.88,95,250,51.91,28,13,85.36,49,250,54.7,55,57,37.31,24,24,71.34,63,5,40.53,39,38,56.01,29,6,127.39,100,250,55.17,57,58,90.79,54,250,153.01,188,250,109.83,58,250,58.28,59,59,42.42,43,43,99.3,72,250,57.73,58,58,54.51,55,57,63.24,36,250,39.9,44,7,107.49,133,4,54.02,55,56,98.44,85,250,56.94,56,56,62.31,44,2,50.98,31,3,72.82,62,2,30.01,21,6,54.75,56,56,60.31,44,12,150.26,156,250,53.61,54,55,91.8,53,250,66.74,61,55,52.42,53,54,59.82,67,2,37.2,37,37,56.24,55,56,53.72,54,55,92.43,44,250,50.81,53,55,97.01,57,50,56.14,56,55,62.48,49,3,60.27,60,60,53.82,55,55,54.32,55,55,78.28,73,9,53.46,54,55,52.81,53,53,52.97,51,51,79.74,41,3,123.34,125,250,57.57,58,57,54.45,49,2,62.57,62,61,54.21,55,56,53.42,54,54,50.39,34,7,63.05,63,62,53.65,55,57,56.84,56,57,53.7,55,56,51.91,52,53,59.87,55,54,44.06,49,53,58.75,60,60,231.15,250,250,50.46,51,52,55.2,56,58,48.48,50,54,55.96,56,58,4.05,4,4,57.17,57,58,57.48,58,59,52.58,53,53,51.88,53,53,53.08,52,53,88.41,54,250,54.5,53,55,52.05,54,54,49.07,44,50,52.26,52,50,53.92,55,57,88.22,54,250,58.08,58,59,58.76,53,57,55.04,55,58,57.99,57,57,55.24,55,54,53.17,51,52,54.97,51,55,79.88,43,250,52.24,53,50,49.56,52,52,56.11,53,53,59.74,60,60,52.62,52,52,81.06,59,250,68.26,49,250,91.9,64,250,42.26,31,2,55.72,48,250,59.88,62,68,51.39,50,49,82.07,37,250,60.28,49,43,55.13,56,58,75.38,39,250,53.47,37,250,55.86,56,60,65.28,45,250,58.71,34,250,53.4,31,2,46.83,46,50,55.66,53,56,78.21,44,250,51.56,50,51,56.32,57,58,61.1,51,5,84.67,62,250,54.31,54,53,60.44,34,250,122.47,108,250,71.8,46,250,59.76,52,48,28.3,24,4,42.76,42,47,94.8,88,5,0.948,0.03432 +VBS46327-6321STDY9453327,62.41,63,64,63.63,64,65,67.23,68,66,77.4,42,250,32.86,30,32,59.59,60,61,68.58,67,59,65.36,48,250,93.51,72,250,79.12,75,4,49.01,39,3,79.66,67,250,75.98,77,75,59.7,61,61,39.29,39,2,52.36,42,3,55.15,31,3,61.73,64,67,45.74,25,250,83.34,57,250,52.66,40,4,129.43,135,250,128.78,87,250,60.21,62,64,91.57,56,250,55.79,55,56,122.96,106,250,95.52,44,250,57.12,59,61,56.88,55,55,77.82,40,250,168.86,249,250,182.81,219,250,107.62,69,250,59.37,61,63,63.77,64,63,57.45,55,56,55.19,49,250,65.06,48,3,79.55,54,250,46.75,45,48,65.02,57,60,36.43,35,26,45.3,43,37,52.16,56,62,60.53,62,63,46.78,47,61,41.11,40,27,54.27,40,3,54.65,45,8,50.27,55,59,51.43,32,2,57.79,47,6,126.69,104,250,67.85,56,249,50.1,53,59,63.36,65,65,51.98,56,63,40.1,38,24,83.96,41,250,63.52,67,68,59.79,44,3,48.59,33,5,52.92,55,56,139.94,156,250,78.35,18,2,64.62,65,65,79.96,43,250,5.01,4,3,127.47,107,250,79.35,59,250,64.41,32,250,120.6,103,250,59.16,34,250,92.19,61,250,59.99,61,62,64.88,57,58,86.17,54,11,45.24,44,27,62.15,29,3,127.83,93,250,60.35,62,63,97.02,54,250,137.9,146,250,108.72,53,250,63.53,64,65,49.6,51,58,104.96,82,250,62.97,64,64,60.07,61,64,70.45,49,8,41.27,48,2,139.49,186,250,59.77,61,62,122.49,130,250,62.54,62,64,69.33,45,4,65.85,45,5,139.4,133,250,36.03,22,2,60.11,62,63,68.05,41,17,125.99,122,250,59.61,60,61,72.09,40,2,73.47,68,54,58.02,60,61,55.58,61,80,47.47,50,22,61.62,60,61,58.44,60,61,91.67,48,250,55.69,58,60,78.48,67,67,62.04,62,62,78.48,61,3,65.63,66,66,59.62,61,60,59.18,61,63,112.35,121,2,59.65,60,62,58.79,59,59,59.07,57,60,102.41,73,250,123.65,112,250,63.0,63,64,61.14,60,3,66.99,68,67,60.33,62,63,59.73,60,63,48.05,28,2,67.84,69,69,59.43,61,63,62.85,62,62,59.82,61,63,57.45,58,61,65.81,61,62,49.17,55,58,63.99,65,65,223.86,250,250,57.03,58,60,60.58,62,62,53.99,56,60,61.35,62,65,4.89,5,5,62.58,62,62,62.83,64,64,59.17,60,61,57.92,59,60,59.02,58,58,89.61,48,250,60.0,59,59,58.89,61,61,57.37,53,58,57.73,58,58,60.09,62,64,94.06,51,250,63.7,64,65,62.25,57,250,59.61,60,61,68.38,65,65,60.33,61,60,59.14,57,58,58.12,58,59,82.53,47,250,58.28,59,60,55.52,58,60,62.79,61,61,65.09,66,65,57.36,59,60,102.13,86,250,69.38,53,250,117.91,104,250,48.78,41,3,63.31,56,250,63.1,65,71,57.65,56,60,102.7,51,250,103.08,107,116,60.58,62,63,84.02,45,250,57.42,36,250,61.52,62,70,78.96,65,6,68.06,43,250,72.03,55,5,55.27,54,58,61.54,57,54,93.64,56,250,57.81,56,58,61.62,63,65,81.35,60,250,96.15,72,250,61.15,61,61,68.77,45,250,133.33,136,250,76.24,48,250,60.39,55,57,36.24,34,3,45.92,40,57,117.93,88,250,0.948,0.0344 +VBS46328-6321STDY9453328,55.71,56,57,56.79,57,58,60.81,61,60,72.23,36,250,28.84,22,3,53.21,53,56,65.6,64,58,64.13,44,250,101.1,84,250,57.09,41,39,40.39,31,21,76.19,71,13,67.9,67,65,53.04,54,54,34.9,35,2,46.74,38,2,47.67,35,4,56.52,58,59,57.98,32,250,73.43,46,250,39.72,33,3,112.32,99,250,120.86,70,250,53.6,55,57,122.35,83,250,47.34,46,50,117.01,104,250,79.73,31,250,51.62,53,53,65.5,51,250,75.9,36,250,129.16,150,51,152.05,146,250,110.57,75,250,53.0,54,56,59.63,58,50,52.87,49,49,50.74,43,45,40.15,31,6,66.75,50,250,44.66,42,47,58.19,48,250,34.22,33,31,40.02,38,23,46.27,50,53,54.07,55,55,39.55,40,36,36.35,36,32,49.17,34,2,50.93,32,250,46.09,50,58,44.53,26,2,53.42,42,27,113.34,106,250,55.05,35,250,42.71,44,48,56.68,58,58,44.3,47,51,35.8,33,29,77.76,32,250,56.24,58,60,54.53,41,8,41.02,25,2,47.91,50,52,140.44,138,250,65.72,21,2,58.14,59,58,74.74,38,250,5.98,4,2,119.65,96,250,69.32,52,250,57.71,33,20,118.45,117,250,57.01,35,2,103.94,57,250,53.48,54,55,54.96,51,52,79.78,62,3,38.66,38,35,58.54,30,250,123.5,91,250,53.76,55,56,80.51,44,250,187.88,236,250,109.24,59,250,56.85,57,57,41.53,41,47,102.21,77,250,56.29,57,58,53.5,54,56,69.5,37,250,52.32,47,2,143.34,186,250,53.42,54,55,108.03,104,250,55.75,55,56,55.37,22,2,80.59,47,250,87.63,63,250,29.48,20,2,53.25,54,54,53.29,28,9,113.88,75,250,52.98,53,55,75.41,43,12,64.63,57,54,51.73,53,54,54.28,60,7,42.03,43,58,55.33,53,53,52.63,53,55,91.3,42,250,49.57,52,54,30.83,28,27,55.13,55,55,69.41,53,2,58.57,59,59,53.05,54,54,52.71,54,54,90.2,100,10,53.45,54,55,52.19,52,52,52.69,51,51,82.72,43,250,145.74,182,250,56.2,56,57,51.4,47,2,61.03,61,62,53.95,55,57,52.98,53,53,44.15,27,3,61.84,62,61,52.63,54,55,55.89,55,55,53.04,54,55,50.84,51,52,59.58,54,54,48.34,48,48,57.47,58,60,232.11,250,250,50.4,51,52,53.56,55,55,48.07,49,52,54.67,55,56,3.31,3,4,55.71,56,54,55.95,57,57,52.18,53,55,50.96,52,54,52.83,51,50,81.38,41,250,52.99,52,53,51.31,53,55,50.25,46,54,52.21,52,51,53.01,55,53,103.47,50,250,56.59,57,57,57.82,52,52,55.63,55,55,57.07,57,59,53.02,53,53,54.39,51,53,56.76,51,54,74.51,37,250,51.9,53,52,48.83,52,55,54.35,52,53,58.1,58,58,52.98,51,50,93.99,76,250,64.87,44,250,108.3,92,250,43.09,36,3,55.73,49,250,58.42,60,64,52.4,51,53,104.63,52,250,63.72,49,40,54.25,55,56,74.64,40,250,62.97,39,3,55.06,55,60,59.63,44,2,62.09,37,250,57.97,49,3,49.83,48,50,55.22,51,52,88.79,50,250,53.59,51,51,54.9,56,57,70.08,45,250,75.58,57,250,54.85,54,57,74.34,38,250,129.31,116,250,75.11,38,250,55.46,50,49,39.22,28,3,43.4,40,53,98.31,61,250,0.948,0.03423 +VBS46329-6321STDY9453329,61.8,63,63,62.99,64,64,66.67,67,66,69.96,41,250,26.84,19,13,59.47,61,63,70.89,71,72,68.56,48,250,87.54,47,250,49.31,37,2,54.47,47,33,87.5,97,250,73.96,75,75,59.05,60,61,39.9,45,2,50.14,44,3,55.88,27,5,61.34,63,63,51.15,31,2,75.87,56,250,45.35,41,36,129.44,131,250,121.5,73,250,59.82,61,63,117.92,85,250,57.83,56,60,110.41,92,250,85.85,43,250,57.76,60,64,62.29,55,60,78.07,39,250,161.28,228,250,226.86,250,250,112.65,73,250,58.83,61,61,64.61,65,67,57.51,55,57,56.08,50,250,42.8,38,11,76.03,47,250,47.47,46,50,62.24,53,250,37.98,38,40,44.28,44,25,52.89,57,60,59.94,61,62,44.2,43,30,41.61,39,33,50.15,37,8,40.89,28,32,51.12,56,60,54.27,24,2,57.4,48,3,112.43,96,250,76.98,65,250,50.69,54,60,62.88,64,65,48.11,52,57,37.72,37,24,78.73,37,250,63.06,66,70,61.94,53,250,43.47,25,2,51.83,54,56,146.9,221,250,70.4,29,250,63.88,65,66,75.96,42,250,17.76,19,2,121.42,109,250,70.74,55,250,63.93,47,15,121.25,109,250,60.92,40,250,95.84,48,250,59.75,61,63,63.03,55,52,114.66,108,250,41.71,42,42,62.32,34,3,118.66,83,250,59.78,62,63,86.27,55,250,151.84,195,250,109.76,57,250,62.9,64,63,51.79,54,54,105.16,87,250,62.48,63,64,59.74,61,62,69.92,40,250,42.0,39,3,145.88,209,250,59.13,60,62,96.16,82,250,61.63,61,63,60.77,40,250,76.98,43,250,121.79,106,250,47.62,38,2,59.45,61,61,53.99,31,3,130.19,142,250,59.68,60,61,85.52,44,250,72.9,65,64,57.43,59,60,30.07,32,35,58.84,55,2,61.07,60,60,57.87,59,60,90.63,45,250,55.72,58,62,37.93,36,42,61.68,61,60,70.38,58,99,64.93,65,65,59.32,60,63,58.72,60,63,117.28,138,250,59.67,61,62,59.17,59,58,58.3,57,60,77.04,39,5,127.39,84,250,62.0,62,63,57.66,59,63,66.65,67,67,59.8,61,62,58.84,59,59,41.98,29,5,67.02,67,66,58.89,61,62,61.6,61,62,59.68,61,60,56.76,57,59,64.47,60,60,49.33,55,60,64.24,66,68,227.66,250,250,56.47,57,58,59.64,61,63,52.2,54,58,60.5,61,63,6.24,7,8,61.88,62,63,62.05,63,63,58.72,60,59,57.36,58,60,58.94,58,58,89.03,49,250,59.7,58,58,57.71,59,59,54.66,51,63,58.35,58,57,59.12,61,62,101.94,46,250,62.77,63,64,63.33,58,250,58.98,60,60,65.73,63,64,58.62,60,62,62.07,57,57,58.76,58,62,78.33,39,250,58.33,59,59,53.24,57,60,61.13,60,65,64.28,65,65,57.36,57,59,96.18,72,250,64.76,45,250,94.7,71,250,49.04,42,2,60.54,54,250,62.41,63,75,57.09,56,58,80.12,43,250,97.61,112,5,60.16,62,63,77.48,44,250,61.01,38,250,61.95,63,67,67.14,51,250,61.57,38,250,65.19,51,2,52.33,52,60,61.5,57,55,95.1,58,250,59.14,57,57,61.13,62,64,71.32,56,4,105.91,71,250,61.18,61,58,59.66,26,250,124.34,117,250,88.05,46,250,58.72,56,55,30.56,29,2,49.62,47,3,103.41,87,250,0.947,0.03439 +VBS46330-6321STDY9453330,66.21,67,67,67.98,69,69,73.51,73,73,80.04,51,250,21.87,17,6,58.65,61,66,76.35,75,74,72.94,50,250,78.99,80,6,63.92,44,26,51.53,43,2,93.51,90,250,84.99,85,77,62.48,64,64,39.38,41,4,51.51,41,2,50.12,40,2,66.11,68,73,43.53,27,250,82.37,56,250,42.86,34,5,119.22,100,250,128.03,89,250,63.95,65,67,112.29,72,250,53.78,54,64,81.18,33,11,74.28,27,250,60.15,62,61,68.62,58,250,78.17,41,250,142.25,167,250,134.07,136,250,106.34,61,250,62.56,64,64,71.37,72,71,59.16,58,59,54.96,48,250,82.48,49,250,83.03,53,250,48.65,47,52,63.95,55,250,40.39,41,44,48.38,46,36,51.89,57,59,64.06,65,66,48.28,50,50,43.53,42,30,45.82,37,20,55.56,34,250,57.59,63,70,55.07,26,5,62.37,50,250,105.96,88,250,109.4,105,250,52.27,57,63,67.59,69,69,53.02,57,65,40.67,39,25,83.67,32,250,68.28,71,72,68.47,54,35,46.91,33,38,54.36,57,57,141.96,185,250,85.96,36,250,70.4,71,71,78.32,44,250,5.44,5,2,124.19,67,250,72.95,57,250,70.44,44,250,127.87,130,250,62.27,35,250,112.07,80,250,62.97,64,65,43.63,27,30,86.56,78,5,48.65,49,53,66.13,35,250,127.74,94,250,63.27,65,66,88.55,55,250,138.81,142,250,107.78,60,250,67.82,68,68,47.76,51,58,107.54,97,250,67.11,68,68,63.15,64,66,73.37,39,250,53.27,50,49,138.49,175,250,62.32,63,65,102.44,88,250,65.36,65,65,59.76,39,4,64.22,43,6,111.82,99,92,32.83,24,7,63.43,65,66,66.08,33,21,129.55,119,250,61.45,62,62,56.66,44,13,74.68,68,55,60.56,62,65,49.52,37,19,47.23,48,47,63.81,63,63,61.59,63,64,93.24,44,250,58.42,61,63,41.96,40,22,64.55,64,64,69.87,59,4,70.18,70,70,62.0,63,64,62.1,64,66,140.43,169,250,62.22,63,66,60.21,60,62,61.86,59,61,79.86,28,250,132.88,152,250,66.81,67,70,64.09,57,4,73.06,73,73,63.27,64,65,61.35,62,64,30.53,15,5,74.43,74,72,62.79,64,66,64.69,64,67,62.29,63,64,59.3,60,60,65.88,62,63,53.12,56,58,67.99,69,70,234.72,250,250,57.28,58,59,63.18,64,65,56.25,58,62,65.08,65,63,2.84,2,2,65.31,65,66,66.97,68,69,60.95,62,64,59.86,60,61,60.68,59,63,92.41,51,250,61.87,60,61,59.73,62,63,61.87,58,60,59.47,59,56,62.09,64,67,107.13,50,250,67.7,68,69,65.83,61,66,62.8,62,61,68.62,67,68,59.91,62,60,62.7,58,58,60.27,58,59,71.63,39,250,59.57,60,60,56.11,59,64,63.6,62,64,69.63,70,70,59.69,58,59,102.77,81,250,73.88,54,250,100.51,75,250,55.7,38,3,62.08,57,250,69.24,70,64,59.56,59,62,113.21,48,250,125.1,148,250,64.16,66,66,81.24,49,250,61.72,36,250,65.68,66,65,71.49,46,250,63.08,39,250,60.37,34,4,53.78,53,56,63.06,59,58,93.69,58,250,58.44,56,57,65.43,67,67,70.82,61,4,85.11,64,250,64.13,64,62,83.92,65,250,127.42,116,250,79.71,45,250,61.33,58,59,43.7,37,6,49.99,48,59,111.79,113,250,0.947,0.03445 +VBS46331-6321STDY9453331,52.38,53,53,53.73,54,54,58.71,58,56,73.33,30,250,26.4,20,8,48.25,49,56,62.26,60,59,62.7,40,250,85.65,61,250,71.59,67,2,38.53,30,23,84.49,88,250,67.54,66,67,49.35,50,51,31.17,31,3,50.36,46,2,51.23,30,9,51.01,54,58,47.09,26,250,69.0,46,250,41.78,36,4,93.06,79,250,124.89,91,250,50.13,51,52,112.37,69,250,44.87,43,46,108.4,71,250,95.88,30,250,47.66,49,51,46.58,44,44,69.8,32,250,133.97,167,250,212.38,250,250,92.14,47,250,49.39,50,51,55.22,54,49,48.84,47,51,46.23,38,40,35.59,32,43,56.25,37,37,38.95,36,42,54.72,44,45,30.68,29,28,37.36,36,27,41.1,45,45,50.53,51,52,39.06,39,30,36.82,37,26,42.14,29,7,41.16,31,27,43.87,47,48,35.85,22,5,45.99,36,20,112.53,99,250,63.57,51,250,40.49,41,45,53.38,54,54,40.44,43,46,32.84,31,20,77.85,33,250,48.39,52,54,57.23,35,2,36.89,23,3,42.19,45,47,136.62,138,250,71.54,28,7,55.72,56,55,75.54,38,250,12.61,7,2,109.68,99,250,59.57,42,250,48.16,34,17,105.29,94,250,49.9,30,9,94.47,64,250,49.72,50,50,40.58,28,11,80.15,66,9,37.72,38,39,55.2,26,8,115.04,75,250,50.53,52,52,76.58,44,250,142.82,155,250,102.23,53,250,53.45,54,53,38.42,39,42,95.05,63,250,53.12,54,54,49.94,50,51,67.55,38,250,36.69,35,2,131.32,160,11,49.31,50,52,85.16,70,250,51.98,51,51,54.7,32,3,53.02,33,5,81.75,65,47,27.42,12,2,49.99,51,50,57.23,34,24,141.22,148,250,48.81,49,49,47.39,41,12,59.17,53,46,47.59,48,49,28.07,30,36,34.87,37,46,50.95,49,49,48.94,49,49,88.77,40,250,45.8,48,50,27.37,24,21,51.33,51,50,59.23,43,3,55.63,56,55,49.25,50,51,49.52,51,51,148.04,186,250,49.15,49,50,47.93,47,48,48.44,46,47,70.79,56,8,131.29,143,250,52.62,53,54,46.44,42,5,58.61,58,56,49.43,50,51,48.67,49,48,33.72,18,2,59.37,59,58,49.1,50,51,51.93,51,51,48.96,50,50,47.46,47,48,54.4,50,51,39.01,42,41,54.61,55,57,228.78,250,250,45.39,46,47,50.33,51,53,44.08,45,49,50.96,51,51,2.5,2,2,51.68,51,51,52.74,53,54,48.1,48,49,46.76,47,50,48.55,46,45,83.93,44,250,48.74,47,50,47.6,49,48,45.66,40,51,46.77,46,46,49.54,51,53,84.67,45,250,53.4,54,53,54.98,48,50,50.46,50,53,56.23,53,54,46.85,48,48,49.21,45,48,48.58,45,48,69.18,38,250,46.82,47,46,44.0,46,47,50.59,48,47,55.08,55,55,47.67,46,48,81.73,60,250,65.56,43,250,99.41,75,250,41.13,33,2,53.41,44,45,58.11,59,59,47.84,46,48,90.77,41,250,38.37,25,20,50.73,52,53,74.2,38,250,53.57,39,2,52.69,51,47,51.0,35,3,56.47,33,250,64.0,49,2,44.2,42,45,48.58,46,47,85.14,43,250,46.3,43,43,51.56,52,52,60.55,40,2,81.22,57,2,50.65,51,56,62.42,37,250,104.33,93,250,70.0,41,3,50.23,47,46,30.73,28,3,39.1,34,5,78.67,60,28,0.948,0.03424 +VBS46332-6321STDY9453332,32.16,32,32,32.43,32,32,35.0,35,34,55.47,23,250,16.85,12,3,29.14,28,27,37.35,37,38,45.18,23,7,32.31,30,3,38.85,26,17,25.19,19,6,58.59,57,68,38.2,38,39,30.12,30,30,21.88,21,2,31.38,21,2,32.93,21,3,31.3,32,33,40.43,16,13,54.64,32,28,26.29,24,24,82.24,71,250,82.81,47,250,30.78,31,32,89.8,46,250,29.2,26,27,54.94,32,5,62.09,15,250,27.77,28,26,27.79,26,27,50.9,22,10,120.05,157,22,185.35,244,250,81.83,37,250,30.56,31,31,35.06,35,34,32.16,28,30,29.96,19,20,23.63,21,2,55.56,29,250,27.67,24,26,41.47,28,29,23.02,22,18,24.53,23,12,26.25,27,29,31.46,31,32,23.41,23,19,22.57,22,28,25.04,19,13,26.76,17,16,29.22,31,33,30.57,22,5,33.1,26,29,82.62,63,250,46.69,32,4,26.54,28,30,31.71,32,32,24.88,26,27,21.43,21,14,75.51,23,250,32.82,35,37,40.27,29,16,30.64,17,3,27.08,27,27,128.32,148,250,52.9,15,6,34.83,35,35,58.51,23,7,8.71,5,2,79.65,37,250,48.65,32,250,30.06,20,6,80.36,71,250,34.92,17,6,81.44,28,250,31.23,31,32,32.21,16,16,71.52,56,7,22.49,22,24,51.41,21,3,100.44,64,250,31.17,32,32,55.48,28,3,98.49,97,14,96.82,40,250,33.51,34,34,27.57,27,23,70.18,49,7,32.3,32,32,30.81,30,31,43.28,24,9,26.04,24,28,112.0,153,5,30.3,30,31,63.75,49,250,32.54,31,31,43.32,27,2,43.45,24,5,62.29,57,27,22.37,15,2,30.77,31,31,34.75,22,9,115.04,122,2,29.53,29,30,38.12,30,20,41.87,38,32,29.63,29,29,19.58,20,18,23.36,23,12,32.73,30,31,30.5,30,31,73.24,24,250,28.67,29,29,39.12,36,36,31.87,31,31,40.62,38,21,33.45,33,33,30.02,30,31,30.94,31,32,43.07,42,12,29.34,29,30,32.77,32,32,31.47,28,30,44.75,35,3,103.48,67,250,32.69,32,33,30.39,25,2,35.66,35,36,30.89,31,31,30.39,30,30,25.87,16,2,34.69,35,34,30.72,31,32,30.6,29,27,28.75,29,29,29.46,28,29,35.73,30,31,23.55,24,26,30.65,31,32,235.66,250,250,28.65,29,29,30.26,30,30,29.79,30,30,30.96,30,30,3.19,3,2,30.1,30,28,32.62,33,33,28.81,29,30,28.55,28,28,31.69,29,29,70.13,31,250,29.54,28,29,28.75,29,30,30.96,26,32,29.95,29,29,29.48,30,31,67.36,34,2,32.91,33,33,36.32,29,29,28.54,27,26,34.07,30,33,28.95,29,31,30.94,29,27,33.31,28,30,48.78,26,10,27.39,28,28,26.56,27,27,30.77,28,29,33.36,33,33,29.8,27,26,61.45,43,250,43.67,28,29,61.66,39,3,30.42,24,21,34.33,26,26,33.43,33,30,31.79,29,32,71.31,36,250,57.42,58,60,31.09,31,32,59.29,27,3,42.47,24,4,32.67,29,29,42.28,28,3,42.8,21,250,42.85,32,2,29.9,26,29,30.75,27,29,62.06,28,250,31.34,28,28,31.26,31,31,38.73,30,6,58.43,46,22,31.56,31,33,58.48,17,250,80.16,69,2,47.35,27,5,34.46,30,29,25.16,22,14,25.61,21,19,44.29,35,34,0.946,0.03412 +VBS46333-6321STDY9453333,58.05,58,58,59.92,60,59,67.22,66,65,69.81,32,250,18.59,12,2,51.3,50,53,71.78,69,68,63.41,40,250,55.2,33,4,73.02,63,4,43.27,36,15,87.02,88,249,79.46,76,72,53.98,54,54,37.06,39,4,47.02,38,2,52.89,41,3,57.73,59,58,44.71,24,250,72.39,45,250,43.67,42,2,111.29,101,250,120.51,62,250,55.88,56,57,100.34,65,250,48.21,43,42,87.63,37,4,77.23,28,250,50.88,52,51,48.54,46,50,72.17,36,250,160.72,234,250,227.19,250,250,104.44,60,250,54.47,55,56,68.34,66,66,54.12,51,56,47.98,38,40,39.86,36,9,71.71,42,250,40.07,37,41,56.25,45,47,38.1,37,26,43.62,44,32,43.55,47,53,56.07,56,56,43.06,44,49,38.37,38,25,41.71,32,4,52.47,35,250,48.14,52,58,42.18,23,5,54.09,42,3,108.21,91,250,67.62,52,250,42.87,45,52,59.54,60,61,41.31,44,46,34.74,33,27,79.74,32,250,58.27,63,72,123.71,115,250,43.94,31,27,44.86,47,46,139.51,157,250,71.55,30,250,63.93,64,63,70.38,34,250,4.43,4,4,105.28,56,250,71.2,50,250,48.78,33,11,111.03,88,250,57.88,28,10,98.67,65,250,54.11,54,55,55.6,47,250,94.18,78,250,42.01,41,37,60.95,25,250,120.58,80,250,55.7,57,57,82.9,44,250,155.46,180,250,108.09,53,250,59.69,60,60,44.5,45,49,100.31,70,250,58.94,59,59,54.55,54,54,89.18,44,250,38.98,39,2,127.22,158,6,53.63,54,54,90.95,76,250,56.13,55,53,76.79,64,2,57.35,37,4,77.09,71,2,35.54,16,2,54.91,55,57,53.02,29,9,145.59,176,250,52.12,52,51,79.84,50,250,64.39,57,56,52.18,52,50,31.43,33,39,44.4,44,2,55.26,53,54,52.62,53,53,93.14,44,250,50.31,52,53,55.06,50,49,55.27,54,53,63.16,54,36,61.85,62,61,52.79,53,52,54.16,55,57,91.81,93,15,52.56,52,54,50.31,50,48,51.44,48,49,48.57,30,8,132.14,154,250,58.67,59,60,52.67,45,3,66.77,65,64,54.18,55,55,51.23,51,50,40.42,23,3,67.37,66,61,54.62,55,56,56.82,56,58,52.76,53,53,50.31,49,51,58.12,54,54,42.06,45,51,60.06,60,58,226.35,250,250,46.79,47,47,55.4,56,56,48.32,49,51,55.7,55,57,3.2,2,2,55.85,55,53,58.97,59,59,50.56,51,50,48.6,48,48,49.92,47,48,90.75,55,250,52.67,50,48,50.38,52,52,50.99,45,45,49.17,48,49,53.68,54,56,110.0,61,250,59.45,60,60,58.12,52,54,53.16,52,53,60.33,56,55,53.13,53,55,52.48,47,45,50.7,48,48,74.43,42,250,49.82,50,52,46.53,48,47,54.26,52,50,61.45,61,61,50.07,48,49,89.49,70,250,66.29,45,250,97.24,67,250,44.58,37,2,55.27,46,250,62.98,62,49,50.75,48,52,109.49,64,250,66.55,39,2,56.18,57,57,71.24,36,250,62.45,43,250,54.98,54,53,68.77,51,250,52.46,31,250,60.95,46,4,45.82,42,46,51.79,48,51,83.84,49,250,47.71,45,48,56.99,57,58,62.47,42,2,92.89,69,250,53.6,52,52,61.1,28,250,118.29,98,250,74.62,49,250,55.93,47,50,41.89,39,3,40.87,38,45,91.12,86,250,0.947,0.03442 +VBS46334-6321STDY9453334,59.16,60,60,60.67,61,61,65.78,66,64,69.47,30,250,28.23,22,6,55.0,55,59,70.07,69,66,76.5,57,250,84.94,48,250,49.85,38,29,50.88,44,24,81.48,78,250,72.16,70,69,55.96,57,58,34.45,35,2,46.4,36,2,39.9,28,17,59.45,61,61,44.52,27,250,74.75,51,250,38.3,30,3,121.99,108,250,122.97,86,250,56.78,58,60,114.18,74,250,51.68,52,2,116.65,67,250,91.73,40,250,53.38,55,56,60.78,51,53,71.45,35,250,163.74,249,250,130.63,128,250,101.69,54,250,55.89,57,59,63.85,64,61,54.04,51,59,52.14,45,44,37.98,37,13,76.37,49,250,42.93,40,42,60.18,50,250,35.83,35,35,41.48,40,56,48.4,51,54,57.28,58,59,43.55,44,54,39.92,40,27,45.81,34,7,45.7,34,8,48.56,53,58,52.0,26,4,54.14,43,2,123.85,92,250,86.86,77,3,48.03,50,58,60.3,61,61,42.84,46,50,37.97,35,29,81.61,40,250,57.37,62,64,67.07,61,250,40.07,26,28,49.45,52,52,141.04,177,250,68.3,29,9,62.53,63,63,73.88,36,250,14.95,13,2,123.15,63,250,65.82,52,250,64.76,45,17,107.46,101,250,57.68,34,34,102.97,65,250,56.35,57,58,50.03,41,24,104.16,107,3,41.86,42,46,58.04,28,3,132.81,102,250,56.86,58,59,79.21,43,250,196.08,249,250,104.14,53,250,60.33,61,61,47.1,48,48,100.18,73,250,59.99,61,61,56.48,57,58,88.64,40,250,47.93,47,5,117.61,147,10,55.97,57,59,92.01,92,250,58.02,58,59,58.72,35,2,69.02,44,10,98.18,82,250,40.62,33,2,56.57,58,58,60.14,40,6,148.07,140,250,55.31,56,56,73.95,49,16,69.52,62,53,54.47,56,57,72.01,77,104,49.6,42,24,57.34,56,58,55.09,56,58,90.07,45,250,52.19,54,57,62.0,56,48,58.15,58,58,61.75,53,25,62.7,63,63,55.85,57,58,56.14,58,58,73.48,76,8,55.67,56,58,54.55,55,55,54.83,53,54,73.54,34,5,142.19,161,250,59.54,60,60,49.0,49,51,65.42,65,65,56.41,58,60,55.54,56,56,37.33,26,3,66.63,67,67,55.97,57,58,58.54,58,58,55.79,57,56,53.12,53,53,60.54,56,57,47.15,49,52,61.26,62,64,229.09,250,250,51.4,52,54,56.8,58,58,50.17,52,52,57.86,58,58,5.68,5,2,57.91,58,59,59.49,60,61,54.41,55,56,53.05,54,55,54.88,53,54,88.61,52,250,55.86,54,56,53.75,56,57,53.55,50,58,54.28,53,53,56.27,58,59,105.48,51,250,60.3,61,61,59.76,54,55,56.23,56,57,60.26,59,56,55.21,56,59,56.27,51,52,54.12,53,55,73.47,38,250,53.19,54,53,49.35,52,53,57.13,55,55,62.07,62,62,54.62,53,54,91.69,74,250,68.86,49,250,91.75,63,250,47.25,38,2,59.0,52,250,63.52,65,70,53.26,53,54,104.28,55,250,97.8,109,3,57.42,59,60,78.04,43,250,56.19,39,2,59.76,61,64,64.59,44,250,57.57,33,250,66.58,51,3,50.48,49,53,58.02,54,56,90.94,51,250,51.86,50,54,58.22,59,60,68.06,45,250,79.56,65,2,56.74,57,57,71.43,33,250,127.81,110,250,69.68,43,250,58.22,54,59,34.24,29,2,43.15,42,5,95.69,78,3,0.948,0.0343 +VBS46335-6321STDY9453335,65.54,67,67,67.01,68,69,71.46,72,71,70.42,34,250,30.4,26,2,62.54,64,66,73.86,75,73,79.04,53,250,127.7,115,250,50.42,38,3,50.13,40,4,103.22,111,19,82.45,83,85,62.31,64,65,43.13,45,3,52.88,45,2,42.42,30,5,65.8,69,74,52.74,31,250,113.99,113,250,51.46,54,31,122.22,115,250,118.0,83,250,63.33,65,66,122.98,85,250,55.75,57,59,114.56,55,250,76.33,28,250,60.14,62,62,58.45,56,59,79.91,45,250,156.45,196,250,195.57,248,250,119.73,97,250,62.12,64,65,68.87,69,65,60.04,58,60,57.61,53,58,46.41,43,5,76.29,53,250,50.71,50,57,65.38,57,58,39.38,39,43,46.9,47,31,55.25,59,63,63.39,65,66,45.06,46,41,45.19,44,38,50.29,35,15,46.65,32,2,54.92,60,68,51.33,24,4,59.52,50,66,125.25,99,250,66.06,44,2,52.42,55,62,66.87,68,69,52.16,56,59,43.99,43,65,87.33,47,250,63.07,68,72,120.01,106,250,47.59,27,3,55.49,58,60,149.35,233,250,84.83,37,12,68.02,69,69,81.17,48,250,16.92,11,2,132.18,129,250,74.76,59,250,67.86,47,19,128.74,126,250,52.03,34,250,101.61,62,250,62.94,64,65,57.39,53,50,84.55,74,6,47.68,47,41,67.57,42,4,130.53,94,250,63.18,65,66,97.55,65,250,161.24,175,250,104.77,64,250,66.86,68,68,56.9,62,71,104.67,76,250,66.31,67,68,63.08,64,66,68.4,37,250,45.52,46,9,93.33,110,5,62.5,64,65,99.83,90,250,65.16,65,65,49.76,18,3,58.16,35,6,95.87,70,250,28.25,18,4,63.05,65,66,63.64,42,30,137.09,143,250,62.48,64,65,79.33,50,20,77.37,71,56,60.73,62,64,58.15,61,72,61.81,56,23,64.2,63,64,61.32,63,65,98.65,62,250,58.48,61,64,76.38,64,57,64.72,65,65,67.22,53,3,69.36,70,70,62.8,64,65,61.63,64,65,99.52,109,9,62.2,63,64,61.36,62,62,61.13,60,62,77.88,44,5,123.73,80,250,65.71,66,66,65.13,60,2,71.04,71,68,63.4,65,68,62.16,63,63,39.34,20,10,77.33,75,72,61.73,64,66,64.19,64,64,63.66,65,64,59.89,61,63,66.72,63,65,52.3,58,64,68.6,70,72,233.83,250,250,59.3,60,60,62.83,65,67,55.41,58,62,64.44,66,67,9.02,9,15,65.69,66,68,65.94,67,68,61.64,63,64,59.68,61,61,61.63,60,60,83.71,40,250,63.0,62,62,60.99,63,63,56.92,54,62,61.11,61,61,62.54,65,68,101.94,47,250,66.79,68,68,66.57,61,250,91.21,96,100,68.52,67,68,61.74,63,62,61.79,60,64,59.89,59,58,75.88,39,250,61.29,62,65,56.47,60,62,65.02,63,63,68.77,69,69,60.38,60,62,97.33,81,250,66.98,52,250,107.54,83,250,45.09,39,2,63.14,58,250,69.72,73,76,60.29,60,63,92.73,33,250,162.78,195,250,63.51,65,67,83.87,51,250,65.98,41,250,64.58,65,67,67.55,54,8,70.37,43,250,66.77,52,2,52.44,53,58,62.53,59,60,94.4,59,250,60.47,59,62,64.77,66,67,72.75,49,250,103.52,77,250,64.35,65,66,68.24,44,250,138.22,143,250,82.66,43,250,66.62,60,63,46.76,37,2,45.91,43,6,81.96,68,3,0.95,0.03436 +VBS46336-6321STDY9453336,53.9,54,55,55.03,56,56,58.7,59,58,75.63,38,250,22.3,17,6,52.65,53,56,58.92,59,59,64.84,37,2,75.03,47,5,45.23,35,2,38.31,29,19,80.0,81,2,66.2,67,71,51.36,52,53,32.83,34,3,43.62,34,2,49.1,30,3,52.86,54,53,47.21,27,3,66.31,46,250,45.18,44,2,107.52,89,250,115.19,63,250,51.77,53,54,116.34,79,250,46.08,47,53,115.86,59,250,80.82,30,250,50.98,53,51,58.63,49,48,67.61,33,250,162.65,249,250,219.12,250,250,106.97,74,250,51.2,53,54,57.56,56,56,50.81,47,55,49.18,42,41,34.87,30,2,72.44,45,250,42.81,41,44,57.46,47,49,30.66,29,26,37.76,34,22,45.88,50,54,52.21,53,54,38.58,39,34,34.78,35,21,43.92,34,31,47.65,32,30,46.31,51,54,38.43,22,2,48.78,39,7,94.55,73,5,55.07,36,2,40.7,42,49,54.76,56,56,41.02,43,47,33.25,30,21,76.77,34,250,52.45,55,59,60.66,54,11,47.18,35,6,46.05,49,51,139.88,199,250,72.23,18,15,56.07,57,58,72.07,36,250,6.44,3,2,116.39,52,250,68.94,52,250,43.75,29,21,107.86,93,250,51.0,30,250,86.4,35,250,51.7,52,53,43.91,34,36,102.04,87,4,38.66,39,45,58.47,30,6,116.52,79,250,52.11,53,53,77.18,45,2,117.97,120,250,99.9,50,250,54.88,55,55,44.35,45,54,102.04,71,250,54.46,55,55,51.84,53,54,65.52,33,2,72.28,86,3,138.15,170,250,51.55,53,54,85.5,72,250,54.01,53,54,62.21,38,2,65.97,42,5,90.66,65,250,37.83,28,5,51.76,53,53,55.23,33,3,140.22,177,250,51.12,52,53,65.04,32,11,65.73,59,51,49.89,51,53,50.49,53,71,39.1,40,26,53.47,52,53,50.65,51,53,89.28,43,250,47.97,50,52,53.38,53,59,53.73,53,53,59.4,53,6,56.94,57,57,51.19,52,52,51.21,53,53,89.28,98,10,51.27,52,53,51.26,51,52,51.23,49,51,59.93,34,9,124.38,139,250,53.86,54,54,54.68,48,2,58.41,58,59,52.13,53,54,51.26,52,53,37.42,24,2,58.77,59,58,51.12,52,53,53.87,53,53,51.29,52,54,49.64,49,50,55.88,52,55,44.89,48,50,55.59,57,57,226.67,250,250,48.96,50,51,52.05,53,53,46.15,48,50,53.3,54,55,3.08,3,3,53.94,54,54,54.09,55,55,50.84,52,52,50.02,51,51,51.61,50,50,78.92,37,250,52.56,51,50,50.08,52,52,47.89,44,52,50.04,50,53,51.54,53,54,100.01,48,250,54.8,55,55,56.14,50,52,51.32,52,52,57.71,54,55,51.31,52,52,51.15,49,52,53.6,51,52,74.5,36,250,50.01,51,52,46.66,49,51,54.26,52,52,56.13,56,56,51.38,50,50,90.72,65,250,60.73,41,250,94.38,69,250,41.92,37,2,54.01,46,250,53.95,57,60,49.19,47,52,93.69,46,250,42.67,31,29,52.19,53,54,76.03,42,250,60.04,39,2,54.14,53,53,67.5,53,250,67.49,40,250,49.13,28,2,47.61,45,48,53.65,51,52,81.7,43,250,51.04,49,50,52.97,54,55,64.22,55,2,73.72,51,2,53.24,53,53,60.85,37,250,115.06,105,250,72.23,39,250,51.28,50,56,35.25,30,2,38.62,35,2,88.14,68,30,0.948,0.03428 +VBS46337-6321STDY9453337,45.78,46,46,46.67,47,47,48.85,49,49,67.09,31,250,22.73,19,6,42.55,44,44,48.18,48,42,54.01,37,10,84.24,50,3,47.79,37,2,35.53,28,13,68.37,53,3,48.94,49,48,43.61,44,45,29.96,31,2,39.98,32,2,33.98,28,5,45.71,48,50,43.61,22,5,64.74,38,250,31.56,28,15,92.11,78,250,118.76,80,250,44.34,45,46,93.92,56,250,38.78,39,45,54.08,37,3,83.76,25,250,43.02,44,47,54.73,41,41,64.88,28,250,130.56,164,42,192.92,245,250,103.26,68,250,43.67,45,45,48.51,48,45,43.88,41,45,44.43,35,31,30.09,30,5,65.72,34,250,35.67,33,37,50.6,40,43,27.72,26,26,32.86,32,31,37.58,40,41,44.65,45,46,34.15,34,36,31.19,31,27,32.55,27,4,34.43,22,19,36.36,39,43,37.65,21,5,44.02,34,43,103.79,85,250,86.76,94,9,36.42,38,16,46.49,47,46,35.43,37,39,28.12,27,28,75.32,30,250,44.75,47,48,66.57,48,6,32.11,21,20,40.58,43,44,138.48,173,250,66.58,21,5,46.71,47,47,67.13,29,250,5.41,3,2,98.43,54,250,57.53,39,250,42.93,26,11,90.34,84,250,47.37,25,8,84.9,50,250,43.98,44,45,57.66,51,62,51.67,40,8,31.56,31,28,54.17,24,4,109.3,64,250,44.28,45,46,59.34,36,5,142.67,147,250,94.65,46,250,46.44,47,47,38.62,38,36,76.62,58,30,46.16,46,47,44.34,44,45,47.8,26,5,47.41,41,2,131.85,162,250,43.96,44,45,84.24,70,250,46.07,45,46,43.91,24,2,54.09,27,3,51.26,49,32,26.04,18,4,44.23,45,46,44.8,29,2,85.86,81,4,43.91,44,44,44.73,33,2,53.96,49,42,42.08,43,44,23.0,22,21,32.96,33,44,45.91,44,44,43.01,44,45,79.94,34,250,40.93,42,44,60.14,46,41,45.7,45,45,50.17,38,4,47.99,48,47,44.0,44,45,43.52,44,44,79.24,82,2,43.87,44,44,43.61,43,43,44.11,41,41,44.97,33,4,127.89,120,250,45.84,46,46,49.36,42,43,49.15,48,47,44.48,45,46,43.49,44,44,27.38,15,2,49.72,50,51,43.58,44,46,46.09,45,45,43.88,44,43,42.58,42,43,48.85,45,47,39.09,37,39,47.67,48,48,228.55,250,250,40.93,41,42,44.11,45,45,38.93,39,43,44.34,45,45,7.42,6,4,46.33,46,45,45.98,46,47,43.24,44,44,41.99,43,44,43.8,42,42,79.07,40,250,44.69,43,43,42.05,43,44,42.49,38,42,43.07,43,45,43.94,45,46,90.26,46,250,46.46,47,47,47.65,41,44,46.09,46,47,50.27,47,47,43.64,44,43,45.18,42,41,45.11,42,44,66.35,36,250,42.89,43,44,40.56,42,42,45.78,43,41,47.51,48,47,44.16,42,45,79.46,60,250,56.75,39,3,83.2,60,250,38.93,30,28,47.79,40,42,47.96,49,48,42.77,41,40,99.22,51,250,45.2,30,31,44.45,45,46,69.27,34,250,47.31,33,2,46.48,47,48,50.99,37,34,47.39,27,250,47.8,27,2,39.98,38,40,45.68,42,43,84.57,43,250,43.8,41,41,45.15,46,46,61.48,46,3,68.24,53,250,45.45,45,47,59.44,32,250,111.29,91,250,56.86,35,11,48.97,42,45,27.36,19,6,35.31,33,40,70.67,55,2,0.946,0.03426 +VBS46338-6321STDY9453338,49.06,49,50,49.9,50,51,52.88,53,52,72.79,34,250,27.4,23,21,46.52,47,47,55.14,53,53,54.95,37,4,44.94,49,2,57.24,49,46,39.94,33,9,81.6,73,250,58.89,59,59,46.95,48,49,30.12,30,2,43.8,37,3,38.62,35,6,47.03,48,50,38.66,23,250,70.89,44,250,40.09,37,2,119.61,108,250,103.98,61,250,47.21,48,50,118.95,87,250,47.52,45,46,96.95,52,250,75.26,30,250,45.6,47,50,54.73,45,44,74.44,35,250,153.14,205,250,171.15,170,250,94.84,52,250,46.78,48,48,48.94,49,51,47.39,43,43,45.47,39,3,52.09,43,4,65.45,40,250,38.78,36,42,53.64,43,40,28.61,27,18,34.95,34,50,39.58,43,45,47.76,48,49,35.94,36,31,32.68,32,33,37.97,33,22,39.23,25,21,41.71,46,50,43.6,27,6,46.03,38,39,103.68,91,250,68.73,54,2,38.9,41,51,49.59,50,51,40.7,43,44,31.86,30,23,77.25,31,250,46.99,51,51,74.88,41,250,38.55,19,3,43.6,45,46,136.7,123,250,80.7,40,250,50.77,51,51,73.37,36,250,14.5,14,6,98.13,89,250,62.75,47,250,41.23,34,7,105.15,87,250,56.87,31,19,87.18,54,250,47.41,48,48,47.15,43,46,81.68,55,6,33.64,32,26,57.74,28,250,114.18,79,250,47.44,49,50,77.21,39,3,117.85,106,250,106.28,47,250,50.0,50,50,41.38,42,44,97.74,78,250,49.54,50,50,47.44,48,49,71.53,37,250,42.46,43,2,102.98,140,14,47.09,48,48,96.16,87,250,49.58,48,49,50.58,27,5,51.46,34,4,73.48,63,52,29.99,22,2,47.08,48,49,67.45,47,10,123.72,121,250,47.05,47,49,50.09,39,8,58.57,53,43,45.76,46,47,49.95,57,63,34.76,34,38,49.09,47,48,46.79,47,48,84.2,34,250,44.0,46,48,54.77,50,21,49.24,48,49,46.77,45,51,51.4,51,51,47.01,48,47,46.73,48,49,65.95,71,17,46.97,47,48,46.47,47,47,47.41,45,47,81.77,42,250,131.77,146,250,49.37,49,48,48.32,45,2,53.13,53,52,47.65,48,49,47.33,47,48,30.26,17,3,53.55,54,53,46.42,48,48,50.08,48,49,47.05,48,49,46.33,46,47,52.08,48,48,42.27,44,46,50.36,51,52,233.69,250,250,44.8,45,45,47.41,48,50,42.31,43,47,47.83,48,48,3.51,3,2,49.18,49,50,49.09,50,50,46.41,47,47,45.74,46,48,47.76,46,46,81.45,38,250,46.96,46,49,46.32,48,50,46.48,42,45,45.48,45,45,46.9,48,50,92.64,41,250,49.75,50,50,51.5,45,46,48.14,48,49,54.49,50,49,46.32,47,47,49.91,45,45,49.78,45,46,65.81,30,250,46.54,47,46,43.22,45,45,49.74,48,48,50.98,51,52,46.86,45,45,91.5,72,250,57.37,40,250,86.49,56,250,42.06,34,23,51.0,42,43,50.5,51,53,45.87,44,44,87.36,45,250,80.31,80,4,47.54,49,49,71.52,39,250,55.98,40,2,50.13,50,50,61.06,42,6,51.66,29,250,54.22,44,3,43.02,40,42,47.06,44,47,80.96,44,250,47.21,44,44,48.23,49,50,61.24,43,9,84.64,56,6,48.44,48,46,70.99,29,250,101.36,75,250,71.25,33,250,50.64,46,45,33.94,24,6,37.59,34,19,67.79,56,5,0.948,0.03421 +VBS46339-6321STDY9453339,57.84,58,58,59.58,60,60,65.99,65,63,70.52,31,250,21.1,14,3,51.65,53,56,71.4,69,68,59.17,39,3,86.06,75,2,48.55,31,10,45.6,40,8,87.67,71,250,80.02,79,82,53.91,55,56,37.89,39,2,46.17,36,2,47.26,31,2,57.68,59,59,42.15,24,9,75.84,49,250,49.91,40,3,112.08,99,250,121.22,96,250,55.71,57,57,85.78,56,30,48.86,46,54,125.79,89,250,85.34,34,250,51.76,53,54,50.68,47,46,73.56,35,250,148.61,189,250,200.73,227,250,100.7,50,250,53.83,55,56,63.47,61,54,50.43,47,52,50.98,43,45,34.67,31,2,66.78,40,250,41.56,39,42,58.51,48,250,33.1,33,34,41.97,40,22,44.58,48,48,55.67,56,56,42.16,42,31,37.66,37,34,39.32,31,6,45.15,27,4,48.51,52,56,50.92,25,3,53.22,46,55,112.89,82,250,77.49,65,3,43.94,45,58,59.32,60,59,42.19,44,47,36.48,33,25,80.84,32,250,56.96,63,70,73.31,66,8,38.91,23,21,46.61,49,48,145.45,239,250,78.96,31,250,62.24,62,61,78.91,41,250,5.71,4,2,111.19,92,250,68.39,53,250,45.64,31,14,117.26,116,250,48.44,29,9,90.83,45,250,54.3,55,57,39.76,26,16,68.53,57,6,39.95,40,40,62.01,32,2,123.7,90,250,55.63,57,57,77.48,37,250,132.59,139,250,105.05,50,250,59.25,59,58,47.3,47,52,95.76,67,250,58.66,59,59,54.6,55,57,55.7,32,2,38.69,41,4,138.37,180,250,54.25,55,55,82.42,53,250,56.73,56,57,49.44,20,2,55.41,33,8,116.39,108,250,27.09,15,2,54.66,56,57,64.63,40,8,128.84,140,250,53.17,53,54,64.65,45,11,64.67,60,55,52.76,53,54,34.04,35,16,43.64,44,45,55.68,54,55,52.71,53,55,91.27,45,250,50.39,52,55,38.93,36,33,56.29,56,55,67.35,57,18,61.93,62,61,54.01,55,55,54.93,56,57,70.56,76,25,53.54,54,54,51.19,51,52,52.94,50,50,50.2,25,3,128.06,141,250,57.95,58,58,53.25,48,2,66.07,65,63,55.11,56,57,52.65,53,54,36.55,22,5,67.41,67,64,54.38,55,57,55.39,55,57,53.78,55,55,51.16,51,54,59.59,55,54,44.54,48,54,60.41,61,61,229.27,250,250,48.62,49,51,55.01,56,57,46.45,48,50,56.6,57,59,5.42,5,5,56.74,56,56,58.41,59,59,52.47,53,52,50.26,51,52,51.63,49,49,81.47,43,250,53.58,52,53,50.94,52,53,53.01,48,53,50.62,50,51,54.19,56,55,86.11,42,250,58.98,59,60,57.76,52,55,54.4,54,57,60.66,57,55,52.84,54,52,51.77,48,47,52.51,49,49,65.96,32,250,50.88,51,49,47.6,49,51,55.1,53,54,61.38,62,61,52.52,50,51,90.37,66,250,60.18,40,250,92.68,68,250,34.72,31,3,55.27,48,51,65.4,66,77,52.77,51,51,94.83,39,250,59.65,53,53,55.9,57,58,75.73,40,250,59.94,37,8,59.26,59,54,61.17,43,250,74.97,42,250,61.35,50,6,45.29,44,46,55.42,52,49,88.25,47,250,49.75,48,47,57.1,58,58,55.72,36,6,81.87,63,250,54.91,55,56,72.91,31,250,108.27,87,250,70.13,37,250,54.81,47,45,34.85,31,4,40.94,40,56,75.77,61,5,0.946,0.03436 +VBS46340-6321STDY9453340,54.95,55,56,56.39,57,57,62.29,62,60,72.81,34,250,24.12,22,27,50.73,51,51,65.17,63,58,66.38,38,250,80.82,50,250,49.52,41,36,41.52,34,2,70.18,61,250,73.48,73,79,51.53,52,54,35.17,37,2,46.69,40,3,46.46,36,2,54.25,56,58,39.61,21,14,74.46,46,250,42.02,36,2,101.5,96,250,124.07,102,250,52.96,54,55,105.3,68,250,48.36,49,51,110.4,58,250,87.86,26,250,49.57,51,53,47.69,46,46,68.35,32,250,166.92,249,250,168.98,189,207,93.2,45,250,51.55,53,52,61.02,60,56,48.11,46,53,47.48,39,42,31.65,28,4,69.62,42,250,39.06,37,44,55.94,46,46,32.72,32,23,37.88,36,23,42.76,47,51,52.91,53,54,39.99,41,48,36.88,37,49,44.85,31,5,36.92,25,25,46.23,51,54,38.63,16,3,48.43,41,45,116.27,86,250,53.49,33,4,41.56,44,51,56.3,57,57,41.55,45,51,34.66,34,24,77.24,32,250,56.28,60,62,55.05,45,7,40.18,26,8,44.19,46,47,137.2,145,250,65.57,23,14,59.05,59,58,72.42,36,250,13.01,10,2,91.55,70,250,63.88,44,250,54.01,37,18,107.19,96,250,48.03,29,2,95.92,50,250,51.9,53,53,42.07,29,9,113.56,96,250,40.43,39,32,58.21,25,12,131.91,122,250,53.08,54,55,82.7,45,250,133.83,121,250,105.62,59,250,56.24,57,57,43.02,44,53,88.18,64,250,55.77,56,56,52.03,52,53,62.34,32,24,38.84,43,3,141.15,183,250,51.58,52,53,89.98,74,250,54.21,53,54,55.0,35,5,54.93,33,2,77.7,44,250,34.23,27,9,52.16,53,53,51.75,32,11,148.79,193,250,50.75,51,51,67.76,39,4,61.35,54,43,50.03,51,52,40.92,44,61,40.17,41,50,52.84,51,52,50.18,51,53,87.2,41,250,47.98,50,51,36.1,37,44,53.33,53,53,64.39,51,3,58.7,59,58,51.24,52,54,51.73,53,52,120.23,136,250,51.07,51,51,49.55,49,49,50.47,48,48,77.13,34,250,123.68,116,250,55.05,55,55,47.83,44,2,62.17,61,60,51.63,53,54,50.24,50,50,33.13,22,6,62.92,63,62,51.33,53,53,53.73,53,53,51.24,52,53,48.89,48,50,56.33,52,54,39.39,43,49,57.72,58,59,227.64,250,250,47.08,48,47,52.74,54,55,46.13,47,51,54.1,54,53,5.56,4,2,54.26,54,53,55.44,56,56,49.86,51,52,48.48,49,48,49.76,48,48,85.51,50,250,50.08,49,50,49.08,50,49,48.8,44,48,49.46,48,49,52.01,53,55,94.12,46,250,56.08,56,56,54.59,49,49,52.14,52,54,58.43,56,55,50.69,52,52,50.75,47,48,50.27,49,51,74.76,41,250,49.1,49,49,45.31,47,53,53.4,51,49,58.01,58,58,49.94,48,51,84.54,65,250,62.68,45,250,92.72,71,250,38.76,30,2,54.3,46,250,63.39,65,65,48.96,48,52,93.58,49,250,98.93,115,2,53.15,54,55,74.63,36,250,48.17,32,3,54.66,55,56,58.25,45,2,55.65,30,250,60.8,51,4,44.9,42,44,49.53,46,45,80.24,45,250,49.21,46,47,54.38,55,55,56.47,37,4,86.3,57,250,53.91,54,60,59.62,25,250,115.18,96,250,78.26,40,6,43.49,43,19,26.28,24,5,39.41,36,29,94.09,71,10,0.948,0.0343 +VBS46341-6321STDY9453341,50.03,50,50,51.53,52,52,57.22,57,57,63.95,32,250,23.36,18,5,46.62,47,54,60.28,60,58,55.3,36,2,37.02,38,3,49.84,33,20,36.71,28,13,71.46,59,250,66.41,66,65,46.56,47,48,29.16,31,2,41.45,35,2,40.34,24,8,51.05,52,52,44.79,26,250,61.71,40,250,36.43,34,2,123.36,126,250,112.6,77,250,48.26,49,49,112.66,77,250,41.69,40,43,108.15,82,250,78.72,34,250,43.5,44,42,41.43,39,38,69.62,29,250,160.53,246,250,200.41,223,250,99.52,61,250,46.2,47,48,54.61,53,51,45.5,41,43,43.49,35,35,32.18,31,6,63.73,37,250,36.56,33,34,52.89,42,48,32.72,33,33,38.3,35,18,39.45,43,46,48.05,48,48,39.01,38,29,32.87,33,40,34.09,27,25,36.77,25,23,42.62,45,54,42.17,23,4,42.29,37,41,99.39,82,250,56.75,40,250,38.83,40,44,51.46,52,52,36.07,38,38,31.96,30,17,77.55,30,250,47.02,51,56,50.81,38,21,40.98,22,2,38.42,40,39,131.58,111,250,62.15,20,2,53.94,54,54,69.57,34,250,4.02,3,2,104.79,50,250,55.22,39,250,59.91,45,6,99.28,98,250,50.0,25,24,86.93,60,250,47.08,47,48,44.72,33,13,61.26,53,3,35.9,35,20,57.04,23,2,119.62,90,250,48.0,49,49,74.38,38,2,92.96,64,250,99.26,48,250,51.23,51,51,38.13,38,44,96.93,69,250,50.85,51,51,47.32,48,48,75.27,36,250,35.8,33,2,128.78,164,250,46.72,47,47,75.0,66,250,48.86,48,47,55.13,26,2,45.85,28,6,88.62,82,57,26.92,16,2,47.27,48,49,44.65,36,13,132.85,108,250,45.56,46,46,79.54,41,250,55.92,51,43,45.0,45,45,31.6,28,21,31.43,32,24,48.05,46,46,45.88,46,46,88.17,36,250,43.4,45,47,57.25,44,31,48.6,48,49,50.56,46,29,53.54,53,53,46.0,46,46,47.58,48,50,76.92,72,5,46.36,46,47,43.55,44,46,45.95,43,44,82.8,36,250,126.15,138,250,49.85,50,49,52.51,44,2,57.16,56,56,46.88,48,49,44.92,45,46,46.43,30,3,58.35,58,55,46.94,48,49,49.29,48,49,46.15,47,47,44.54,44,45,50.82,47,46,36.84,40,43,53.08,54,56,224.92,250,250,41.7,42,41,47.76,48,48,41.47,42,45,48.72,49,50,5.45,4,3,49.0,48,47,50.45,51,51,44.86,45,46,43.18,43,43,44.76,42,44,79.15,36,250,47.15,45,45,44.33,45,44,45.14,40,41,42.07,42,39,46.58,48,49,88.45,41,250,51.03,51,51,51.14,44,47,46.74,47,49,51.97,50,49,45.09,45,46,44.39,41,44,47.01,43,44,71.45,33,250,43.51,44,45,41.48,43,43,48.62,46,46,52.92,53,52,44.38,42,42,80.59,53,250,60.13,40,250,87.05,56,250,35.72,29,2,50.6,42,46,56.11,57,62,44.62,43,45,86.82,34,250,62.33,60,58,48.25,49,49,68.66,34,250,50.56,35,6,49.33,48,47,53.48,40,250,60.39,32,250,53.99,28,2,41.16,38,44,46.81,44,43,75.08,39,250,43.27,40,43,49.47,50,50,53.87,42,2,76.13,47,250,47.79,47,47,57.15,32,250,106.96,89,250,58.63,32,250,48.64,44,42,28.34,26,2,33.97,31,41,75.89,55,3,0.947,0.03431 +VBS46342-6321STDY9453342,63.98,65,65,65.69,66,66,71.7,71,70,75.93,45,250,27.92,17,11,57.49,60,67,74.75,74,81,70.05,49,250,84.16,85,5,58.09,47,2,54.91,47,27,81.58,78,250,81.53,81,78,60.18,61,62,36.53,37,2,48.74,40,3,42.16,35,2,62.76,65,68,47.71,29,250,87.81,55,250,48.98,46,2,120.83,119,250,132.18,112,250,61.37,63,64,109.76,78,250,53.26,53,56,113.52,65,250,74.23,45,250,57.72,59,60,59.56,55,57,75.53,35,250,165.67,241,250,168.17,178,250,113.31,78,250,60.37,62,64,70.98,70,64,57.25,54,59,52.17,46,250,39.22,35,2,77.43,49,250,46.01,45,49,63.73,55,56,38.29,36,35,45.18,45,68,51.19,57,60,61.91,63,64,45.88,45,42,44.19,44,43,41.77,35,35,52.32,36,2,53.57,59,60,57.83,30,3,56.24,43,28,129.54,114,250,58.42,43,2,48.07,50,58,65.58,67,67,47.62,51,53,42.22,42,57,80.87,37,250,61.68,69,75,87.5,69,2,43.43,32,2,51.68,54,53,131.62,141,250,82.98,30,250,68.15,69,69,76.22,40,250,5.34,5,2,111.22,76,250,72.13,54,250,52.8,35,18,124.96,132,250,56.59,36,13,100.63,73,250,60.76,62,63,53.55,53,57,89.42,63,250,44.68,44,47,65.85,34,250,129.22,105,250,61.73,63,65,78.16,45,250,197.53,249,250,111.3,64,250,65.43,66,66,49.19,51,55,100.97,73,250,64.93,66,66,60.86,62,62,75.05,42,250,40.68,44,3,154.41,238,250,60.2,61,63,93.49,72,250,62.54,62,63,66.78,36,250,62.76,37,11,153.25,153,250,40.09,27,4,60.9,62,63,54.54,35,5,132.69,145,250,59.37,60,61,67.46,46,14,73.28,67,65,58.58,60,62,47.08,38,23,55.34,55,2,61.2,60,62,59.16,61,62,86.89,41,250,56.32,59,62,87.1,54,13,62.33,62,62,67.53,58,2,68.1,68,68,60.76,62,61,60.46,62,63,94.54,99,2,59.95,61,63,58.41,58,58,58.92,57,60,77.41,39,2,136.75,159,250,64.36,65,64,54.16,56,60,71.61,71,69,60.78,62,64,59.04,60,61,40.46,23,7,72.47,72,69,60.45,62,63,62.62,62,63,60.5,61,63,56.82,57,59,64.08,61,64,49.73,55,58,66.54,68,67,227.67,250,250,55.38,56,56,61.1,63,63,53.41,56,61,62.85,63,61,3.25,3,2,63.35,63,63,64.55,66,66,58.58,60,60,57.15,58,60,58.12,57,59,92.53,51,250,59.7,58,60,58.25,60,61,56.22,53,59,57.06,56,55,59.93,62,66,102.6,55,250,65.42,66,67,63.32,58,250,59.95,60,63,68.14,65,67,58.79,60,59,58.42,56,57,57.3,56,60,69.52,39,250,57.12,58,60,52.78,55,54,61.5,60,60,67.31,68,68,57.94,57,59,103.28,75,250,65.99,45,250,105.92,88,250,40.7,35,4,61.06,55,250,68.61,71,76,57.24,56,58,101.12,44,250,104.18,118,250,61.97,63,64,80.11,43,250,65.51,45,250,62.41,63,68,62.65,46,2,65.81,39,250,67.31,53,2,52.4,50,56,59.27,56,60,90.95,52,250,57.07,55,52,62.95,64,66,69.17,50,3,111.79,84,250,61.95,62,62,80.63,45,250,119.58,113,250,64.84,39,250,59.77,56,58,46.04,36,4,47.26,45,2,93.9,74,250,0.95,0.03433 +VBS46343-6321STDY9453343,53.03,53,53,54.3,55,55,60.55,60,59,79.83,36,250,28.49,23,4,46.43,47,48,67.47,65,62,66.18,39,3,110.02,81,250,61.86,34,2,43.08,37,2,93.65,92,250,67.63,66,63,48.98,49,49,35.5,37,2,44.9,38,3,61.71,29,2,53.44,55,63,51.77,27,250,72.24,44,250,53.47,35,2,131.58,134,250,107.46,73,250,50.85,51,53,115.29,71,250,40.18,37,43,116.49,94,250,74.18,23,250,44.29,45,44,47.78,42,43,75.29,37,250,150.34,202,250,218.27,249,250,109.05,69,250,49.5,50,51,62.27,61,57,48.21,44,47,40.96,31,2,61.65,44,5,69.64,43,42,37.19,34,36,53.48,42,250,34.5,34,37,41.17,41,21,41.66,45,49,51.17,51,50,40.43,42,49,37.3,38,47,45.15,32,4,49.46,35,34,46.52,50,55,53.79,24,2,51.23,39,24,114.48,78,250,56.97,38,250,41.09,42,48,53.18,54,54,39.48,41,40,33.85,33,22,77.13,32,250,57.79,60,60,106.07,103,250,50.23,27,250,39.35,41,43,143.37,156,250,81.71,39,250,59.34,59,58,72.06,32,250,4.0,4,4,97.23,56,250,68.88,45,250,50.83,36,28,122.81,112,250,52.56,30,250,120.14,69,250,50.13,50,51,57.51,45,53,71.81,59,32,40.02,40,43,64.35,33,250,119.9,89,250,51.93,53,54,99.2,51,250,142.6,169,250,99.36,54,250,55.18,55,56,43.4,43,45,101.84,82,250,53.54,54,53,49.67,49,50,65.81,43,41,39.14,42,51,129.26,173,250,48.66,49,48,88.42,69,250,51.3,50,50,69.81,45,3,66.59,38,6,90.3,71,250,30.61,18,3,50.18,51,50,74.79,52,27,145.15,186,250,46.37,46,46,90.5,52,250,60.71,56,54,48.52,49,49,56.66,58,72,42.91,45,43,51.36,48,48,49.11,49,51,90.72,45,250,46.19,48,50,55.39,48,43,50.51,49,48,79.95,53,5,56.01,56,55,47.86,48,48,50.88,51,51,100.53,110,10,47.59,47,48,48.78,48,47,49.22,45,43,93.91,50,250,124.64,110,250,53.54,54,56,53.34,40,37,61.32,61,62,49.39,50,49,47.4,47,48,51.97,34,2,60.42,60,58,49.93,51,52,50.45,49,51,46.8,47,46,47.52,46,48,53.73,48,47,36.63,37,35,52.37,53,56,229.64,250,250,43.7,44,44,50.36,51,53,47.8,48,49,51.52,51,49,,2,2,49.48,49,47,54.05,55,54,45.87,46,44,44.59,45,44,47.06,44,44,92.25,48,250,47.69,45,46,45.33,47,47,49.26,43,51,44.74,43,44,47.4,48,50,101.1,64,250,54.87,55,54,55.96,49,51,48.03,46,47,54.53,51,53,48.18,47,45,46.36,42,45,45.64,41,40,83.85,48,250,43.05,44,46,42.59,42,39,48.03,45,45,55.99,56,57,46.23,43,44,96.8,83,250,69.95,46,250,104.33,94,250,42.49,34,5,49.66,41,43,59.47,59,64,47.61,45,47,118.57,71,250,76.01,67,64,51.26,52,52,76.31,39,250,61.06,38,250,52.31,51,53,76.71,56,250,65.71,36,250,58.77,33,13,42.4,38,38,45.37,42,42,85.37,47,250,44.64,40,39,51.87,52,52,74.17,48,250,83.25,69,250,47.72,47,47,75.88,54,250,116.89,104,250,74.59,49,250,48.35,43,38,41.94,36,8,36.28,34,39,91.07,89,250,0.946,0.03425 +VBS46344-6321STDY9453344,40.49,40,41,41.28,41,41,43.14,43,43,64.94,26,250,25.61,20,8,38.37,39,40,42.5,43,44,54.12,29,21,47.25,52,5,53.01,37,35,32.07,27,2,62.26,53,250,43.94,44,41,38.65,39,40,26.14,26,2,39.34,33,2,32.43,21,2,40.13,41,39,40.72,20,250,61.33,36,250,33.49,30,3,85.17,70,250,112.89,84,250,39.16,40,40,88.68,54,30,35.58,34,38,83.27,41,4,68.59,23,250,37.56,38,40,37.75,34,34,54.06,24,2,117.26,145,38,149.11,162,167,92.3,60,250,38.38,39,40,41.56,41,36,39.94,36,39,39.81,31,35,27.66,26,3,60.08,33,250,32.16,29,34,47.49,35,36,23.31,22,17,30.5,29,22,34.52,37,38,39.17,39,40,29.23,28,18,27.61,27,20,29.68,25,20,33.19,22,14,32.98,35,40,33.38,16,4,39.27,30,19,87.23,68,250,54.99,38,250,30.94,32,41,41.01,42,42,31.58,32,31,25.84,25,21,72.45,26,250,38.8,41,42,47.63,35,3,33.32,20,3,35.65,36,34,130.52,128,250,68.37,23,13,41.39,41,42,64.98,26,250,5.14,4,2,94.41,73,250,52.18,32,250,39.57,19,13,93.85,91,250,49.0,28,5,92.88,48,250,38.73,39,40,40.22,33,33,57.24,48,2,28.83,28,24,52.87,22,2,99.1,54,250,39.1,40,41,77.75,43,10,131.25,135,250,96.34,39,250,41.12,41,41,31.73,32,38,74.36,48,36,40.87,41,41,39.18,39,40,52.04,27,2,33.01,31,2,128.53,152,250,38.83,39,41,74.88,56,250,40.77,40,40,40.75,28,2,49.68,26,5,49.45,41,2,21.34,12,2,39.05,40,40,38.71,24,3,129.91,144,250,38.53,39,39,44.15,30,7,49.02,45,39,37.1,38,39,73.07,83,2,29.64,30,33,40.82,39,38,38.26,38,40,79.72,30,250,36.18,37,38,29.64,31,40,40.63,40,40,49.71,38,2,42.55,42,42,38.74,39,39,38.56,39,39,95.7,106,5,38.99,39,38,38.05,38,38,39.45,36,39,52.15,25,3,121.61,133,250,40.46,40,40,41.23,34,42,43.22,43,42,39.05,39,39,38.72,39,38,27.63,17,3,43.77,44,44,38.45,39,40,40.79,40,41,39.04,39,39,38.09,37,38,44.43,39,39,31.05,35,37,42.19,43,43,228.5,250,250,36.32,37,38,39.22,40,40,34.69,35,36,39.69,40,40,4.4,3,3,40.92,41,42,40.49,41,41,38.2,39,40,37.23,37,37,39.35,37,36,75.44,35,250,39.49,38,38,37.67,39,40,37.35,33,38,38.22,37,36,38.44,39,40,80.23,37,250,41.05,41,41,43.72,37,38,40.3,40,40,44.54,41,40,38.57,39,39,39.61,37,39,39.38,36,38,60.66,31,250,37.77,38,39,35.49,36,41,41.12,38,36,42.04,42,42,38.71,36,37,72.65,53,250,52.27,35,36,78.26,58,250,28.57,26,3,44.15,34,32,40.54,41,44,38.47,36,39,84.66,45,250,79.35,84,85,39.08,40,41,64.48,30,250,49.76,32,3,41.18,40,44,47.52,35,17,50.56,27,250,42.1,22,3,35.5,33,33,40.66,38,39,66.89,33,250,37.63,35,36,40.04,40,41,47.43,38,4,56.53,44,5,40.67,40,40,65.46,44,250,106.78,85,250,60.52,33,19,39.53,37,36,30.54,25,3,31.79,31,34,54.89,47,2,0.945,0.03424 +VBS46345-6321STDY9453345,67.62,68,69,69.4,70,71,75.11,75,75,71.31,39,250,37.02,31,30,60.14,63,63,79.29,78,74,81.78,55,250,65.89,68,5,74.79,61,2,53.74,47,2,99.31,104,250,85.17,85,82,64.04,65,66,40.71,41,2,53.28,41,5,56.48,48,3,68.76,72,75,51.1,33,250,85.14,57,250,48.82,50,3,134.13,142,250,126.68,88,250,65.45,67,69,111.4,80,250,58.1,56,2,134.55,126,250,75.56,47,250,61.15,63,67,72.55,61,250,81.61,44,250,157.89,198,250,223.95,250,250,107.91,67,250,63.79,66,67,74.13,73,69,62.86,61,68,58.69,53,250,67.04,53,2,78.62,54,250,52.02,51,57,68.01,59,250,40.35,39,42,49.17,50,71,53.77,59,61,65.34,67,68,49.0,50,72,46.7,46,33,52.11,41,7,51.85,37,2,56.5,61,60,55.03,32,2,62.65,50,250,113.6,105,250,66.46,53,2,53.61,56,59,68.97,70,71,54.14,58,63,43.21,41,27,83.66,42,250,62.93,68,73,76.73,65,5,59.09,38,250,54.5,57,62,138.05,157,250,70.83,24,250,71.3,72,74,78.57,41,250,17.54,10,3,118.9,68,250,69.76,55,250,74.97,52,25,127.62,144,250,63.9,41,2,103.27,59,250,64.39,66,67,64.52,59,61,101.35,58,250,46.61,47,50,66.65,35,250,128.03,103,250,65.48,67,68,95.17,57,250,144.74,172,250,110.35,62,250,68.93,70,71,49.02,52,57,107.18,87,250,68.49,69,70,64.78,66,68,81.66,51,250,55.34,56,2,156.6,217,250,64.01,65,66,108.82,98,250,66.77,66,67,55.48,22,2,67.99,34,5,103.89,81,250,42.08,24,8,64.5,66,67,66.19,39,22,155.44,205,250,63.78,65,65,72.78,45,26,79.69,70,60,62.26,64,64,84.04,92,111,40.09,39,41,65.04,64,66,63.32,65,67,91.09,46,250,59.54,63,65,51.26,57,60,66.48,66,67,76.25,68,3,71.95,72,72,63.73,65,66,64.14,66,66,118.78,133,250,63.57,64,65,62.81,63,63,63.04,62,64,67.24,49,9,127.05,80,250,67.87,68,68,63.54,57,2,75.09,75,75,64.85,66,67,63.6,64,65,43.79,26,20,76.16,76,77,63.35,65,66,66.42,66,65,64.26,66,67,60.81,61,63,68.7,65,66,53.9,59,73,70.35,72,73,224.92,250,250,59.38,61,61,65.13,66,65,57.38,60,62,66.77,67,65,8.65,8,2,67.49,67,67,68.14,69,70,63.09,64,64,61.1,62,63,62.27,61,64,96.13,57,250,63.5,62,64,62.54,65,66,60.86,58,67,61.54,61,61,63.49,66,66,102.13,51,250,68.92,70,70,66.66,61,250,65.08,66,69,71.27,68,71,62.52,65,66,64.6,60,62,59.9,59,64,75.53,40,250,62.05,63,64,57.54,60,64,65.36,64,64,71.06,71,72,61.4,60,60,109.43,91,250,71.67,53,250,99.26,80,250,50.38,44,3,67.51,59,250,76.06,77,77,60.36,60,63,95.24,43,250,99.46,101,106,65.53,67,68,78.18,45,250,65.27,44,250,67.97,68,71,76.84,57,250,67.29,42,250,63.29,41,2,55.16,56,60,64.28,61,61,100.91,63,250,61.17,59,56,66.77,68,69,76.12,56,250,97.93,72,250,64.74,65,66,83.71,39,250,134.24,133,250,75.81,49,250,65.09,60,62,45.6,36,5,51.95,51,60,122.8,131,250,0.948,0.03438 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv index d7514da1a..4d6f16f4e 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1276-AD-BD-ALAM-VMF00156/wgs_accession_data.csv @@ -1,48 +1,48 @@ -sample_id,run_ena -VBS46299-6321STDY9453299,"ERR5967855, ERR5967879, ERR5967903" -VBS46300-6321STDY9453300,"ERR5967861, ERR5967885, ERR5967909" -VBS46301-6321STDY9453301,"ERR5967867, ERR5967891, ERR5967915" -VBS46302-6321STDY9453302,"ERR5967873, ERR5967897, ERR5967921" -VBS46303-6321STDY9453303,"ERR6045486, ERR6045509, ERR6045532" -VBS46304-6321STDY9453304,"ERR6045492, ERR6045515, ERR6045538" -VBS46305-6321STDY9453305,"ERR6045498, ERR6045521, ERR6045544" -VBS46306-6321STDY9453306,"ERR6045504, ERR6045527, ERR6045550" -VBS46307-6321STDY9453307,"ERR5967856, ERR5967880, ERR5967904" -VBS46308-6321STDY9453308,"ERR5967862, ERR5967886, ERR5967910" -VBS46309-6321STDY9453309,"ERR5967868, ERR5967892, ERR5967916" -VBS46310-6321STDY9453310,"ERR5967874, ERR5967898, ERR5967922" -VBS46311-6321STDY9453311,"ERR6045487, ERR6045510, ERR6045533" -VBS46312-6321STDY9453312,"ERR6045493, ERR6045516, ERR6045539" -VBS46313-6321STDY9453313,"ERR6045499, ERR6045522, ERR6045545" -VBS46314-6321STDY9453314,"ERR6045505, ERR6045528, ERR6045551" -VBS46315-6321STDY9453315,"ERR5967857, ERR5967881, ERR5967905" -VBS46316-6321STDY9453316,"ERR5967863, ERR5967887, ERR5967911" -VBS46317-6321STDY9453317,"ERR5967869, ERR5967893, ERR5967917" -VBS46318-6321STDY9453318,"ERR5967875, ERR5967899, ERR5967923" -VBS46319-6321STDY9453319,"ERR6045488, ERR6045511, ERR6045534" -VBS46320-6321STDY9453320,"ERR6045494, ERR6045517, ERR6045540" -VBS46321-6321STDY9453321,"ERR6045500, ERR6045523, ERR6045546" -VBS46322-6321STDY9453322,"ERR6045506, ERR6045529, ERR6045552" -VBS46323-6321STDY9453323,"ERR5967858, ERR5967882, ERR5967906" -VBS46324-6321STDY9453324,"ERR5967864, ERR5967888, ERR5967912" -VBS46325-6321STDY9453325,"ERR5967870, ERR5967894, ERR5967918" -VBS46326-6321STDY9453326,"ERR5967876, ERR5967900, ERR5967924" -VBS46327-6321STDY9453327,"ERR6045489, ERR6045512, ERR6045535" -VBS46328-6321STDY9453328,"ERR6045495, ERR6045518, ERR6045541" -VBS46329-6321STDY9453329,"ERR6045501, ERR6045524, ERR6045547" -VBS46330-6321STDY9453330,"ERR6045507, ERR6045530, ERR6045553" -VBS46331-6321STDY9453331,"ERR5967859, ERR5967883, ERR5967907" -VBS46332-6321STDY9453332,"ERR5967865, ERR5967889, ERR5967913" -VBS46333-6321STDY9453333,"ERR5967871, ERR5967895, ERR5967919" -VBS46334-6321STDY9453334,"ERR5967877, ERR5967901, ERR5967925" -VBS46335-6321STDY9453335,"ERR6045490, ERR6045513, ERR6045536" -VBS46336-6321STDY9453336,"ERR6045496, ERR6045519, ERR6045542" -VBS46337-6321STDY9453337,"ERR6045502, ERR6045525, ERR6045548" -VBS46338-6321STDY9453338,"ERR6045508, ERR6045531, ERR6045554" -VBS46339-6321STDY9453339,"ERR5967860, ERR5967884, ERR5967908" -VBS46340-6321STDY9453340,"ERR5967866, ERR5967890, ERR5967914" -VBS46341-6321STDY9453341,"ERR5967872, ERR5967896, ERR5967920" -VBS46342-6321STDY9453342,"ERR5967878, ERR5967902, ERR5967926" -VBS46343-6321STDY9453343,"ERR6045491, ERR6045514, ERR6045537" -VBS46344-6321STDY9453344,"ERR6045497, ERR6045520, ERR6045543" -VBS46345-6321STDY9453345,"ERR6045503, ERR6045526, ERR6045549" +sample_id,run_ena,analysis_ena +VBS46299-6321STDY9453299,, +VBS46300-6321STDY9453300,, +VBS46301-6321STDY9453301,, +VBS46302-6321STDY9453302,, +VBS46303-6321STDY9453303,, +VBS46304-6321STDY9453304,, +VBS46305-6321STDY9453305,, +VBS46306-6321STDY9453306,, +VBS46307-6321STDY9453307,, +VBS46308-6321STDY9453308,, +VBS46309-6321STDY9453309,, +VBS46310-6321STDY9453310,, +VBS46311-6321STDY9453311,, +VBS46312-6321STDY9453312,, +VBS46313-6321STDY9453313,, +VBS46314-6321STDY9453314,, +VBS46315-6321STDY9453315,, +VBS46316-6321STDY9453316,, +VBS46317-6321STDY9453317,, +VBS46318-6321STDY9453318,, +VBS46319-6321STDY9453319,, +VBS46320-6321STDY9453320,, +VBS46321-6321STDY9453321,, +VBS46322-6321STDY9453322,, +VBS46323-6321STDY9453323,, +VBS46324-6321STDY9453324,, +VBS46325-6321STDY9453325,, +VBS46326-6321STDY9453326,, +VBS46327-6321STDY9453327,, +VBS46328-6321STDY9453328,, +VBS46329-6321STDY9453329,, +VBS46330-6321STDY9453330,, +VBS46331-6321STDY9453331,, +VBS46332-6321STDY9453332,, +VBS46333-6321STDY9453333,, +VBS46334-6321STDY9453334,, +VBS46335-6321STDY9453335,, +VBS46336-6321STDY9453336,, +VBS46337-6321STDY9453337,, +VBS46338-6321STDY9453338,, +VBS46339-6321STDY9453339,, +VBS46340-6321STDY9453340,, +VBS46341-6321STDY9453341,, +VBS46342-6321STDY9453342,, +VBS46343-6321STDY9453343,, +VBS46344-6321STDY9453344,, +VBS46345-6321STDY9453345,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv index c5514f4cc..d6e5988ac 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/sequence_qc_stats.csv @@ -1,27 +1,27 @@ -sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence -VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 -VBS45688-6143STDY8787413,33.19,33,33,33,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 -VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 -VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33,33,33,32.89,33,33,0.984,0.01377 -VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 -VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 -VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 -VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 -VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 -VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 -VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 -VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 -VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 -VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 -VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 -VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 -VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 -VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 -VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 -VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 -VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 -VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 -VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 -VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 -VBS45743-6143STDY8787441,41.01,41,41,41,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS45687-6143STDY8787412,32.18,32,32,32.03,32,32,32.37,32,32,32.26,32,32,32.16,32,32,32.07,32,31,0.983,0.01374 +VBS45688-6143STDY8787413,33.19,33,33,33.0,33,33,33.35,33,33,33.27,33,33,33.24,33,33,33.14,33,33,0.984,0.01378 +VBS45689-6143STDY8787414,34.26,34,34,34.05,34,34,34.53,34,34,34.29,34,34,34.26,34,34,34.19,34,33,0.984,0.01378 +VBS45690-6143STDY8787415,33.07,33,33,32.91,33,33,33.32,33,33,33.19,33,33,33.0,33,33,32.89,33,33,0.984,0.01377 +VBS45691-6143STDY8787416,34.81,35,34,34.77,35,34,35.02,35,34,35.07,35,35,34.36,34,35,34.7,35,35,0.984,0.01377 +VBS45692-6143STDY8787417,31.07,31,31,30.85,31,31,31.24,31,31,31.11,31,31,31.13,31,31,31.14,31,31,0.983,0.01377 +VBS45701-6143STDY8787420,9.96,9,9,9.91,9,9,10.07,9,9,9.94,9,9,9.91,9,9,9.96,9,9,0.981,0.01546 +VBS45702-6143STDY8787421,8.77,8,8,8.76,8,8,8.81,8,8,8.85,8,8,8.67,8,8,8.74,8,8,0.981,0.01543 +VBS45708-6143STDY8787424,10.22,10,9,10.23,10,9,10.32,10,9,10.38,10,9,9.9,9,9,10.19,10,9,0.981,0.01538 +VBS45709-6143STDY8787425,8.32,8,7,8.31,8,7,8.43,8,7,8.4,8,7,8.1,7,7,8.29,8,7,0.98,0.01539 +VBS45711-6143STDY8787426,9.93,9,9,9.94,9,9,10.05,9,9,10.06,9,9,9.62,9,9,9.88,9,9,0.982,0.01536 +VBS45713-6143STDY8787427,23.63,23,23,23.54,23,23,23.78,23,23,23.77,23,23,23.41,23,23,23.64,23,23,0.983,0.01382 +VBS45717-6143STDY8787429,34.14,34,34,33.83,34,34,34.26,34,34,34.18,34,34,34.39,34,34,34.19,34,34,0.984,0.01375 +VBS45718-6143STDY8787430,35.17,35,35,34.87,35,35,35.34,35,35,35.21,35,35,35.29,35,35,35.26,35,35,0.984,0.01387 +VBS45720-6143STDY8787431,38.61,38,38,38.39,38,38,38.81,39,38,38.61,39,38,38.61,39,38,38.71,39,39,0.984,0.0138 +VBS45723-6143STDY8787432,39.79,40,40,39.73,40,40,40.05,40,40,40.21,40,40,39.09,39,39,39.73,40,40,0.984,0.01373 +VBS45724-6143STDY8787433,34.51,34,34,34.28,34,34,34.63,34,34,34.74,35,34,34.46,34,34,34.51,34,34,0.984,0.01378 +VBS45728-6143STDY8787434,49.49,49,49,49.16,49,49,49.6,49,49,49.69,50,50,49.47,50,50,49.73,50,49,0.984,0.0138 +VBS45734-6143STDY8787435,33.45,33,33,33.27,33,33,33.67,33,33,33.43,33,33,33.65,33,33,33.23,33,33,0.984,0.01379 +VBS45735-6143STDY8787436,33.51,33,33,33.25,33,33,33.58,33,33,33.75,34,33,33.47,33,33,33.7,34,33,0.984,0.01378 +VBS45737-6143STDY8787437,38.95,39,39,38.77,39,38,39.12,39,39,39.23,39,39,38.87,39,39,38.77,39,38,0.984,0.01379 +VBS45738-6143STDY8787438,39.63,40,39,39.44,39,39,39.84,40,39,39.87,40,39,39.46,39,39,39.57,39,39,0.984,0.01378 +VBS45739-6143STDY8787439,38.75,39,38,38.43,38,38,39.04,39,39,38.71,39,38,39.04,39,39,38.59,38,38,0.984,0.01376 +VBS45742-6143STDY8787440,43.47,43,43,43.37,43,44,43.52,43,43,43.55,43,43,43.32,43,43,43.61,43,43,0.984,0.01376 +VBS45743-6143STDY8787441,41.01,41,41,41.0,41,41,41.3,41,41,41.51,41,41,40.23,40,40,40.81,41,41,0.984,0.01376 VBS45745-6143STDY8787442,46.48,46,46,46.58,46,46,46.9,46,46,47.01,47,46,45.45,45,45,46.04,46,46,0.984,0.01381 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv index 5beda0a88..4dc0578d7 100644 --- a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00151/wgs_accession_data.csv @@ -1,27 +1,27 @@ -sample_id,run_ena -VBS45687-6143STDY8787412,"ERR4696346, ERR4766075, ERR4766106" -VBS45688-6143STDY8787413,"ERR4696347, ERR4766076, ERR4766107" -VBS45689-6143STDY8787414,"ERR4696348, ERR4766077, ERR4766108" -VBS45690-6143STDY8787415,"ERR4696349, ERR4766078, ERR4766109" -VBS45691-6143STDY8787416,"ERR4696350, ERR4766079, ERR4766110" -VBS45692-6143STDY8787417,"ERR4696351, ERR4766080, ERR4766111" -VBS45701-6143STDY8787420,"ERR4696354, ERR4766083, ERR4766114" -VBS45702-6143STDY8787421,"ERR4696355, ERR4766084, ERR4766115" -VBS45708-6143STDY8787424,"ERR4696358, ERR4766087, ERR4766118" -VBS45709-6143STDY8787425,"ERR4696359, ERR4766088, ERR4766119" -VBS45711-6143STDY8787426,"ERR4696360, ERR4766089, ERR4766120" -VBS45713-6143STDY8787427,"ERR4696361, ERR4766090, ERR4766121" -VBS45717-6143STDY8787429,"ERR4696363, ERR4766092, ERR4766123" -VBS45718-6143STDY8787430,"ERR4696364, ERR4766093, ERR4766124" -VBS45720-6143STDY8787431,"ERR4696365, ERR4766094, ERR4766125" -VBS45723-6143STDY8787432,"ERR4696366, ERR4766095, ERR4766126" -VBS45724-6143STDY8787433,"ERR4696367, ERR4766096, ERR4766127" -VBS45728-6143STDY8787434,"ERR4696368, ERR4766097, ERR4766128" -VBS45734-6143STDY8787435,"ERR4696369, ERR4766098, ERR4766129" -VBS45735-6143STDY8787436,"ERR4696370, ERR4766099, ERR4766130" -VBS45737-6143STDY8787437,"ERR4696371, ERR4766100, ERR4766131" -VBS45738-6143STDY8787438,"ERR4696372, ERR4766101, ERR4766132" -VBS45739-6143STDY8787439,"ERR4696373, ERR4766102, ERR4766133" -VBS45742-6143STDY8787440,"ERR4696374, ERR4766103, ERR4766134" -VBS45743-6143STDY8787441,"ERR4696375, ERR4766104, ERR4766135" -VBS45745-6143STDY8787442,"ERR4696376, ERR4766105, ERR4766136" +sample_id,run_ena,analysis_ena +VBS45687-6143STDY8787412,, +VBS45688-6143STDY8787413,, +VBS45689-6143STDY8787414,, +VBS45690-6143STDY8787415,, +VBS45691-6143STDY8787416,, +VBS45692-6143STDY8787417,, +VBS45701-6143STDY8787420,, +VBS45702-6143STDY8787421,, +VBS45708-6143STDY8787424,, +VBS45709-6143STDY8787425,, +VBS45711-6143STDY8787426,, +VBS45713-6143STDY8787427,, +VBS45717-6143STDY8787429,, +VBS45718-6143STDY8787430,, +VBS45720-6143STDY8787431,, +VBS45723-6143STDY8787432,, +VBS45724-6143STDY8787433,, +VBS45728-6143STDY8787434,, +VBS45734-6143STDY8787435,, +VBS45735-6143STDY8787436,, +VBS45737-6143STDY8787437,, +VBS45738-6143STDY8787438,, +VBS45739-6143STDY8787439,, +VBS45742-6143STDY8787440,, +VBS45743-6143STDY8787441,, +VBS45745-6143STDY8787442,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv new file mode 100644 index 000000000..2e34e6332 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/samples.meta.csv @@ -0,0 +1,249 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS54551-6143STDY11462443,BC1861,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54553-6143STDY11462445,BC1867,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54554-6143STDY11462446,BC1876,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54555-6143STDY11462447,BC1877,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54556-6143STDY11462448,BC1881,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54557-6143STDY11462449,BC1883,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54558-6143STDY11462450,BC1890,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54561-6143STDY11462453,BC1895,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54562-6143STDY11462454,BC1905,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54563-6143STDY11462455,BC1908,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54564-6143STDY11462456,BC1909,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54565-6143STDY11462457,BC1911,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54567-6143STDY11462459,BC1919,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54569-6143STDY11462461,BC1924,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54570-6143STDY11462462,BC1939,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54571-6143STDY11462463,BC1940,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54572-6143STDY11462464,BC1946,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54574-6143STDY11462466,BC1949,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54575-6143STDY11462467,BC1950,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54576-6143STDY11462468,BC1951,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54577-6143STDY11462469,BC1955,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54578-6143STDY11462470,BC1957,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54579-6143STDY11462471,BC1964,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54580-6143STDY11462472,BC1968,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54581-6143STDY11462473,BC1972,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54582-6143STDY11462474,BC1980,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54583-6143STDY11462475,BC1982,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54585-6143STDY11462477,BC1985,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54586-6143STDY11462478,BC1987,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54588-6143STDY11462480,BC2013,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54589-6143STDY11462481,BC2014,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54590-6143STDY11462482,BC2015,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54591-6143STDY11462483,BC2016,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54592-6143STDY11462484,BC2026,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54593-6143STDY11462485,BC2029,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54594-6143STDY11462486,BC2035,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54595-6143STDY11462487,BC2039,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54596-6143STDY11462488,BC2041,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54597-6143STDY11462489,BC2042,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54598-6143STDY11462490,BC2048,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54599-6143STDY11462491,BC2049,Amelie Vantaux,Cambodia,FOH05,2019,10,12.285,106.994,UKN +VBS54644-6143STDY11462538,BC4715,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,UKN +VBS54647-6143STDY11462541,BC4727,Amelie Vantaux,Cambodia,FOH05,2020,8,12.285,106.994,UKN +VBS54648-6143STDY11462542,BC4733,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54649-6143STDY11462543,BC4734,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54650-6143STDY11462544,BC4735,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54651-6143STDY11462545,BC4736,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54654-6143STDY11462548,BC4746,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54655-6143STDY11462549,BC4749,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54656-6143STDY11462550,BC4750,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54657-6143STDY11462551,BC4751,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54658-6143STDY11462552,BC4753,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54659-6143STDY11462553,BC4755,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54661-6143STDY11462555,BC4763,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54662-6143STDY11462556,BC4764,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54663-6143STDY11462557,BC4765,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54664-6143STDY11462558,BC4766,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54665-6143STDY11462559,BC4767,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54666-6143STDY11462560,BC4768,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54667-6143STDY11462561,BC4771,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54668-6143STDY11462562,BC4773,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54669-6143STDY11462563,BC4780,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54671-6143STDY11462565,BC4784,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54675-6143STDY11462569,BC4801,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54679-6143STDY11462573,BC4811,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54680-6143STDY11462574,BC4815,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54682-6143STDY11462576,BC4825,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54683-6143STDY11462577,BC4826,Amelie Vantaux,Cambodia,FOH05,2020,9,12.285,106.994,UKN +VBS54687-6143STDY11462581,BC4836,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,UKN +VBS54689-6143STDY11462583,BC4857,Amelie Vantaux,Cambodia,FOH05,2020,10,12.285,106.994,UKN +VBS54697-6143STDY11462591,S1047,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54699-6143STDY11462593,S1066,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54702-6143STDY11462596,S1089,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54703-6143STDY11462597,S1098,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54704-6143STDY11462598,S1108,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54706-6143STDY11462600,S1128,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54707-6143STDY11462601,S1133,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54709-6143STDY11462603,S1137,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54710-6143STDY11462604,S1155,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54711-6143STDY11462605,S1176,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54712-6143STDY11462606,S1177,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54713-6143STDY11462607,S1189,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54715-6143STDY11462609,S1191,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54716-6143STDY11462610,S1192,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54717-6143STDY11462611,S1198,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54718-6143STDY11462612,S1211,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54719-6143STDY11462613,S1214,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54720-6143STDY11462614,S1218,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54722-6143STDY11462616,S1229,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54723-6143STDY11462617,S1231,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54724-6143STDY11462618,S1249,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54726-6143STDY11462620,S1277,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54731-6143STDY11462625,S1312,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54734-6143STDY11462628,S1371,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54735-6143STDY11462629,S1374,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54737-6143STDY11462631,S1391,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54738-6143STDY11462634,S1398,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54739-6143STDY11462635,S1413,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54740-6143STDY11462636,S1415,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54741-6143STDY11462637,S1421,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54742-6143STDY11462638,S1425,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54743-6143STDY11462639,S1429,Amelie Vantaux,Cambodia,RS23,2020,11,13.194,105.846,UKN +VBS54744-6143STDY11462640,K0644,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54746-6143STDY11462642,K0657,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54747-6143STDY11462643,K0662,Amelie Vantaux,Cambodia,P09,2020,12,13.067,105.837,UKN +VBS54748-6143STDY11462644,K0681,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54749-6143STDY11462645,K0691,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54750-6143STDY11462646,K0693,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54751-6143STDY11462647,K0707,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54752-6143STDY11462648,K0714,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54753-6143STDY11462649,K0717,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54754-6143STDY11462650,K0733,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54755-6143STDY11462651,K0741,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54756-6143STDY11462652,K0742,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54757-6143STDY11462653,K0743,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54758-6143STDY11462654,K0744,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54759-6143STDY11462655,K0746,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54760-6143STDY11462656,K0751,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54761-6143STDY11462657,K0761,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54762-6143STDY11462658,K0773,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54763-6143STDY11462659,K0775,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54764-6143STDY11462660,K0797,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54765-6143STDY11462661,K0809,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54766-6143STDY11462662,K0848,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54767-6143STDY11462663,K0850,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54768-6143STDY11462664,K0862,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54769-6143STDY11462665,K0863,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54770-6143STDY11462666,K0865,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54771-6143STDY11462667,K0869,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54772-6143STDY11462668,K0885,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54773-6143STDY11462669,K0899,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54776-6143STDY11462672,K0928,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54777-6143STDY11462673,K0933,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54778-6143STDY11462674,K0941,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54779-6143STDY11462675,K0944,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54780-6143STDY11462676,K0946,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54781-6143STDY11462677,K0947,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54782-6143STDY11462678,K0954,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54783-6143STDY11462679,K0960,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54784-6143STDY11462680,K0962,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54785-6143STDY11462681,K0979,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54786-6143STDY11462682,K0991,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54787-6143STDY11462683,K1001,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54788-6143STDY11462684,K1007,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54789-6143STDY11462685,K1011,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54790-6143STDY11462686,K1017,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54791-6143STDY11462687,K1018,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54792-6143STDY11462688,K1019,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54793-6143STDY11462689,K1021,Amelie Vantaux,Cambodia,P09,2020,11,13.067,105.837,UKN +VBS54794-6143STDY11462690,P14110,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54795-6143STDY11462691,P14113,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54796-6143STDY11462692,P14114,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54797-6143STDY11462693,P14117,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54798-6143STDY11462694,P14120,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54799-6143STDY11462695,P14121,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54800-6143STDY11462696,P14122,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54801-6143STDY11462697,P14124,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54802-6143STDY11462698,P14131,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54803-6143STDY11462699,P14134,Amelie Vantaux,Cambodia,S7,2020,10,13.140,106.790,UKN +VBS54804-6143STDY11462700,P14135,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54805-6143STDY11462701,P14136,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54806-6143STDY11462702,P14137,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54807-6143STDY11462703,P14140,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54808-6143STDY11462704,P14141,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54809-6143STDY11462705,P14143,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54810-6143STDY11462706,P14149,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54811-6143STDY11462707,P14151,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54812-6143STDY11462708,P14152,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54813-6143STDY11462709,P14155,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54814-6143STDY11462710,P14157,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54815-6143STDY11462711,P14159,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54816-6143STDY11462712,P14160,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54817-6143STDY11462713,P14161,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54818-6143STDY11462714,P14162,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54819-6143STDY11462715,P14163,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54820-6143STDY11462716,P14164,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54821-6143STDY11462717,P14166,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54822-6143STDY11462718,P14168,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54823-6143STDY11462719,P14169,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54824-6143STDY11462720,P14170,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54825-6143STDY11462721,P14171,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54826-6143STDY11462722,P14174,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54827-6143STDY11462723,P14175,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54828-6143STDY11462724,P14176,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54829-6143STDY11462725,P14179,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54830-6143STDY11462726,P14180,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54831-6143STDY11462727,P14181,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54832-6143STDY11462730,P14182,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54833-6143STDY11462731,P14183,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54834-6143STDY11462732,P14184,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54835-6143STDY11462733,P14185,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54836-6143STDY11462734,P14187,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54837-6143STDY11462735,P14188,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54838-6143STDY11462736,P14190,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54839-6143STDY11462737,P14192,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54840-6143STDY11462738,P14194,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54841-6143STDY11462739,P14196,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54842-6143STDY11462740,P14201,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54843-6143STDY11462741,P18546,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54844-6143STDY11462742,P18555,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54845-6143STDY11462743,P18556,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54846-6143STDY11462744,P18572,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54847-6143STDY11462745,P18596,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54848-6143STDY11462746,P18609,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54849-6143STDY11462747,P18619,Amelie Vantaux,Cambodia,S7,2020,12,13.140,106.790,UKN +VBS54850-6143STDY11462748,P18669,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54851-6143STDY11462749,P18682,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54852-6143STDY11462750,P18685,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54853-6143STDY11462751,P18687,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54854-6143STDY11462752,P18697,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54855-6143STDY11462753,P18702,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54856-6143STDY11462754,P18704,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54857-6143STDY11462755,P18707,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54858-6143STDY11462756,P18712,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54859-6143STDY11462757,P18719,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54860-6143STDY11462758,P18726,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54861-6143STDY11462759,P18744,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54862-6143STDY11462760,P18749,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54863-6143STDY11462761,P18756,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54864-6143STDY11462762,P18760,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54865-6143STDY11462763,P18761,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54866-6143STDY11462764,P18762,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54867-6143STDY11462765,P18764,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54868-6143STDY11462766,P18770,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54869-6143STDY11462767,P18798,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54870-6143STDY11462768,P18803,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54871-6143STDY11462769,P18819,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54872-6143STDY11462770,P18827,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54873-6143STDY11462771,P18838,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54874-6143STDY11462772,P18841,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54875-6143STDY11462773,P18844,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54876-6143STDY11462774,P18845,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54877-6143STDY11462775,P18864,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54878-6143STDY11462776,P18866,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54879-6143STDY11462777,P18877,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54880-6143STDY11462778,P18885,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54881-6143STDY11462779,P18886,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54882-6143STDY11462780,P18888,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54883-6143STDY11462781,P18889,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54884-6143STDY11462782,P18890,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54885-6143STDY11462783,P18891,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54886-6143STDY11462784,P18892,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54887-6143STDY11462785,P18897,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54888-6143STDY11462786,P18920,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54889-6143STDY11462787,P18927,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54890-6143STDY11462788,P18932,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54891-6143STDY11462789,P18937,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN +VBS54892-6143STDY11462790,P18940,Amelie Vantaux,Cambodia,S7,2020,11,13.140,106.790,UKN diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv new file mode 100644 index 000000000..f54ec6433 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/sequence_qc_stats.csv @@ -0,0 +1,249 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS54551-6143STDY11462443,24.37,24,24,24.35,24,24,24.47,24,24,24.41,24,24,24.11,24,23,24.46,24,24,0.982,0.01406 +VBS54553-6143STDY11462445,25.31,25,25,25.39,25,25,25.53,25,25,25.8,26,25,24.26,24,23,25.34,25,24,0.983,0.01392 +VBS54554-6143STDY11462446,21.73,21,20,21.62,21,20,21.78,21,20,21.45,21,20,22.02,21,21,21.87,21,20,0.982,0.0143 +VBS54555-6143STDY11462447,12.71,11,8,12.7,11,8,12.82,11,8,11.48,10,8,13.55,12,9,13.04,11,9,0.976,0.01665 +VBS54556-6143STDY11462448,24.43,24,24,24.37,24,24,24.54,24,23,24.4,24,24,24.36,24,24,24.47,24,23,0.982,0.01416 +VBS54557-6143STDY11462449,27.11,26,24,26.88,26,24,27.22,26,24,26.17,25,24,27.93,27,25,27.56,27,25,0.982,0.01417 +VBS54558-6143STDY11462450,10.37,10,8,10.54,10,9,10.42,10,8,11.26,11,9,9.02,8,7,10.31,10,8,0.978,0.01598 +VBS54561-6143STDY11462453,29.15,29,28,29.26,29,28,29.32,29,29,29.6,29,29,28.15,28,28,29.23,29,28,0.983,0.01387 +VBS54562-6143STDY11462454,26.39,26,25,26.75,26,26,26.52,26,25,28.0,28,27,23.95,23,23,26.21,26,25,0.983,0.01393 +VBS54563-6143STDY11462455,31.37,31,31,31.27,31,31,31.61,31,31,31.57,31,31,31.01,31,30,31.3,31,31,0.983,0.01379 +VBS54564-6143STDY11462456,32.5,32,32,32.43,32,32,32.77,32,32,32.75,33,32,31.98,32,31,32.42,32,32,0.983,0.01377 +VBS54565-6143STDY11462457,35.72,35,35,35.75,36,35,35.98,36,35,36.46,36,36,34.55,34,34,35.63,35,36,0.984,0.01377 +VBS54567-6143STDY11462459,35.59,35,35,35.55,35,35,35.77,35,35,36.19,36,35,34.77,34,34,35.57,35,35,0.983,0.01379 +VBS54569-6143STDY11462461,12.99,13,12,13.13,13,12,13.06,12,12,13.55,13,13,12.04,11,11,12.98,13,12,0.981,0.01793 +VBS54570-6143STDY11462462,23.94,24,23,24.15,24,23,24.12,24,23,25.02,25,24,22.25,22,21,23.78,23,23,0.983,0.01394 +VBS54571-6143STDY11462463,15.9,15,15,15.8,15,15,16.0,15,15,15.52,15,14,16.15,15,15,16.05,15,15,0.981,0.01532 +VBS54572-6143STDY11462464,29.98,30,29,29.96,30,30,30.23,30,30,30.42,30,30,29.19,29,29,29.93,30,29,0.983,0.01378 +VBS54574-6143STDY11462466,23.01,23,22,23.32,23,23,23.1,23,22,24.53,24,23,20.85,20,20,22.79,22,22,0.982,0.01402 +VBS54575-6143STDY11462467,19.28,19,18,19.72,19,18,19.39,19,18,20.96,20,19,16.67,16,15,19.08,18,17,0.982,0.01468 +VBS54576-6143STDY11462468,27.1,27,26,27.35,27,27,27.25,27,26,28.56,28,28,24.87,24,24,27.06,27,26,0.983,0.01383 +VBS54577-6143STDY11462469,25.78,25,25,25.85,25,25,25.99,25,25,26.54,26,26,24.6,24,24,25.69,25,25,0.983,0.01393 +VBS54578-6143STDY11462470,31.36,31,31,31.31,31,31,31.61,31,31,31.48,31,31,31.01,31,30,31.28,31,31,0.983,0.01381 +VBS54579-6143STDY11462471,21.31,21,20,21.69,21,21,21.41,21,20,22.84,22,21,18.98,18,17,21.14,21,20,0.982,0.01433 +VBS54580-6143STDY11462472,33.76,33,33,33.64,33,33,34.01,33,32,33.28,33,33,33.97,33,33,33.92,33,33,0.983,0.01384 +VBS54581-6143STDY11462473,18.0,17,17,17.96,17,17,18.09,17,17,18.32,18,17,17.6,17,16,17.95,17,17,0.981,0.01738 +VBS54582-6143STDY11462474,11.96,11,10,12.2,12,11,12.07,11,10,12.85,12,11,10.47,10,9,11.84,11,10,0.981,0.01615 +VBS54583-6143STDY11462475,18.06,17,17,18.33,18,17,18.19,18,17,19.37,19,18,16.06,15,15,17.95,17,17,0.982,0.01476 +VBS54585-6143STDY11462477,12.17,12,11,12.4,12,11,12.24,12,11,12.97,12,12,10.8,10,9,12.12,12,11,0.981,0.01622 +VBS54586-6143STDY11462478,28.42,28,28,28.34,28,28,28.62,28,28,28.45,28,28,28.23,28,28,28.4,28,28,0.983,0.01386 +VBS54588-6143STDY11462480,31.24,31,31,31.18,31,31,31.49,31,31,31.32,31,31,30.94,31,30,31.16,31,31,0.983,0.01378 +VBS54589-6143STDY11462481,31.93,32,31,31.89,32,31,32.17,32,31,32.43,32,32,31.17,31,31,31.83,32,31,0.983,0.01382 +VBS54590-6143STDY11462482,14.14,13,12,14.53,14,13,14.2,13,12,15.51,15,13,12.0,11,10,13.93,13,12,0.981,0.01644 +VBS54591-6143STDY11462483,19.26,19,18,19.52,19,19,19.37,19,18,20.61,20,19,17.27,17,16,19.11,19,18,0.982,0.01476 +VBS54592-6143STDY11462484,20.68,20,19,21.01,21,20,20.77,20,20,22.11,22,21,18.6,18,17,20.48,20,19,0.982,0.01442 +VBS54593-6143STDY11462485,15.62,15,13,16.05,15,14,15.72,15,14,16.97,16,15,13.36,12,11,15.48,15,13,0.981,0.01679 +VBS54594-6143STDY11462486,18.57,18,17,18.99,18,17,18.69,18,17,20.2,20,19,16.04,15,15,18.36,18,17,0.982,0.01496 +VBS54595-6143STDY11462487,19.64,19,18,20.01,19,18,19.77,19,18,20.95,20,19,17.5,17,16,19.49,19,18,0.982,0.0154 +VBS54596-6143STDY11462488,17.39,17,16,17.77,17,16,17.53,17,16,18.89,18,17,15.07,14,14,17.13,17,16,0.982,0.01467 +VBS54597-6143STDY11462489,22.99,22,22,23.31,23,22,23.09,22,22,24.38,24,23,20.89,20,20,22.85,22,22,0.982,0.01413 +VBS54598-6143STDY11462490,13.18,13,12,13.48,13,12,13.3,13,12,14.39,14,13,11.27,11,10,13.03,12,12,0.982,0.01552 +VBS54599-6143STDY11462491,19.47,19,18,19.89,19,19,19.53,19,18,21.28,21,20,16.85,16,15,19.23,19,18,0.982,0.01448 +VBS54644-6143STDY11462538,25.94,25,24,26.61,26,24,25.97,25,24,27.95,27,26,22.54,22,20,25.9,25,24,0.983,0.01384 +VBS54647-6143STDY11462541,14.74,14,14,14.88,14,14,14.7,14,14,15.07,15,14,13.92,13,13,15.04,15,14,0.982,0.01453 +VBS54648-6143STDY11462542,32.55,32,31,33.18,33,32,32.76,32,32,34.11,34,33,29.44,29,28,32.49,32,31,0.983,0.01378 +VBS54649-6143STDY11462543,20.94,20,19,21.22,21,20,21.03,20,19,21.71,21,20,19.41,19,18,20.96,20,19,0.983,0.01396 +VBS54650-6143STDY11462544,28.66,28,26,28.89,28,26,28.69,28,26,28.03,27,26,28.35,27,25,29.18,28,27,0.983,0.01386 +VBS54651-6143STDY11462545,22.16,22,21,22.6,22,21,22.23,22,21,23.35,23,22,20.04,19,19,22.09,22,21,0.983,0.01388 +VBS54654-6143STDY11462548,27.16,27,26,27.65,27,27,27.24,27,26,28.65,28,28,24.7,24,24,26.98,27,26,0.983,0.01381 +VBS54655-6143STDY11462549,37.86,37,37,38.4,38,38,37.96,37,37,39.16,39,38,35.46,35,35,37.74,37,37,0.983,0.01376 +VBS54656-6143STDY11462550,60.68,61,60,61.0,61,61,60.89,60,60,61.99,62,62,58.53,59,58,60.53,61,60,0.985,0.01378 +VBS54657-6143STDY11462551,55.22,55,55,55.75,56,55,55.48,55,55,55.3,55,55,53.74,54,54,55.25,55,55,0.984,0.01377 +VBS54658-6143STDY11462552,47.42,47,46,47.46,47,46,47.56,47,46,46.76,46,45,47.02,46,46,48.24,48,47,0.985,0.01374 +VBS54659-6143STDY11462553,24.24,21,17,25.43,22,17,24.32,21,16,25.42,23,18,21.23,18,15,23.63,21,17,0.982,0.01404 +VBS54661-6143STDY11462555,11.73,11,10,11.5,11,10,11.86,11,10,11.0,10,10,12.61,12,10,11.9,11,10,0.981,0.01549 +VBS54662-6143STDY11462556,57.13,57,57,57.49,57,57,57.35,57,57,57.64,57,57,55.47,55,55,57.27,57,57,0.984,0.0138 +VBS54663-6143STDY11462557,50.39,50,50,50.69,50,50,50.61,50,50,51.34,51,51,48.42,48,48,50.42,50,50,0.984,0.01377 +VBS54664-6143STDY11462558,59.36,59,58,60.12,60,59,59.64,59,58,59.74,59,58,57.16,57,57,59.32,59,58,0.985,0.01374 +VBS54665-6143STDY11462559,57.41,57,57,57.84,58,58,57.58,57,57,57.6,57,57,55.94,56,56,57.61,58,58,0.984,0.01374 +VBS54666-6143STDY11462560,24.77,24,24,25.19,25,24,24.85,24,24,26.15,26,25,22.46,22,22,24.71,24,24,0.983,0.01384 +VBS54667-6143STDY11462561,23.18,23,22,23.2,23,22,23.26,23,22,22.93,23,22,23.17,23,22,23.32,23,23,0.983,0.01401 +VBS54668-6143STDY11462562,35.71,35,35,36.66,36,35,35.75,35,34,37.7,37,36,31.93,31,31,35.54,35,34,0.983,0.01377 +VBS54669-6143STDY11462563,23.57,23,22,24.16,24,23,23.54,23,22,25.06,25,24,21.07,20,20,23.43,23,22,0.983,0.01388 +VBS54671-6143STDY11462565,19.95,20,19,20.06,20,19,19.91,19,19,19.85,20,19,19.66,19,19,20.19,20,19,0.982,0.01405 +VBS54675-6143STDY11462569,23.74,23,22,23.88,23,22,23.94,23,22,24.91,24,24,21.92,21,20,23.7,23,23,0.983,0.0139 +VBS54679-6143STDY11462573,15.58,15,14,15.56,15,15,15.73,15,14,15.9,16,15,14.98,14,14,15.65,15,15,0.982,0.01456 +VBS54680-6143STDY11462574,23.08,22,22,22.69,22,21,23.34,23,22,22.59,22,22,23.96,23,22,23.04,22,22,0.983,0.01405 +VBS54682-6143STDY11462576,13.58,12,10,13.83,12,10,13.76,12,10,12.83,11,9,13.27,11,9,13.94,12,10,0.979,0.01477 +VBS54683-6143STDY11462577,27.51,25,22,27.13,25,22,27.79,25,22,25.93,24,22,29.28,26,23,27.71,25,22,0.983,0.01398 +VBS54687-6143STDY11462581,30.03,28,26,29.79,28,26,30.33,28,26,28.94,28,26,30.99,29,26,30.16,28,26,0.983,0.01384 +VBS54689-6143STDY11462583,18.32,18,16,18.42,18,17,18.56,18,16,18.19,17,16,17.67,17,15,18.54,18,17,0.982,0.01428 +VBS54697-6143STDY11462591,62.78,63,63,63.32,64,64,62.76,63,63,65.17,65,65,59.19,60,61,62.76,63,64,0.958,0.03367 +VBS54699-6143STDY11462593,22.19,21,20,22.48,22,20,22.29,21,20,23.76,23,22,19.72,19,17,22.25,21,20,0.982,0.01398 +VBS54702-6143STDY11462596,30.4,30,29,30.62,30,29,30.59,30,29,32.02,31,31,27.91,27,26,30.46,30,29,0.983,0.01381 +VBS54703-6143STDY11462597,9.35,9,8,9.44,9,8,9.46,9,8,9.99,10,9,8.33,8,7,9.36,9,8,0.979,0.01493 +VBS54704-6143STDY11462598,17.86,17,16,18.06,17,16,17.91,17,16,18.89,18,17,16.1,15,14,18.04,17,16,0.982,0.01427 +VBS54706-6143STDY11462600,34.78,34,33,35.35,35,33,35.13,34,33,37.09,36,34,30.7,30,29,34.79,34,33,0.983,0.01379 +VBS54707-6143STDY11462601,10.4,10,9,10.43,10,9,10.39,10,9,10.84,10,10,9.74,9,8,10.52,10,9,0.979,0.01483 +VBS54709-6143STDY11462603,13.51,13,13,13.55,13,13,13.56,13,13,13.59,13,13,12.96,12,12,13.8,13,13,0.981,0.01462 +VBS54710-6143STDY11462604,12.98,12,12,13.21,13,12,12.97,12,11,13.64,13,13,11.68,11,10,13.14,13,12,0.981,0.01466 +VBS54711-6143STDY11462605,19.19,18,18,19.3,19,18,19.27,18,17,19.4,19,18,18.15,17,16,19.69,19,18,0.982,0.01419 +VBS54712-6143STDY11462606,27.89,27,26,28.44,28,27,28.05,27,26,30.05,29,29,24.36,24,22,27.83,27,27,0.983,0.0138 +VBS54713-6143STDY11462607,23.4,22,21,23.86,23,22,23.43,22,21,24.13,23,22,21.32,20,19,23.81,23,21,0.982,0.01395 +VBS54715-6143STDY11462609,12.45,12,11,12.5,12,11,12.51,12,11,12.6,12,11,11.86,11,10,12.71,12,11,0.981,0.01464 +VBS54716-6143STDY11462610,25.38,25,25,25.65,25,25,25.52,25,25,26.58,26,25,23.32,23,23,25.47,25,25,0.983,0.01383 +VBS54717-6143STDY11462611,26.6,26,25,26.84,26,26,26.81,26,25,27.59,27,27,24.51,24,23,26.86,26,26,0.983,0.01379 +VBS54718-6143STDY11462612,22.32,22,21,22.49,22,22,22.49,22,21,23.05,23,22,20.69,20,19,22.59,22,22,0.983,0.01398 +VBS54719-6143STDY11462613,29.68,29,29,30.02,30,29,29.62,29,29,31.46,31,31,26.9,26,26,29.93,30,29,0.956,0.03347 +VBS54720-6143STDY11462614,25.04,24,24,25.59,25,24,25.26,24,24,26.74,26,26,21.95,21,20,24.99,24,24,0.983,0.01387 +VBS54722-6143STDY11462616,25.39,25,23,25.79,25,24,25.29,24,23,26.76,26,26,23.12,22,21,25.6,25,24,0.983,0.0139 +VBS54723-6143STDY11462617,24.87,24,23,25.24,25,23,24.95,24,23,25.46,25,24,23.03,22,21,25.29,25,24,0.983,0.01396 +VBS54724-6143STDY11462618,10.97,10,9,11.13,10,9,10.99,10,9,11.24,11,10,10.12,9,8,11.23,11,10,0.981,0.01493 +VBS54726-6143STDY11462620,27.03,26,26,27.35,27,26,27.23,27,26,28.64,28,27,24.42,24,23,27.0,27,26,0.983,0.01381 +VBS54731-6143STDY11462625,33.14,33,32,33.76,33,33,33.05,33,32,35.62,35,34,29.52,29,29,32.99,33,33,0.956,0.03349 +VBS54734-6143STDY11462628,35.2,34,34,35.47,35,33,34.91,34,34,35.22,34,34,34.29,34,33,36.1,35,35,0.957,0.03355 +VBS54735-6143STDY11462629,33.73,33,32,34.28,34,33,33.95,33,32,35.98,35,34,30.07,29,29,33.58,33,32,0.984,0.01376 +VBS54737-6143STDY11462631,37.02,36,35,37.98,37,36,37.37,36,36,39.01,38,38,32.51,32,31,37.09,37,36,0.983,0.01378 +VBS54738-6143STDY11462634,47.23,47,47,47.68,48,48,47.28,47,46,48.43,48,48,44.93,45,45,47.35,47,47,0.984,0.01376 +VBS54739-6143STDY11462635,40.39,40,39,40.81,40,39,40.51,40,39,42.17,42,41,37.4,37,36,40.53,40,39,0.984,0.01378 +VBS54740-6143STDY11462636,38.06,37,37,38.45,38,37,38.16,37,36,40.11,40,39,35.0,34,33,38.08,38,37,0.984,0.01375 +VBS54741-6143STDY11462637,40.14,40,39,40.48,40,39,40.43,40,39,42.05,42,41,37.01,36,36,40.11,40,39,0.984,0.01378 +VBS54742-6143STDY11462638,41.36,41,40,42.03,41,40,41.63,41,40,44.09,43,42,36.87,36,36,41.26,41,40,0.984,0.01377 +VBS54743-6143STDY11462639,36.4,36,35,36.91,36,36,36.47,36,35,38.29,38,37,33.22,32,32,36.55,36,36,0.984,0.01379 +VBS54744-6143STDY11462640,35.02,34,33,35.13,34,34,35.17,34,33,35.22,35,35,33.73,33,32,35.65,35,35,0.984,0.01442 +VBS54746-6143STDY11462642,29.11,29,28,29.23,29,29,29.3,29,29,29.57,29,29,28.14,28,28,29.08,29,28,0.983,0.0138 +VBS54747-6143STDY11462643,41.8,41,41,42.2,42,41,42.08,42,41,43.27,43,42,39.0,39,38,41.84,42,41,0.984,0.0138 +VBS54748-6143STDY11462644,28.84,28,28,28.8,29,28,29.07,29,28,29.22,29,29,28.22,28,28,28.77,28,28,0.983,0.01378 +VBS54749-6143STDY11462645,35.02,35,34,35.47,35,34,35.33,35,34,36.85,36,36,31.85,31,31,34.92,35,34,0.984,0.01377 +VBS54750-6143STDY11462646,33.75,33,33,34.0,34,33,34.03,34,33,35.18,35,34,31.49,31,31,33.57,33,33,0.983,0.01379 +VBS54751-6143STDY11462647,35.43,35,34,35.7,35,35,35.61,35,34,36.79,37,36,32.96,32,32,35.64,35,35,0.983,0.01383 +VBS54752-6143STDY11462648,39.05,39,38,39.58,39,39,39.19,39,38,40.56,40,40,36.11,36,35,39.17,39,38,0.984,0.01375 +VBS54753-6143STDY11462649,40.95,40,40,41.47,41,40,41.19,41,40,43.08,43,42,37.46,37,37,40.82,40,40,0.984,0.0138 +VBS54754-6143STDY11462650,25.58,25,24,25.55,25,24,25.73,25,23,25.12,24,23,25.5,24,23,25.97,25,24,0.983,0.01392 +VBS54755-6143STDY11462651,39.81,39,38,39.74,39,38,40.04,39,39,39.08,39,38,40.04,39,39,40.11,40,39,0.984,0.01378 +VBS54756-6143STDY11462652,39.6,39,39,39.4,39,39,39.83,39,39,39.01,39,38,39.91,40,39,39.96,40,39,0.983,0.01375 +VBS54757-6143STDY11462653,31.15,28,25,31.31,29,26,31.33,28,24,29.61,27,25,31.18,28,25,32.23,29,26,0.983,0.01391 +VBS54758-6143STDY11462654,28.23,28,27,28.1,27,27,28.25,27,26,27.73,27,26,28.59,28,27,28.66,28,27,0.984,0.01397 +VBS54759-6143STDY11462655,37.02,36,36,36.58,36,35,37.23,36,35,36.23,36,35,37.94,37,36,37.41,37,36,0.983,0.01378 +VBS54760-6143STDY11462656,28.5,28,26,28.68,28,27,28.59,28,26,28.03,27,26,28.17,27,26,28.9,28,27,0.983,0.01383 +VBS54761-6143STDY11462657,28.4,27,25,28.52,27,25,28.42,26,24,27.22,26,24,28.56,26,24,29.31,27,25,0.983,0.0139 +VBS54762-6143STDY11462658,36.71,36,36,37.19,37,36,36.82,36,36,38.25,38,37,33.78,33,32,36.97,37,36,0.983,0.01376 +VBS54763-6143STDY11462659,11.77,11,10,11.78,11,10,11.81,11,10,11.82,11,10,11.32,10,10,12.07,11,10,0.981,0.01484 +VBS54764-6143STDY11462660,39.55,39,38,39.96,39,39,39.74,39,38,40.36,40,39,37.46,37,36,39.75,39,38,0.984,0.01376 +VBS54765-6143STDY11462661,22.18,22,21,22.1,22,21,22.2,21,21,22.61,22,22,21.4,21,20,22.61,22,22,0.983,0.01401 +VBS54766-6143STDY11462662,33.5,33,32,33.74,33,33,33.7,33,32,34.93,34,34,31.03,30,30,33.68,33,33,0.983,0.01381 +VBS54767-6143STDY11462663,22.3,21,20,22.4,21,20,22.42,21,20,22.65,22,21,21.0,20,19,22.84,22,20,0.982,0.01407 +VBS54768-6143STDY11462664,33.79,33,31,33.61,33,32,33.98,33,31,33.18,33,31,33.83,33,31,34.46,33,32,0.984,0.01378 +VBS54769-6143STDY11462665,39.38,39,39,39.55,39,39,39.56,39,40,40.32,40,40,37.38,37,37,39.83,40,40,0.983,0.01383 +VBS54770-6143STDY11462666,35.28,34,32,35.52,34,32,35.46,34,32,34.91,34,32,34.2,33,31,36.06,35,33,0.983,0.01381 +VBS54771-6143STDY11462667,19.01,18,18,19.02,18,18,18.95,18,17,19.06,19,18,18.58,18,17,19.48,19,18,0.982,0.01422 +VBS54772-6143STDY11462668,37.73,37,37,38.04,38,37,37.96,37,37,38.86,39,38,35.66,35,35,37.65,37,37,0.983,0.01379 +VBS54773-6143STDY11462669,36.39,36,37,36.2,36,37,36.59,36,37,36.68,37,37,35.77,36,36,36.76,37,37,0.984,0.0138 +VBS54776-6143STDY11462672,48.16,48,48,48.54,48,48,48.46,48,48,49.53,49,49,45.67,46,45,48.03,48,48,0.984,0.01373 +VBS54777-6143STDY11462673,35.35,35,34,35.88,35,35,35.64,35,34,36.52,36,36,32.62,32,32,35.42,35,34,0.983,0.01379 +VBS54778-6143STDY11462674,35.27,35,34,35.75,35,35,35.51,35,34,37.28,37,36,32.06,32,31,35.07,35,34,0.983,0.01379 +VBS54779-6143STDY11462675,35.24,34,33,36.04,35,33,35.24,34,32,37.56,36,35,31.36,30,29,35.19,34,33,0.983,0.01378 +VBS54780-6143STDY11462676,33.48,33,33,33.76,33,33,33.71,33,33,35.11,35,34,30.94,31,30,33.38,33,33,0.984,0.01374 +VBS54781-6143STDY11462677,41.55,41,41,41.92,42,41,41.84,41,41,43.6,43,43,38.26,38,38,41.47,41,41,0.984,0.01376 +VBS54782-6143STDY11462678,38.72,38,38,39.04,39,39,38.86,38,39,40.93,41,41,35.55,35,35,38.72,39,39,0.983,0.01371 +VBS54783-6143STDY11462679,38.12,38,37,38.19,38,37,38.4,38,37,38.31,38,38,36.67,36,35,38.8,38,38,0.983,0.01378 +VBS54784-6143STDY11462680,36.95,37,36,37.1,37,37,37.19,37,36,37.94,38,37,34.96,34,34,37.25,37,37,0.984,0.01381 +VBS54785-6143STDY11462681,40.29,40,39,40.71,40,40,40.64,40,39,42.17,42,41,37.1,37,36,40.1,40,39,0.983,0.01379 +VBS54786-6143STDY11462682,38.86,39,38,39.18,39,38,39.1,39,38,40.25,40,39,36.39,36,36,38.89,39,38,0.984,0.01375 +VBS54787-6143STDY11462683,36.14,36,36,35.94,36,35,36.31,36,35,36.9,37,37,34.97,34,34,36.63,36,36,0.983,0.01381 +VBS54788-6143STDY11462684,33.6,33,33,33.28,33,33,33.87,33,34,34.41,34,35,32.61,32,32,33.89,34,34,0.983,0.01378 +VBS54789-6143STDY11462685,41.23,41,41,40.91,41,41,41.26,41,41,41.44,41,42,41.02,41,40,41.77,41,41,0.984,0.01378 +VBS54790-6143STDY11462686,10.37,9,6,10.5,9,7,10.46,9,6,9.76,8,6,10.21,8,6,10.81,9,7,0.976,0.01475 +VBS54791-6143STDY11462687,41.09,41,40,41.22,41,41,41.51,41,40,40.95,41,40,39.89,39,39,41.56,41,41,0.984,0.01377 +VBS54792-6143STDY11462688,39.02,39,38,39.39,39,38,39.2,39,38,40.88,40,40,36.28,36,36,38.75,38,38,0.984,0.01376 +VBS54793-6143STDY11462689,41.32,41,41,41.61,41,41,41.62,41,40,42.92,43,42,38.75,38,38,41.13,41,40,0.984,0.01376 +VBS54794-6143STDY11462690,36.59,36,36,37.05,37,36,36.67,36,36,38.21,38,37,33.95,33,33,36.56,36,36,0.984,0.01377 +VBS54795-6143STDY11462691,37.53,37,37,37.67,37,37,37.85,37,37,38.53,38,38,35.85,36,36,37.38,37,37,0.983,0.01381 +VBS54796-6143STDY11462692,40.51,40,40,40.69,40,40,40.8,40,40,41.55,41,41,38.72,38,38,40.42,40,40,0.984,0.01377 +VBS54797-6143STDY11462693,41.64,41,41,42.0,42,41,41.92,41,41,43.02,43,42,39.24,39,39,41.41,41,41,0.984,0.01378 +VBS54798-6143STDY11462694,36.9,37,36,37.11,37,37,37.17,37,36,38.09,38,37,34.98,35,35,36.72,36,36,0.983,0.01376 +VBS54799-6143STDY11462695,46.56,46,46,46.69,47,46,46.87,46,46,47.84,48,47,44.6,44,45,46.41,46,46,0.983,0.01378 +VBS54800-6143STDY11462696,40.13,40,39,40.33,40,40,40.35,40,39,41.83,42,41,37.72,37,37,39.97,40,39,0.984,0.0138 +VBS54801-6143STDY11462697,44.54,44,44,44.99,45,44,44.82,44,44,46.56,46,46,41.27,41,41,44.34,44,44,0.984,0.01373 +VBS54802-6143STDY11462698,32.97,33,32,33.14,33,33,33.27,33,32,34.09,34,33,31.08,31,31,32.89,33,32,0.983,0.01375 +VBS54803-6143STDY11462699,33.79,33,33,34.19,34,33,34.14,34,33,35.24,35,34,31.26,31,31,33.5,33,32,0.983,0.01377 +VBS54804-6143STDY11462700,37.84,37,37,38.07,38,37,37.98,37,37,38.29,38,37,36.28,36,35,38.27,38,38,0.983,0.01382 +VBS54805-6143STDY11462701,32.32,32,31,32.66,32,32,32.54,32,31,33.67,33,32,30.01,30,29,32.23,32,31,0.983,0.01375 +VBS54806-6143STDY11462702,33.27,33,32,33.55,33,32,33.49,33,32,34.14,34,33,31.26,31,30,33.52,33,32,0.983,0.01385 +VBS54807-6143STDY11462703,37.26,36,35,37.54,37,35,37.33,36,35,36.98,36,34,36.29,35,34,37.92,37,36,0.983,0.01385 +VBS54808-6143STDY11462704,34.37,34,33,34.73,34,34,34.7,34,33,35.7,35,34,31.96,32,31,34.17,34,33,0.984,0.01413 +VBS54809-6143STDY11462705,32.29,31,28,32.61,31,29,32.54,31,28,31.65,30,27,31.4,30,27,32.96,31,29,0.983,0.01389 +VBS54810-6143STDY11462706,29.19,29,28,29.24,29,29,29.41,29,28,29.8,30,29,28.11,28,28,29.16,29,28,0.983,0.01378 +VBS54811-6143STDY11462707,35.99,35,34,36.19,35,34,36.13,35,34,35.67,35,34,35.28,34,33,36.48,35,34,0.983,0.01375 +VBS54812-6143STDY11462708,27.04,26,25,27.38,27,26,27.24,26,25,28.31,28,27,24.71,24,23,27.08,26,25,0.982,0.01384 +VBS54813-6143STDY11462709,35.98,34,32,36.4,35,32,35.99,34,32,36.63,35,32,34.01,32,31,36.5,35,31,0.983,0.01381 +VBS54814-6143STDY11462710,39.95,40,39,39.76,39,39,40.09,40,39,40.23,40,40,39.8,39,39,39.93,40,39,0.984,0.01386 +VBS54815-6143STDY11462711,40.36,40,40,40.6,40,40,40.66,40,40,41.62,41,41,38.15,38,37,40.31,40,40,0.983,0.01379 +VBS54816-6143STDY11462712,37.96,37,36,38.68,38,37,37.99,37,35,40.43,40,39,34.0,33,31,37.88,37,35,0.984,0.0138 +VBS54817-6143STDY11462713,37.73,37,36,38.02,37,36,38.0,37,35,38.14,37,36,36.06,35,34,38.02,37,35,0.984,0.01376 +VBS54818-6143STDY11462714,32.92,32,32,33.31,33,32,33.28,33,32,34.19,34,33,30.19,30,28,32.99,32,32,0.983,0.01378 +VBS54819-6143STDY11462715,33.08,33,32,33.42,33,32,33.27,33,32,34.71,34,34,30.57,30,30,32.89,33,32,0.983,0.01377 +VBS54820-6143STDY11462716,36.88,36,36,37.48,37,36,37.25,37,36,39.36,39,38,32.84,32,32,36.56,36,36,0.983,0.01381 +VBS54821-6143STDY11462717,34.82,34,34,35.1,35,34,35.07,35,34,36.09,36,35,32.69,32,32,34.67,34,34,0.983,0.01379 +VBS54822-6143STDY11462718,37.06,37,36,37.51,37,37,37.37,37,36,39.0,39,38,34.02,34,33,36.72,36,36,0.983,0.01378 +VBS54823-6143STDY11462719,40.16,40,39,40.34,40,40,40.54,40,39,41.43,41,40,37.95,38,37,40.05,40,39,0.984,0.01377 +VBS54824-6143STDY11462720,36.06,36,35,36.48,36,35,36.41,36,35,37.99,38,37,32.88,32,32,35.81,35,35,0.983,0.01376 +VBS54825-6143STDY11462721,36.93,37,36,37.27,37,36,37.24,37,36,38.59,38,38,34.23,34,34,36.69,36,36,0.983,0.01375 +VBS54826-6143STDY11462722,38.37,38,37,38.76,38,38,38.66,38,38,40.18,40,39,35.48,35,35,38.16,38,37,0.984,0.01375 +VBS54827-6143STDY11462723,41.05,41,40,41.55,41,41,41.29,41,40,43.14,43,42,37.63,37,37,40.89,41,40,0.984,0.01375 +VBS54828-6143STDY11462724,33.42,33,32,34.01,34,33,33.73,33,33,35.18,35,34,30.15,30,29,33.22,33,32,0.983,0.01375 +VBS54829-6143STDY11462725,34.55,34,34,34.9,35,34,34.91,34,34,35.84,36,35,32.07,32,32,34.44,34,34,0.984,0.01373 +VBS54830-6143STDY11462726,42.71,42,42,43.18,43,42,43.03,43,42,44.74,44,44,39.4,39,39,42.44,42,42,0.984,0.01379 +VBS54831-6143STDY11462727,40.39,40,39,40.86,40,40,40.65,40,39,42.26,42,41,37.43,37,37,40.04,40,39,0.984,0.01377 +VBS54832-6143STDY11462730,50.33,49,48,51.63,50,49,50.61,49,48,54.51,54,52,43.58,43,42,49.74,49,47,0.984,0.01378 +VBS54833-6143STDY11462731,36.22,36,35,36.69,36,36,36.5,36,35,38.21,38,37,33.02,33,32,35.94,36,35,0.984,0.01373 +VBS54834-6143STDY11462732,34.69,34,34,35.15,35,34,35.02,34,34,36.46,36,35,31.59,31,31,34.49,34,33,0.983,0.01374 +VBS54835-6143STDY11462733,30.35,30,29,30.7,30,30,30.66,30,30,31.67,31,31,28.02,28,27,30.09,30,29,0.983,0.01381 +VBS54836-6143STDY11462734,35.62,35,35,36.12,36,35,35.94,35,35,37.55,37,37,32.34,32,32,35.41,35,34,0.984,0.01387 +VBS54837-6143STDY11462735,36.53,36,35,37.04,37,36,36.76,36,35,38.65,38,38,33.16,33,33,36.29,36,35,0.984,0.01378 +VBS54838-6143STDY11462736,31.74,31,30,32.39,32,31,32.0,31,30,34.54,34,33,27.54,27,26,31.33,31,30,0.983,0.01382 +VBS54839-6143STDY11462737,42.05,41,41,42.94,42,41,42.26,41,41,45.32,45,44,37.1,36,37,41.53,41,41,0.983,0.01539 +VBS54840-6143STDY11462738,36.1,35,35,36.65,36,35,36.4,36,35,37.89,37,37,32.94,32,31,35.83,35,34,0.984,0.01375 +VBS54841-6143STDY11462739,37.86,37,36,38.42,38,37,38.22,37,37,40.25,40,38,33.91,33,33,37.63,37,37,0.984,0.01375 +VBS54842-6143STDY11462740,35.13,35,34,35.63,35,34,35.53,35,34,36.64,36,36,32.24,32,31,34.84,34,34,0.983,0.01374 +VBS54843-6143STDY11462741,36.67,36,35,37.18,37,36,36.8,36,35,38.76,38,37,33.38,33,32,36.58,36,35,0.983,0.01374 +VBS54844-6143STDY11462742,40.35,40,39,40.91,40,39,40.59,40,39,42.54,42,41,36.78,36,36,40.17,40,39,0.983,0.01376 +VBS54845-6143STDY11462743,35.38,35,34,36.02,35,35,35.64,35,34,37.68,37,36,31.54,31,30,35.13,35,34,0.984,0.01379 +VBS54846-6143STDY11462744,38.13,37,37,38.84,38,37,38.39,37,37,40.98,40,40,33.74,33,32,37.73,37,36,0.983,0.01378 +VBS54847-6143STDY11462745,41.91,41,41,42.48,42,42,42.25,42,41,44.18,44,43,38.23,38,37,41.54,41,41,0.984,0.01375 +VBS54848-6143STDY11462746,41.42,41,41,41.72,41,41,41.77,41,40,43.07,43,42,38.78,38,38,41.2,41,41,0.984,0.01375 +VBS54849-6143STDY11462747,40.16,40,39,40.58,40,40,40.4,40,40,41.75,41,41,37.41,37,37,40.03,40,40,0.984,0.01375 +VBS54850-6143STDY11462748,27.29,27,26,27.46,27,26,27.54,27,26,28.03,28,27,25.9,25,25,27.14,27,26,0.983,0.01381 +VBS54851-6143STDY11462749,39.71,39,39,40.12,40,39,40.13,40,39,41.57,41,41,36.69,36,36,39.31,39,39,0.984,0.0138 +VBS54852-6143STDY11462750,39.7,39,39,40.28,40,39,39.99,39,39,41.93,42,41,36.28,36,35,39.16,39,38,0.984,0.01378 +VBS54853-6143STDY11462751,37.2,37,36,37.58,37,37,37.47,37,36,39.16,39,38,34.3,34,34,36.86,37,36,0.984,0.01378 +VBS54854-6143STDY11462752,43.41,43,42,44.02,44,43,43.62,43,43,46.0,46,45,39.5,39,38,43.1,43,43,0.984,0.01375 +VBS54855-6143STDY11462753,36.82,36,36,37.38,37,36,36.98,36,35,39.28,39,38,33.23,33,32,36.47,36,36,0.984,0.01377 +VBS54856-6143STDY11462754,39.02,39,38,39.43,39,38,39.3,39,38,41.1,41,40,35.9,35,35,38.71,38,38,0.984,0.01372 +VBS54857-6143STDY11462755,16.63,16,15,16.88,16,16,16.75,16,15,17.62,17,17,15.05,14,14,16.45,16,15,0.982,0.01453 +VBS54858-6143STDY11462756,35.01,34,34,35.6,35,34,35.22,34,33,37.4,37,36,31.39,31,30,34.64,34,33,0.984,0.0138 +VBS54859-6143STDY11462757,41.61,41,41,42.1,42,41,41.7,41,41,43.96,44,43,38.31,38,38,41.36,41,41,0.984,0.01373 +VBS54860-6143STDY11462758,33.27,33,32,33.81,33,33,33.46,33,33,35.41,35,34,29.94,29,29,32.98,33,32,0.984,0.01377 +VBS54861-6143STDY11462759,43.14,43,42,43.7,43,43,43.35,43,42,45.93,46,45,39.18,39,38,42.72,42,42,0.983,0.01374 +VBS54862-6143STDY11462760,37.43,37,37,37.95,38,37,37.65,37,36,39.8,39,39,34.02,34,33,37.01,37,36,0.984,0.01374 +VBS54863-6143STDY11462761,39.19,39,38,39.77,39,39,39.34,39,38,41.52,41,41,35.75,35,35,38.8,38,38,0.984,0.01378 +VBS54864-6143STDY11462762,43.44,43,43,43.45,43,43,43.85,43,43,44.39,44,44,41.92,42,42,43.27,43,43,0.984,0.01377 +VBS54865-6143STDY11462763,35.01,35,34,35.18,35,34,35.28,35,34,36.24,36,36,33.06,33,33,34.87,35,34,0.983,0.01377 +VBS54866-6143STDY11462764,35.18,35,35,35.22,35,35,35.43,35,35,35.72,35,35,34.23,34,34,35.1,35,34,0.984,0.01375 +VBS54867-6143STDY11462765,37.9,38,37,37.71,38,37,38.23,38,37,37.83,38,37,37.83,38,37,37.88,38,37,0.983,0.01382 +VBS54868-6143STDY11462766,40.3,40,40,40.29,40,40,40.64,40,40,40.83,41,40,39.38,39,39,40.1,40,40,0.984,0.01379 +VBS54869-6143STDY11462767,38.52,38,38,38.61,38,38,38.77,38,38,39.55,39,39,36.96,37,37,38.38,38,38,0.984,0.01372 +VBS54870-6143STDY11462768,42.19,42,42,42.33,42,42,42.52,42,42,43.53,43,43,40.18,40,40,41.98,42,41,0.984,0.01376 +VBS54871-6143STDY11462769,41.02,41,40,41.0,41,40,41.41,41,41,41.87,42,41,39.71,39,39,40.81,41,40,0.984,0.01376 +VBS54872-6143STDY11462770,37.26,37,37,37.24,37,37,37.63,37,37,37.94,38,37,36.19,36,36,37.02,37,37,0.983,0.01382 +VBS54873-6143STDY11462771,38.09,38,37,38.65,38,38,38.38,38,37,40.22,40,39,34.7,34,34,37.72,37,37,0.984,0.01374 +VBS54874-6143STDY11462772,30.65,30,30,30.88,31,30,30.92,30,30,31.95,32,31,28.61,28,28,30.41,30,30,0.984,0.01375 +VBS54875-6143STDY11462773,31.89,31,30,32.21,32,31,31.97,31,30,32.96,33,32,30.21,30,29,31.7,31,31,0.984,0.01383 +VBS54876-6143STDY11462774,36.46,36,35,36.86,37,36,36.62,36,35,38.6,38,38,33.41,33,33,36.25,36,35,0.983,0.0138 +VBS54877-6143STDY11462775,37.36,37,36,37.9,38,37,37.49,37,37,39.73,39,38,33.88,33,33,37.06,37,36,0.984,0.01379 +VBS54878-6143STDY11462776,36.71,36,36,37.16,37,36,37.12,37,36,39.08,39,38,33.18,33,32,36.2,36,35,0.984,0.01375 +VBS54879-6143STDY11462777,34.27,34,33,34.81,34,34,34.4,34,33,36.43,36,35,31.06,31,30,33.95,34,33,0.983,0.0138 +VBS54880-6143STDY11462778,35.94,35,35,36.39,36,35,36.16,35,35,38.09,38,37,32.79,32,31,35.63,35,35,0.984,0.01379 +VBS54881-6143STDY11462779,32.4,32,31,32.85,32,32,32.5,32,32,34.39,34,33,29.51,29,28,32.17,32,32,0.983,0.01379 +VBS54882-6143STDY11462780,30.5,30,29,30.94,31,30,30.7,30,29,32.3,32,31,27.67,27,27,30.24,30,29,0.984,0.0138 +VBS54883-6143STDY11462781,29.24,29,28,29.82,29,29,29.43,29,28,31.46,31,30,25.85,25,25,28.9,28,28,0.983,0.01377 +VBS54884-6143STDY11462782,38.64,38,38,39.0,39,38,38.82,38,38,40.31,40,40,35.59,35,35,38.99,38,38,0.983,0.01382 +VBS54885-6143STDY11462783,37.34,37,37,37.73,37,37,37.62,37,37,39.17,39,38,34.48,34,34,37.03,37,36,0.983,0.01377 +VBS54886-6143STDY11462784,38.56,38,38,38.96,39,38,38.83,38,38,40.68,40,40,35.49,35,35,38.22,38,38,0.984,0.01374 +VBS54887-6143STDY11462785,40.32,40,40,40.06,40,39,40.65,40,40,41.13,41,40,39.33,39,39,40.41,40,40,0.984,0.01377 +VBS54888-6143STDY11462786,43.87,44,43,43.43,43,43,44.23,44,44,43.31,43,42,44.69,44,44,43.89,44,43,0.984,0.01378 +VBS54889-6143STDY11462787,38.04,38,37,37.81,38,37,38.3,38,37,37.97,38,37,38.0,38,38,38.19,38,38,0.984,0.01378 +VBS54890-6143STDY11462788,38.4,38,38,38.21,38,38,38.69,38,38,37.87,38,37,38.89,39,39,38.38,38,38,0.984,0.01374 +VBS54891-6143STDY11462789,34.12,34,34,33.94,34,33,34.35,34,34,34.27,34,34,33.92,34,33,34.11,34,34,0.984,0.01378 +VBS54892-6143STDY11462790,45.01,45,45,44.92,45,44,45.39,45,44,45.5,45,45,44.16,44,44,44.92,45,45,0.984,0.01378 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv new file mode 100644 index 000000000..2b4f59b57 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_accession_data.csv @@ -0,0 +1,249 @@ +sample_id,run_ena,analysis_ena +VBS54551-6143STDY11462443,, +VBS54553-6143STDY11462445,, +VBS54554-6143STDY11462446,, +VBS54555-6143STDY11462447,, +VBS54556-6143STDY11462448,, +VBS54557-6143STDY11462449,, +VBS54558-6143STDY11462450,, +VBS54561-6143STDY11462453,, +VBS54562-6143STDY11462454,, +VBS54563-6143STDY11462455,, +VBS54564-6143STDY11462456,, +VBS54565-6143STDY11462457,, +VBS54567-6143STDY11462459,, +VBS54569-6143STDY11462461,, +VBS54570-6143STDY11462462,, +VBS54571-6143STDY11462463,, +VBS54572-6143STDY11462464,, +VBS54574-6143STDY11462466,, +VBS54575-6143STDY11462467,, +VBS54576-6143STDY11462468,, +VBS54577-6143STDY11462469,, +VBS54578-6143STDY11462470,, +VBS54579-6143STDY11462471,, +VBS54580-6143STDY11462472,, +VBS54581-6143STDY11462473,, +VBS54582-6143STDY11462474,, +VBS54583-6143STDY11462475,, +VBS54585-6143STDY11462477,, +VBS54586-6143STDY11462478,, +VBS54588-6143STDY11462480,, +VBS54589-6143STDY11462481,, +VBS54590-6143STDY11462482,, +VBS54591-6143STDY11462483,, +VBS54592-6143STDY11462484,, +VBS54593-6143STDY11462485,, +VBS54594-6143STDY11462486,, +VBS54595-6143STDY11462487,, +VBS54596-6143STDY11462488,, +VBS54597-6143STDY11462489,, +VBS54598-6143STDY11462490,, +VBS54599-6143STDY11462491,, +VBS54644-6143STDY11462538,, +VBS54647-6143STDY11462541,, +VBS54648-6143STDY11462542,, +VBS54649-6143STDY11462543,, +VBS54650-6143STDY11462544,, +VBS54651-6143STDY11462545,, +VBS54654-6143STDY11462548,, +VBS54655-6143STDY11462549,, +VBS54656-6143STDY11462550,, +VBS54657-6143STDY11462551,, +VBS54658-6143STDY11462552,, +VBS54659-6143STDY11462553,, +VBS54661-6143STDY11462555,, +VBS54662-6143STDY11462556,, +VBS54663-6143STDY11462557,, +VBS54664-6143STDY11462558,, +VBS54665-6143STDY11462559,, +VBS54666-6143STDY11462560,, +VBS54667-6143STDY11462561,, +VBS54668-6143STDY11462562,, +VBS54669-6143STDY11462563,, +VBS54671-6143STDY11462565,, +VBS54675-6143STDY11462569,, +VBS54679-6143STDY11462573,, +VBS54680-6143STDY11462574,, +VBS54682-6143STDY11462576,, +VBS54683-6143STDY11462577,, +VBS54687-6143STDY11462581,, +VBS54689-6143STDY11462583,, +VBS54697-6143STDY11462591,, +VBS54699-6143STDY11462593,, +VBS54702-6143STDY11462596,, +VBS54703-6143STDY11462597,, +VBS54704-6143STDY11462598,, +VBS54706-6143STDY11462600,, +VBS54707-6143STDY11462601,, +VBS54709-6143STDY11462603,, +VBS54710-6143STDY11462604,, +VBS54711-6143STDY11462605,, +VBS54712-6143STDY11462606,, +VBS54713-6143STDY11462607,, +VBS54715-6143STDY11462609,, +VBS54716-6143STDY11462610,, +VBS54717-6143STDY11462611,, +VBS54718-6143STDY11462612,, +VBS54719-6143STDY11462613,, +VBS54720-6143STDY11462614,, +VBS54722-6143STDY11462616,, +VBS54723-6143STDY11462617,, +VBS54724-6143STDY11462618,, +VBS54726-6143STDY11462620,, +VBS54731-6143STDY11462625,, +VBS54734-6143STDY11462628,, +VBS54735-6143STDY11462629,, +VBS54737-6143STDY11462631,, +VBS54738-6143STDY11462634,, +VBS54739-6143STDY11462635,, +VBS54740-6143STDY11462636,, +VBS54741-6143STDY11462637,, +VBS54742-6143STDY11462638,, +VBS54743-6143STDY11462639,, +VBS54744-6143STDY11462640,, +VBS54746-6143STDY11462642,, +VBS54747-6143STDY11462643,, +VBS54748-6143STDY11462644,, +VBS54749-6143STDY11462645,, +VBS54750-6143STDY11462646,, +VBS54751-6143STDY11462647,, +VBS54752-6143STDY11462648,, +VBS54753-6143STDY11462649,, +VBS54754-6143STDY11462650,, +VBS54755-6143STDY11462651,, +VBS54756-6143STDY11462652,, +VBS54757-6143STDY11462653,, +VBS54758-6143STDY11462654,, +VBS54759-6143STDY11462655,, +VBS54760-6143STDY11462656,, +VBS54761-6143STDY11462657,, +VBS54762-6143STDY11462658,, +VBS54763-6143STDY11462659,, +VBS54764-6143STDY11462660,, +VBS54765-6143STDY11462661,, +VBS54766-6143STDY11462662,, +VBS54767-6143STDY11462663,, +VBS54768-6143STDY11462664,, +VBS54769-6143STDY11462665,, +VBS54770-6143STDY11462666,, +VBS54771-6143STDY11462667,, +VBS54772-6143STDY11462668,, +VBS54773-6143STDY11462669,, +VBS54776-6143STDY11462672,, +VBS54777-6143STDY11462673,, +VBS54778-6143STDY11462674,, +VBS54779-6143STDY11462675,, +VBS54780-6143STDY11462676,, +VBS54781-6143STDY11462677,, +VBS54782-6143STDY11462678,, +VBS54783-6143STDY11462679,, +VBS54784-6143STDY11462680,, +VBS54785-6143STDY11462681,, +VBS54786-6143STDY11462682,, +VBS54787-6143STDY11462683,, +VBS54788-6143STDY11462684,, +VBS54789-6143STDY11462685,, +VBS54790-6143STDY11462686,, +VBS54791-6143STDY11462687,, +VBS54792-6143STDY11462688,, +VBS54793-6143STDY11462689,, +VBS54794-6143STDY11462690,, +VBS54795-6143STDY11462691,, +VBS54796-6143STDY11462692,, +VBS54797-6143STDY11462693,, +VBS54798-6143STDY11462694,, +VBS54799-6143STDY11462695,, +VBS54800-6143STDY11462696,, +VBS54801-6143STDY11462697,, +VBS54802-6143STDY11462698,, +VBS54803-6143STDY11462699,, +VBS54804-6143STDY11462700,, +VBS54805-6143STDY11462701,, +VBS54806-6143STDY11462702,, +VBS54807-6143STDY11462703,, +VBS54808-6143STDY11462704,, +VBS54809-6143STDY11462705,, +VBS54810-6143STDY11462706,, +VBS54811-6143STDY11462707,, +VBS54812-6143STDY11462708,, +VBS54813-6143STDY11462709,, +VBS54814-6143STDY11462710,, +VBS54815-6143STDY11462711,, +VBS54816-6143STDY11462712,, +VBS54817-6143STDY11462713,, +VBS54818-6143STDY11462714,, +VBS54819-6143STDY11462715,, +VBS54820-6143STDY11462716,, +VBS54821-6143STDY11462717,, +VBS54822-6143STDY11462718,, +VBS54823-6143STDY11462719,, +VBS54824-6143STDY11462720,, +VBS54825-6143STDY11462721,, +VBS54826-6143STDY11462722,, +VBS54827-6143STDY11462723,, +VBS54828-6143STDY11462724,, +VBS54829-6143STDY11462725,, +VBS54830-6143STDY11462726,, +VBS54831-6143STDY11462727,, +VBS54832-6143STDY11462730,, +VBS54833-6143STDY11462731,, +VBS54834-6143STDY11462732,, +VBS54835-6143STDY11462733,, +VBS54836-6143STDY11462734,, +VBS54837-6143STDY11462735,, +VBS54838-6143STDY11462736,, +VBS54839-6143STDY11462737,, +VBS54840-6143STDY11462738,, +VBS54841-6143STDY11462739,, +VBS54842-6143STDY11462740,, +VBS54843-6143STDY11462741,, +VBS54844-6143STDY11462742,, +VBS54845-6143STDY11462743,, +VBS54846-6143STDY11462744,, +VBS54847-6143STDY11462745,, +VBS54848-6143STDY11462746,, +VBS54849-6143STDY11462747,, +VBS54850-6143STDY11462748,, +VBS54851-6143STDY11462749,, +VBS54852-6143STDY11462750,, +VBS54853-6143STDY11462751,, +VBS54854-6143STDY11462752,, +VBS54855-6143STDY11462753,, +VBS54856-6143STDY11462754,, +VBS54857-6143STDY11462755,, +VBS54858-6143STDY11462756,, +VBS54859-6143STDY11462757,, +VBS54860-6143STDY11462758,, +VBS54861-6143STDY11462759,, +VBS54862-6143STDY11462760,, +VBS54863-6143STDY11462761,, +VBS54864-6143STDY11462762,, +VBS54865-6143STDY11462763,, +VBS54866-6143STDY11462764,, +VBS54867-6143STDY11462765,, +VBS54868-6143STDY11462766,, +VBS54869-6143STDY11462767,, +VBS54870-6143STDY11462768,, +VBS54871-6143STDY11462769,, +VBS54872-6143STDY11462770,, +VBS54873-6143STDY11462771,, +VBS54874-6143STDY11462772,, +VBS54875-6143STDY11462773,, +VBS54876-6143STDY11462774,, +VBS54877-6143STDY11462775,, +VBS54878-6143STDY11462776,, +VBS54879-6143STDY11462777,, +VBS54880-6143STDY11462778,, +VBS54881-6143STDY11462779,, +VBS54882-6143STDY11462780,, +VBS54883-6143STDY11462781,, +VBS54884-6143STDY11462782,, +VBS54885-6143STDY11462783,, +VBS54886-6143STDY11462784,, +VBS54887-6143STDY11462785,, +VBS54888-6143STDY11462786,, +VBS54889-6143STDY11462787,, +VBS54890-6143STDY11462788,, +VBS54891-6143STDY11462789,, +VBS54892-6143STDY11462790,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv new file mode 100644 index 000000000..57c97d076 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1277-VO-KH-WITKOWSKI-VMF00183/wgs_snp_data.csv @@ -0,0 +1,249 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS54551-6143STDY11462443,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.bam,97efe5d9dea91417bea00436278affd0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.vcf.gz,c3a6793a1b39faf4e0f576d8de7a8ae6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54551-6143STDY11462443.zarr.zip,68dde74a7a4b292e9e27cb772f3284bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54553-6143STDY11462445,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.bam,84a9ae06f0253ef020c70f1e499a43ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.vcf.gz,da2d78e3ea75701b45fc7b1756cb4770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54553-6143STDY11462445.zarr.zip,e7c8e0d5163043084455489111addfbb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54554-6143STDY11462446,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.bam,91a6cf231d918ef9f227acf49bd9cbd1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.vcf.gz,708e3f3e8be4f90900844c51004e4d3f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54554-6143STDY11462446.zarr.zip,d83ad11b5be5d34bda77cb583492fd36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54555-6143STDY11462447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.bam,731d83a3eb2ea26478136bb95f8ce3a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.vcf.gz,4fcfc7b3f409c64c8c91bfd619c3b640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54555-6143STDY11462447.zarr.zip,c158b45731a7d1781cf4edaa8b768081,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54556-6143STDY11462448,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.bam,f939db9a79f5ff37411ae595281b9f33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.vcf.gz,e5f7f0d99c1f0e3dd908f65b684e6ed5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54556-6143STDY11462448.zarr.zip,98d201634eb49abe94152f98700c8640,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54557-6143STDY11462449,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.bam,71e609036f9b8d73c36411cb5d85ea89,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.vcf.gz,d19369a3a914041fe9b5704f1a36907f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54557-6143STDY11462449.zarr.zip,f7aca3a853edd928231637544ab59e56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54558-6143STDY11462450,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.bam,e432f8a43912d9b46859aae41ff94d44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.vcf.gz,54cd53255d56f414f366af9b96263781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54558-6143STDY11462450.zarr.zip,a696943f13027f21a0b73b2c7e7c6e9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54561-6143STDY11462453,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.bam,0ec6982d64ae52a8afc9b9e36526061a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.vcf.gz,b9e0b64028207f37afe0c2d7356de50d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54561-6143STDY11462453.zarr.zip,022cec7416431768f081b9d7009f38bb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54562-6143STDY11462454,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.bam,da5c16679e2ef41f71d7a214f6b785ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.vcf.gz,f47181fcbd78a160866a52d4828efedb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54562-6143STDY11462454.zarr.zip,cb8f6bb2b712f69e147636110c02f12c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54563-6143STDY11462455,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.bam,ccd0fbc05932ada38027f9e7b03fb604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.vcf.gz,1e900109d7489ed0d405f41a1a81bc0e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54563-6143STDY11462455.zarr.zip,edbe7bea5e68b8986d894860920ff913,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54564-6143STDY11462456,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.bam,b1df0a11f8ac4aea1991f0ced2055aaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.vcf.gz,81095b97eb35c5c19b4d5969982a8a76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54564-6143STDY11462456.zarr.zip,3f573e897d8f611e14b67e712b91a5d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54565-6143STDY11462457,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.bam,6000eb9c4b424910dee6da2d28310cea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.vcf.gz,e252458fea87b9f1af447f59589d7a07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54565-6143STDY11462457.zarr.zip,a08072b41e6fbacd5f481fe1c3dfd44a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54567-6143STDY11462459,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.bam,8ef71d008e27e4de963d588205bdb507,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.vcf.gz,24de0a49e735ec892b3b509e98846077,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54567-6143STDY11462459.zarr.zip,6dd279b195d3ea88e0be71a6a98df0d9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54569-6143STDY11462461,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.bam,aa07842f5c8ab57265c4fc1a75f3f4be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.vcf.gz,eb0dd47af1212bc6ca0919ed1125d807,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54569-6143STDY11462461.zarr.zip,fdbe11def287c1fdc79ce18125907e35,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54570-6143STDY11462462,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.bam,4e6c7588d8c788443121afa21b47d89d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.vcf.gz,e7e814c0e76bac7fe41e5fdeab5d1715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54570-6143STDY11462462.zarr.zip,1342c60822ec0a22c4e9af96348990c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54571-6143STDY11462463,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.bam,fe78ac6864fef258e94f9e46547dce66,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.vcf.gz,584407449b0e193dbe46b03458bb49b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54571-6143STDY11462463.zarr.zip,7f82a6a0914ed496ed1e85ac30cc4822,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54572-6143STDY11462464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.bam,9456e35134744766a6c7c2d0455b21a9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.vcf.gz,edcf2db9a00d66eddd120b10129f3b42,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54572-6143STDY11462464.zarr.zip,d4f75b3053c925b7d5f3188f615c0b4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54574-6143STDY11462466,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.bam,d8618e32710fba491e3061a2958933bf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.vcf.gz,b6755fc46922facf794b8744bf01a888,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54574-6143STDY11462466.zarr.zip,57f2dde162bda08bcd1bf8ce04e40150,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54575-6143STDY11462467,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.bam,9604094ee416611b7b9e17b3c464528a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.vcf.gz,40566893c41f34035e47d8f927ebe2fd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54575-6143STDY11462467.zarr.zip,6f92b597bc932f98637348467941163f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54576-6143STDY11462468,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.bam,ea5c7245c3e37648fd7c78eba3ad6539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.vcf.gz,2da01337e96e03f1187f7ef9a77bca9a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54576-6143STDY11462468.zarr.zip,b1ab42fd9db6c20f1df4ea136d8804cd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54577-6143STDY11462469,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.bam,f9916abc15a9e89d731e2f205149ed23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.vcf.gz,f2f6f64121cb250c76bea2782c243b6a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54577-6143STDY11462469.zarr.zip,ecca7d09040050b6bb4bc66bc5afd9f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54578-6143STDY11462470,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.bam,b4cbe82bc3c20604de86a963db44014a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.vcf.gz,a0d8f4d6c40480a931316cefdbdbd531,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54578-6143STDY11462470.zarr.zip,fc44fb7e450a21a0d3545bb8b98f81f9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54579-6143STDY11462471,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.bam,8c488e743eaf6769b48ba770847a9a61,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.vcf.gz,6beb9476e9bffb1f4116a3346c5ed43b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54579-6143STDY11462471.zarr.zip,2b0dbfd7d3f30b863cee44a48c10673b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54580-6143STDY11462472,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.bam,d99cd659e330d8d5b6d056dcc1ca033d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.vcf.gz,c9a96407b0a5aa1e4b323fe3e49379c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54580-6143STDY11462472.zarr.zip,868d4c3abc58cb50ab71b9e91f954003,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54581-6143STDY11462473,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.bam,3793346aca360a5cc48202e082fcd05b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.vcf.gz,3ac8f36493f0d97f35fceae400c548b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54581-6143STDY11462473.zarr.zip,b84ea87c26e3712f84c5e0225e2718cc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54582-6143STDY11462474,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.bam,52d435b88078e6b944fb5a430c506d84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.vcf.gz,70b6f6d2b33f3cdc9d113641177d9513,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54582-6143STDY11462474.zarr.zip,f4e4a3514110bc308f238d87b924fe03,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54583-6143STDY11462475,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.bam,27e6de49c503e7e9d6b29062054fcd1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.vcf.gz,62a88784d2c7e87551457bfef50cfd88,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54583-6143STDY11462475.zarr.zip,0785f2883b097ba6d83bcb09549e08c9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54585-6143STDY11462477,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.bam,b22d3ac79fb9071f08c2cffba352ce4d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.vcf.gz,432c97760b08dccb5832bf019daef1a6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54585-6143STDY11462477.zarr.zip,f6a37777f2e9ab766a568ae13ec6e4c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54586-6143STDY11462478,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.bam,7a63d53916599b72bc0ca429f3a7e0f7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.vcf.gz,f04bdce8005ae030187c39fa40ddb5a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54586-6143STDY11462478.zarr.zip,fc5653e20a149250ec8ae9fb84c6959f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54588-6143STDY11462480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.bam,f5017da6999f90c7709bd5adba09698d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.vcf.gz,b504b546a2fb55d38b3bd4a16ed0cd5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54588-6143STDY11462480.zarr.zip,63f5fc2ebfafd5fea718dfc6e9fc6a88,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54589-6143STDY11462481,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.bam,7c69f2c258e08b907b18e613cc878724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.vcf.gz,4c12232c8c917bab1776fc91dd0ebf91,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54589-6143STDY11462481.zarr.zip,a95b1d84aa5cd04bf91ee7a1fa03514c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54590-6143STDY11462482,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.bam,30da5e7d8663badf03ece55214798a87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.vcf.gz,73f94b5fdc13adfc7b140cfa974a9662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54590-6143STDY11462482.zarr.zip,317470de8e889226eddd36f93d61f470,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54591-6143STDY11462483,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.bam,701b40328e2afeae12a46a1661c7b5be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.vcf.gz,ff5e65772e9bbec5862171784052879d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54591-6143STDY11462483.zarr.zip,5466456ae48ea341169053bc5c388a77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54592-6143STDY11462484,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.bam,7c0e5930085c87df0bc9a7033d028ec8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.vcf.gz,b47648dd68f5fdb435ed113d8cd495ba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54592-6143STDY11462484.zarr.zip,14e1ee3176da7ca50e476331564b8ee5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54593-6143STDY11462485,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.bam,3ce61382925a4d62d62b1f271c21c1c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.vcf.gz,31acde71665d288f52f691d29e02b28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54593-6143STDY11462485.zarr.zip,dd36fe44fd5b23dc4aa5b2ba048becba,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54594-6143STDY11462486,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.bam,928e7ce16d84c55bc6a839cb292080cb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.vcf.gz,66e73909eba1bb580646617c3bc403c1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54594-6143STDY11462486.zarr.zip,8bf8badfe455fe6f9626eeb5ff40087f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54595-6143STDY11462487,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.bam,5f629de0e67ba6ef403de91ef6a62847,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.vcf.gz,00bfc6c8959ba6af86e6557136524600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54595-6143STDY11462487.zarr.zip,c37a883b8ffac6d9e5c7003fcb91be49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54596-6143STDY11462488,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.bam,ef94bed7208c81601bdd6d83388c4d98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.vcf.gz,57f474691f32434b89fd1b1a1e1660bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54596-6143STDY11462488.zarr.zip,24a4b9c1450eac50bb1f0c0ca51a61e8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54597-6143STDY11462489,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.bam,3c32687de36e78d580d101ee737d4300,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.vcf.gz,e19062709b35e359eb9a1ec81e9873c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54597-6143STDY11462489.zarr.zip,f2e04d9cb99afa23553097d2081ddc6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54598-6143STDY11462490,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.bam,8a23ad14e83c67227b3aa9eab67f4eb0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.vcf.gz,8760d063e5420343ff1bc7e1cd88dcba,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54598-6143STDY11462490.zarr.zip,fb7d5cdb1158f67b652aaccc929dbf3b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54599-6143STDY11462491,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.bam,d770234358fe57eef50c033b44fa7cf4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.vcf.gz,674071393a5f78130657bab749cadf25,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54599-6143STDY11462491.zarr.zip,3a03bca1fb9b38b1e87b34149967d336,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54644-6143STDY11462538,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.bam,4b47e6d2b4eb419726d8e36d15df9c74,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.vcf.gz,ec6f828b4ecec5e1e5c54d568f20633a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54644-6143STDY11462538.zarr.zip,21b35f85e678c13c99f58caa0872ac41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54647-6143STDY11462541,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.bam,da4c14ae14009ca18fe08745e5cb0553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.vcf.gz,7f6f77a33555013f5bcc863ae2c87019,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54647-6143STDY11462541.zarr.zip,8275059a44d94477b7fff2b2da38811e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54648-6143STDY11462542,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.bam,3d2dd1255ac47f1acab28929c9ff7f40,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.vcf.gz,fa551ba6e26319368ab2a8705131af7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54648-6143STDY11462542.zarr.zip,0ac582803fa4be1c9bb627d2a0c9ef4b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54649-6143STDY11462543,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.bam,86bd422f7ff8d59096957efd43857ca4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.vcf.gz,a1e83510083c0ce73f163042f1cd71eb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54649-6143STDY11462543.zarr.zip,956d8e2972118fc75da6022c845e32a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54650-6143STDY11462544,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.bam,78b8083e602f838aa89ba04ea3346c54,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.vcf.gz,e391af10ff98fc75798199c64da082a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54650-6143STDY11462544.zarr.zip,aac0f12b3b9c64f41bb60cb85be67410,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54651-6143STDY11462545,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.bam,cf048c9732ae521bb5060ec902f12ac7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.vcf.gz,a56ed6f288de07a7f61edd17c95a462e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54651-6143STDY11462545.zarr.zip,54890c893b21ef937128be27bb5c45d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54654-6143STDY11462548,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.bam,88233ecdf18811984b3fdf2065b2f503,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.vcf.gz,7df3bc2e3a6d7f73e0777882b480a78a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54654-6143STDY11462548.zarr.zip,1e8cf20a47ec64bc217b65dde648a0ae,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54655-6143STDY11462549,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.bam,e69942e62e0c8982493a39671e020be1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.vcf.gz,6dd0e336e3158d0960f159f9baca3a3b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54655-6143STDY11462549.zarr.zip,a999cfebd9e0af49f51e9d096f97cd1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54656-6143STDY11462550,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.bam,798eca2900569ce564b25241b59c1dc5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.vcf.gz,34ffbf3c14955a1d833d99fbfb7e124f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54656-6143STDY11462550.zarr.zip,00286923859ffc2cd724445cd24ac9f0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54657-6143STDY11462551,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.bam,0f184cb4d298652c80c0fceff889be5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.vcf.gz,973092cf4e7b1626fa1c0bde2d5ba1dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54657-6143STDY11462551.zarr.zip,39d616be932dab7a4e5954fb27d2611b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54658-6143STDY11462552,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.bam,58ce16a2b2094fce0f48d28a5688d875,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.vcf.gz,4be5848baa0be9b7752759cf368dcf70,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54658-6143STDY11462552.zarr.zip,61e70aa0e93e23e8090adf9410b68d23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54659-6143STDY11462553,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.bam,709d9a3adc19e979c18a51dc431f34e0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.vcf.gz,2b5ec4335e17d48f62ec43ef0891c343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54659-6143STDY11462553.zarr.zip,8da756fe335cdca0c736ba830443307b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54661-6143STDY11462555,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.bam,c427da43e4469c10b1194c3e822514a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.vcf.gz,eeae18c4fe1fb2888ca80a4fd048188f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54661-6143STDY11462555.zarr.zip,b5b6ae356697814bb1b56cceeec5f20b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54662-6143STDY11462556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.bam,b81b662e42680d54908a61f4d3c75a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.vcf.gz,230a1adf42882c7b639d7172eb349a7d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54662-6143STDY11462556.zarr.zip,0caf8e1cac988e297ff3fd8871c36bf8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54663-6143STDY11462557,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.bam,bb1b0a0673bca972062849e2f0ae0464,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.vcf.gz,02386997d4f31c707834a3b75be27bb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54663-6143STDY11462557.zarr.zip,8d3f1e8f27a2e64bcc45e767c62e571a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54664-6143STDY11462558,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.bam,00b0ba191e614dbd183c5b841ecb9571,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.vcf.gz,6960b431962a906259a2d10e54af2d1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54664-6143STDY11462558.zarr.zip,05565ac636c4bee2d31e66f5bb5f444c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54665-6143STDY11462559,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.bam,e0c1c4900172c8fbf79c6977a03f4259,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.vcf.gz,9be4ed95348f3e2ddcafd289c1e584bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54665-6143STDY11462559.zarr.zip,9d9137c6cd35d0ec1c6d5784b09c8265,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54666-6143STDY11462560,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.bam,1ebf5aa128e77167059b0b0f149628ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.vcf.gz,df2b967f3d6263bb8f00baf30b519205,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54666-6143STDY11462560.zarr.zip,8dafd0fcf085b3779f7debbf44d08b07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54667-6143STDY11462561,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.bam,918b689038e4ba21fd05322bfd175036,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.vcf.gz,dc3c14f263bbf0661cdf8eff2ad1d987,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54667-6143STDY11462561.zarr.zip,8e079e428b3ae0782818584e7b5c2109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54668-6143STDY11462562,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.bam,e81f4776773cc43b1ffc25cabde8d1b6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.vcf.gz,777820fd9cbd78b552864d71e0bf9539,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54668-6143STDY11462562.zarr.zip,a5542a3fa53d99a3a61161c2f99f1b3f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54669-6143STDY11462563,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.bam,6a0a1a495100b9e018142227cd473823,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.vcf.gz,8e5e63dd4725d6cc516d3c0577853514,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54669-6143STDY11462563.zarr.zip,42935d2a09c2d61463e2d02fb2175a1d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54671-6143STDY11462565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.bam,7f63c9a25fc2354d7f745bed7b769d00,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.vcf.gz,b2f5420bca6db18211f417843b1a5291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54671-6143STDY11462565.zarr.zip,e573f9029018ea243e0eed462ec92a41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54675-6143STDY11462569,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.bam,c7a6955016fe15f86b2912e8533e1607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.vcf.gz,95820ec9976f8a64c9b25d352a6fd341,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54675-6143STDY11462569.zarr.zip,37ec0c19d07d39d26a88632fdbcadd48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54679-6143STDY11462573,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.bam,83d7560aaa23bb5b67c7138c5699d840,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.vcf.gz,3f2e630bf5d815e31f1f0d94c89f5465,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54679-6143STDY11462573.zarr.zip,f63238be47e6e93d369c018477b57434,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54680-6143STDY11462574,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.bam,b08a1ae7396c3f83f478d48e26c26a80,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.vcf.gz,74ebfcc7dde97556ce1f63e85050690e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54680-6143STDY11462574.zarr.zip,06d8117ef46688a2f9c6aa98c201bb42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54682-6143STDY11462576,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.bam,eb3fb94bf5db48d55445c1f5910b3fff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.vcf.gz,55111c997ad3d0a077fc2f963d322029,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54682-6143STDY11462576.zarr.zip,30c9a22ba6d3ac804130ba9a7421c5c8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54683-6143STDY11462577,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.bam,2e484f032a654a705121fe30280e19c4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.vcf.gz,5ae7374340a5088238dae28ff32a5ff0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54683-6143STDY11462577.zarr.zip,0d8440e84f3cec951a8d17a413054ca9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54687-6143STDY11462581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.bam,1c298cfa4f2d0b0ac943b261802e6ef3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.vcf.gz,e8c77b088e0d4c5a2f04bdd72cbb8e50,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54687-6143STDY11462581.zarr.zip,cd783dbeb4f8672e8ff0acac4e1c2e6d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54689-6143STDY11462583,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.bam,9194922b057ab7c51b0e12d0de855ccb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.vcf.gz,03c83e232020a3de5e546a0b0ad7ac7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54689-6143STDY11462583.zarr.zip,6484833e294c0655ffb6ee124acb1f2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54697-6143STDY11462591,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.bam,864fced78c826cc128dbb7dc3cbd56f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.vcf.gz,1a8e2c27416ff1a90f096a6535540a37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54697-6143STDY11462591.zarr.zip,dcfadfa0aa47f0addc8179ee87ce5987,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54699-6143STDY11462593,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.bam,3722fe3faf17711e60abdfe665cbd27f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.vcf.gz,b9cf254150558f0d6d7c2e0b31971f5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54699-6143STDY11462593.zarr.zip,5a6d36773b6ec3aa2e3f8080f1afc3bc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54702-6143STDY11462596,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.bam,26f71185fbe9627658d6b5cfa5919c7c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.vcf.gz,383e73cacb5d66030eacd1b3b96db554,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54702-6143STDY11462596.zarr.zip,aed8a521620468d24a2eb0e0801a6242,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54703-6143STDY11462597,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.bam,3962db4ebe00677c69b025a0e5fca004,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.vcf.gz,10341d9d7e9242bdd635f64d976e6877,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54703-6143STDY11462597.zarr.zip,6ea46fcb5d20395f623402e1040dd023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54704-6143STDY11462598,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.bam,5e7d2f4b76a9aa7131a95c8e11cf87a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.vcf.gz,ef2bbd3a4742fd8bee2f4be57f3e5aef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54704-6143STDY11462598.zarr.zip,e24ee96b6bcfa086a52110ad06393307,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54706-6143STDY11462600,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.bam,0e807eea0efed300c3d9a06e87e55564,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.vcf.gz,6c3facd53689630e9239f66145ff008a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54706-6143STDY11462600.zarr.zip,751a8fd7428aa925f2f6f228efbcc30c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54707-6143STDY11462601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.bam,421b8ebc6648b7fa821330e23390d5f1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.vcf.gz,bcde2390b9ffce03f02bee6bec2b407c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54707-6143STDY11462601.zarr.zip,9aa1bed3291fc94252ceda38ee65cf33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54709-6143STDY11462603,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.bam,b0812d226e50294e1d779f376d1dc35c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.vcf.gz,c0595eb27f78c7bec097ce7c90f8f9d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54709-6143STDY11462603.zarr.zip,df17225fcd3a15bf06906744d6b13f0b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54710-6143STDY11462604,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.bam,11fb67e7d767a56a6fcd6ae2f002b627,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.vcf.gz,8a8b4a166aca3d064843be959be02d0d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54710-6143STDY11462604.zarr.zip,7b88b97ae48cbdfd359ccd2e8a81264f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54711-6143STDY11462605,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.bam,0068de98e1ebab88c75f66c4bef95cf3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.vcf.gz,34627dbf6bca52f96a00bd83dc11599a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54711-6143STDY11462605.zarr.zip,538735e32a5ab7be6c6b964e40037317,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54712-6143STDY11462606,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.bam,15410baa5d6614ff3fb1e186dee62e83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.vcf.gz,18c6faad2eecc8c17e19e2acf25fc3ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54712-6143STDY11462606.zarr.zip,76f8eb6a3791cfc0e2b18d02ad82b350,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54713-6143STDY11462607,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.bam,5b639b0de8ecca7eeed376697df806a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.vcf.gz,8565e7e70faae98e3058ff1bfc311180,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54713-6143STDY11462607.zarr.zip,7b753dfb7f789c7b09a50cdea9282e9d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54715-6143STDY11462609,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.bam,6dc541e25154971abe4991b2bc96f8a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.vcf.gz,b4d6e9f52669aed549656e8b8e54f91c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54715-6143STDY11462609.zarr.zip,0a43668cf9be1b4aa7de7308bdeb0dec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54716-6143STDY11462610,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.bam,8e862b3b8c02b12f2b08a65dd6421197,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.vcf.gz,e4317a6bd9003b403765e3a6a7d062ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54716-6143STDY11462610.zarr.zip,e0f3505e66a9f20ef15ea2a8544fed9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54717-6143STDY11462611,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.bam,00f934eed20cf567bb92818dd93a0c36,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.vcf.gz,7dd3239d5a46b1374b99206b07d3cc85,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54717-6143STDY11462611.zarr.zip,54215633231f4acaff98779569c54b80,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54718-6143STDY11462612,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.bam,53b9d628dd114d3a47db9e6450bca92c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.vcf.gz,20df33a43602c661615c184e26417107,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54718-6143STDY11462612.zarr.zip,4725c6668d97b163b7bcfce93c8ea0de,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54719-6143STDY11462613,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.bam,6329a26136b18569e5d8b166ac14115f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.vcf.gz,aec26d21eaa932738476333d986b3c3c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54719-6143STDY11462613.zarr.zip,997ad36a3d8ec5d79c2d9679a22f4282,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54720-6143STDY11462614,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.bam,bfa7ff18f2f81e20abd6ca7ec27dc94d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.vcf.gz,546fdbc7928d5c9e1538769646055a2c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54720-6143STDY11462614.zarr.zip,03c1d85e808f2195b8217e9d75411538,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54722-6143STDY11462616,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.bam,0fd8b45ebae829e659a2cf9024bf4c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.vcf.gz,d7c79845abc912106aec82b1e9af5cee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54722-6143STDY11462616.zarr.zip,5ac91d515a40889418e8e8ee314f261d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54723-6143STDY11462617,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.bam,7cb4d3be81b8b66969c1513f7c89fc0c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.vcf.gz,f84622822fa23246c3817baadbfffe1f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54723-6143STDY11462617.zarr.zip,4f51397484fa09c075b8b1b41fd6aba3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54724-6143STDY11462618,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.bam,ea22711a8ae0544208280408be8ac979,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.vcf.gz,08cd72cbb7f1765e6ca2928172027af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54724-6143STDY11462618.zarr.zip,a9d543e4fde1a45b8f747e6f523ac71f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54726-6143STDY11462620,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.bam,7ffc1433b3e7ae03fb1673d732ac00b8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.vcf.gz,25c8dcfa7eba123ede7e54e8a96f01de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54726-6143STDY11462620.zarr.zip,0e5ce96bdbca942c22a129c1c2189ecd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54731-6143STDY11462625,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.bam,8fa21580dfa0940b053a6b21ca7db852,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.vcf.gz,cd20ca9845f310c02b663fe019cdc13e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54731-6143STDY11462625.zarr.zip,89b4ed030a43d344f9a33b3e255fd044,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54734-6143STDY11462628,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.bam,e988ca397b195047697d938602f1201a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.vcf.gz,1d9f33e3bfd889f8b00f410a69e3e58d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54734-6143STDY11462628.zarr.zip,a0079058cae0169572c4fa17c775fb2a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54735-6143STDY11462629,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.bam,b7f84052146fa48fe23d73228476d594,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.vcf.gz,415ecf8682850c6e30b89fc58118b601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54735-6143STDY11462629.zarr.zip,748a0b4d4434140bbfdb42239e27995f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54737-6143STDY11462631,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.bam,1dd2a45bd7fb842a08766bbb82328425,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.vcf.gz,de46ae3d45f92387f146374b6ac35304,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54737-6143STDY11462631.zarr.zip,bc25ffb94f6a12e4becf3fe6370c9109,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54738-6143STDY11462634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.bam,5a95fa4ace2d194b5e3e7b1b10f207fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.vcf.gz,2cc03bd1f90693217a52062df7f977be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54738-6143STDY11462634.zarr.zip,1e692d9f46cb8d1b4bdecc9f5aebaeeb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54739-6143STDY11462635,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.bam,cb8d83ee7ded8c3311fb245c1f43be83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.vcf.gz,58884dbc5ca93deae56f3a5eb2a4014c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54739-6143STDY11462635.zarr.zip,c6376fe4f39eacc0061352897eb4d34f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54740-6143STDY11462636,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.bam,f780aa22b6212f9ff1e53d5eb1d739b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.vcf.gz,7100de624a730e65e187185765402384,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54740-6143STDY11462636.zarr.zip,1125057d6e96c613217b91b8cf2075cb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54741-6143STDY11462637,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.bam,10381cfba8c25737b83c3662c4ff710a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.vcf.gz,e110fe70945451ae539788cda86b03e4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54741-6143STDY11462637.zarr.zip,2558c1c5648ff4bbddb200ed97c5fa42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54742-6143STDY11462638,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.bam,f28667b7a6099836beec6a34d8c4c2df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.vcf.gz,2d10c63ee958f99d9bbe55daec5f1066,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54742-6143STDY11462638.zarr.zip,efe7b5b02cc4485b8814a876a58a1cb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54743-6143STDY11462639,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.bam,54776a4d1b522847668c4c9186b335b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.vcf.gz,7a311d4605fea7f4e23f9e2e7beabe6e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54743-6143STDY11462639.zarr.zip,ade90a4e1190973972492022a7090e7f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54744-6143STDY11462640,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.bam,27032dcf1b52b85faf8da6a24e149a65,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.vcf.gz,6d30bf6c8af8ce2b4435e395e40e2584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54744-6143STDY11462640.zarr.zip,5b875048ce91ed4efae79716ae5bdfe7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54746-6143STDY11462642,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.bam,75e233b4f079d5d31fdeca61860653d5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.vcf.gz,cfe35b558d078f3f2524b7b1bc8167a1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54746-6143STDY11462642.zarr.zip,b863d1227294806042611c9708e7304a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54747-6143STDY11462643,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.bam,0d60b4ce41a1ef4a08d9869e3780bc76,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.vcf.gz,abfc791d558667d50b16696cf7d71189,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54747-6143STDY11462643.zarr.zip,f567458bfa7cea006e10e5e78ad5521e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54748-6143STDY11462644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.bam,7c5846f930aa65fe1bd605788e6bc689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.vcf.gz,3099f80f2a1c3867403c5750235621b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54748-6143STDY11462644.zarr.zip,fd5093d7ce78c539981807c2be9b2f49,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54749-6143STDY11462645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.bam,a088b537bf0a1a22f7539180de2ef2d3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.vcf.gz,9cc841530315c788964f8cfb1de80be7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54749-6143STDY11462645.zarr.zip,f18fa7cab61223c4acb4ae1363ea4836,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54750-6143STDY11462646,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.bam,3c489231cb051176fec8246057844447,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.vcf.gz,909277c4561146cbba9888cb63cf0681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54750-6143STDY11462646.zarr.zip,b8063a17fa1173f2af0372f1158e038e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54751-6143STDY11462647,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.bam,093e46d7835a0232c47c9018c591b4b2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.vcf.gz,dfe9702e7b5c5fd1b5b84bc03ef03876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54751-6143STDY11462647.zarr.zip,87f2e506afa7ce8d0c8701c6d34ec8f2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54752-6143STDY11462648,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.bam,829eea96de66746b38b855a786f1cb02,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.vcf.gz,43fc868cb2fabb1d50f5dc5bffb72d1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54752-6143STDY11462648.zarr.zip,5274a1cde34e9165c364bc9ca225cc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54753-6143STDY11462649,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.bam,39e51620e801abb25d8ad823c81307ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.vcf.gz,64ce24ac62736da39b1df9ea9dc70034,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54753-6143STDY11462649.zarr.zip,d31066b5c86d56a0dc83ea1bea4ebcfd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54754-6143STDY11462650,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.bam,d82eb44300462db4e467cea91882714e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.vcf.gz,625f5b02cbd9874c538b481b2ec43a63,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54754-6143STDY11462650.zarr.zip,dc293a8a206fc9ab8b59e5df9169fa66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54755-6143STDY11462651,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.bam,76883ffcdbb034c6f17684f37c3449ef,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.vcf.gz,b9b33c954162be5740647fc1a7f06f1b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54755-6143STDY11462651.zarr.zip,0b692c97936224019ae426f4bf4abd6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54756-6143STDY11462652,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.bam,fed6ba305fcdc9d9f61dca91e69d144b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.vcf.gz,26daa7a8c970f9a682d3c24f6804b31a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54756-6143STDY11462652.zarr.zip,d61571987b924cddb48b740f972d627e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54757-6143STDY11462653,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.bam,7f151ce5c4016b1d06f8d64f11e4b78b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.vcf.gz,b5232e85050161256c2e0de2004e537a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54757-6143STDY11462653.zarr.zip,a99ede4a045c00764a0e5e5d759e9241,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54758-6143STDY11462654,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.bam,29a19c28855fcb5e8209fdbc0594094f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.vcf.gz,9466482497115165b98068fd5f943291,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54758-6143STDY11462654.zarr.zip,63eae7007e2c8c9f0aaca00ef91dcea9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54759-6143STDY11462655,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.bam,23df1052351cbf1d8f45b4bb0bb5ceea,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.vcf.gz,ef0d350e13b18c18ac797ccbf81ffcda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54759-6143STDY11462655.zarr.zip,fa93eebb865cd154ab16b792296e45a0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54760-6143STDY11462656,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.bam,919d4b0537340ba8886b01fe9a560aa4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.vcf.gz,cacd854e85a485704058e4d344ea35d0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54760-6143STDY11462656.zarr.zip,5fed219e3589c056236c43d433ea0bda,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54761-6143STDY11462657,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.bam,d7391220704452c9e081cdf097ea5392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.vcf.gz,3e4543a68ddb48a26b62003edec9dc96,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54761-6143STDY11462657.zarr.zip,5a9314aaed5fb19bff8daa8592304f0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54762-6143STDY11462658,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.bam,359da51d06736b8a0ef06fbb78b89496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.vcf.gz,5799292d3e1d223470a915beb6f3d8f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54762-6143STDY11462658.zarr.zip,190a93017194ddf68a4e870574e458dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54763-6143STDY11462659,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.bam,8b375a48e2c3c386ed4443b5aa083f7b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.vcf.gz,3dae6d6036e54f15c0183c4d7fd2028c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54763-6143STDY11462659.zarr.zip,d8b6e8edbb8fedc5dcacc48b9f778d9c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54764-6143STDY11462660,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.bam,b46de9db61b03c7eb4bf96a824fe2c39,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.vcf.gz,4a60eae040f8ac1247422415cfd23eaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54764-6143STDY11462660.zarr.zip,8053a7e9f35175e9aa9dfeb3ea6908b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54765-6143STDY11462661,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.bam,76ccbfbbc17f0fcde81587f276936704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.vcf.gz,70fcde7f4d61d76ffc279d0f1e5110b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54765-6143STDY11462661.zarr.zip,9f2235ec2f45a9845df52d4f67732fe8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54766-6143STDY11462662,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.bam,f78ca17f2658fd1ada134dcaaa708f83,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.vcf.gz,167969e9e9b33459ed2a228a09472eca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54766-6143STDY11462662.zarr.zip,6b2eab61c80ccff27fd1630c2ec2e78b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54767-6143STDY11462663,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.bam,d0373bf618a707f0728e05c6120df03c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.vcf.gz,5b81fcc9940f023d897d4accd1e0e748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54767-6143STDY11462663.zarr.zip,d46d7c027611dc9af245f6c7e33891f4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54768-6143STDY11462664,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.bam,1db9ad31739f8bdc11aaa38a64445ec3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.vcf.gz,5baae69e036f5fe792d95f377bcd9353,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54768-6143STDY11462664.zarr.zip,d1d24e663e132e6e4ee6c9d71765b1fc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54769-6143STDY11462665,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.bam,333d710a4f961a8d145f9cf41d5f3d5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.vcf.gz,6f212ef8404b58dda782253aa3fb3323,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54769-6143STDY11462665.zarr.zip,d351a471fece4823806649af7d213850,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54770-6143STDY11462666,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.bam,03d94b1b2ec54b5d3eb3dfb61e1a1e52,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.vcf.gz,71186c19719ddda1e49aae5ea6800e3d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54770-6143STDY11462666.zarr.zip,28c5315a89ed4fab8ee99675f3b34887,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54771-6143STDY11462667,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.bam,c89f0db7880f6f0a47a01fec02370fb5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.vcf.gz,c1f19e1e47da600c279b9aefca33c1df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54771-6143STDY11462667.zarr.zip,7d3df0fe8b6bafbbdca6c7a78193c536,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54772-6143STDY11462668,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.bam,8ca58f054d19f77ab586e514a91d5751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.vcf.gz,f170659cf72164028af56258f67f9318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54772-6143STDY11462668.zarr.zip,a8cfc0099c431dc7cc53db9486ab0275,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54773-6143STDY11462669,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.bam,754982f6e6f8bb68028892289ab94645,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.vcf.gz,ed507330ed7ba88ae1fe3a3ae80b1b71,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54773-6143STDY11462669.zarr.zip,cec0fcbbf4b6b53cceb84f4df6691ede,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54776-6143STDY11462672,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.bam,1086453a4278074c8a3e2209b2b18e4e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.vcf.gz,df52cb01a654120a096ea53b0a58f346,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54776-6143STDY11462672.zarr.zip,c628e6779ad9e0cbe19760fe75388129,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54777-6143STDY11462673,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.bam,6964aab6b8de6c49f86d7d15155e81c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.vcf.gz,34864908ff188ca83cbd69192dbd6aff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54777-6143STDY11462673.zarr.zip,63af08046ce067bbf228d44faa5edc48,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54778-6143STDY11462674,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.bam,ce9725e2a5a2209ece4573a81c400fda,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.vcf.gz,091634a24d1251dfae3a20d3a95b63ce,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54778-6143STDY11462674.zarr.zip,25e16f9fd6c2e7de44632ee490c4e990,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54779-6143STDY11462675,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.bam,f626d20f0ad99418a3cca3e51c609af7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.vcf.gz,10aa6f5716382599370e3532860c9493,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54779-6143STDY11462675.zarr.zip,740e4d7a7f082a0364109cc391446b4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54780-6143STDY11462676,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.bam,5eaf5ccbcf1f0f89e68470c6eb50c392,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.vcf.gz,04c6aab85ecfe42f9d174155411bfde3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54780-6143STDY11462676.zarr.zip,fe380a0cf7651958cd65cad3fa9e34f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54781-6143STDY11462677,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.bam,049cffe317896849b94a8808971e1834,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.vcf.gz,66c08796d924e4c50d060eab459f9fc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54781-6143STDY11462677.zarr.zip,7f015ac8da83427420ad5ec433cb87d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54782-6143STDY11462678,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.bam,8cc293a147b49e39d58dca16ca74d99b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.vcf.gz,6dd3291ad4d14dee86ea30220e3b408f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54782-6143STDY11462678.zarr.zip,f7085bdb09f605f057eea5108e214d0f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54783-6143STDY11462679,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.bam,3068ecf5cce1b6d6b09bc42372c2d297,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.vcf.gz,4f36ce9e89f0f39874406a1c5552a343,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54783-6143STDY11462679.zarr.zip,8a713081e1ededb6dd34b6ad200ae68e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54784-6143STDY11462680,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.bam,54be49961134fb5dde0a7e582b363ba4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.vcf.gz,936ad60d8d94150bff18a06e6ecf99d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54784-6143STDY11462680.zarr.zip,38b142ae068b138d5accd8f331d20ddf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54785-6143STDY11462681,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.bam,090a00cdb01bc000f4b9f7bfe4ab18ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.vcf.gz,0635ac44e69dde8c98ab51bbcf47aaaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54785-6143STDY11462681.zarr.zip,693dd377c85ebae048dadd3400d52394,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54786-6143STDY11462682,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.bam,0979c8b2314f3fdfb7d77b5460a7c0bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.vcf.gz,c6f349c715a85d00c5df805a17948b6d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54786-6143STDY11462682.zarr.zip,0094d5843f2f578631d3facccc0c9f4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54787-6143STDY11462683,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.bam,bda1f2c9353535007780d45c4d01214e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.vcf.gz,cf9a0e6fd528d8cf802ccd1f79454f4a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54787-6143STDY11462683.zarr.zip,9c7e88b7d50b3121f263b4addfaf97e1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54788-6143STDY11462684,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.bam,577771defd36e6648d4ca6bfc9748bd9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.vcf.gz,f89af859591ec1cb892295b2da085cfb,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54788-6143STDY11462684.zarr.zip,f0313df866bf7145e81d03c4e96fe59c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54789-6143STDY11462685,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.bam,7ebb93a9067b2502299143fd94b638c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.vcf.gz,7d81a2486d112efd94feb32390c41a46,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54789-6143STDY11462685.zarr.zip,97c326fce5635f9e54646a20bd755b7b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54790-6143STDY11462686,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.bam,1b277dcc044c67d6ce15d3f2670b2a20,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.vcf.gz,59e8a3351025405f196ac47fa55a2bad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54790-6143STDY11462686.zarr.zip,688621d8b0d53a907489d1ad92b28be6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54791-6143STDY11462687,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.bam,48ff88de855b583f647d33b4b2335714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.vcf.gz,a072ed0463c1eadc7b8d5222a0e716f3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54791-6143STDY11462687.zarr.zip,02c401166a2714de9a96bda8bdce4039,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54792-6143STDY11462688,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.bam,ba45aa54572de7349fc83ed2ca2005b0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.vcf.gz,30833aab98207ae95994e187d7936ec9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54792-6143STDY11462688.zarr.zip,78009bf6b58ffc9ed73c042edbf7d0d1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54793-6143STDY11462689,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.bam,bf50ecd477758664eb0aea94210d6f98,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.vcf.gz,b38b974e7a63a412cb90b61613f95bee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54793-6143STDY11462689.zarr.zip,6229124b983d34b05cd9717ee0bc8f6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54794-6143STDY11462690,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.bam,36aabf8adea964b42215436b706c9af6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.vcf.gz,fbc7db27d5a672bb5c342b0b751fde59,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54794-6143STDY11462690.zarr.zip,875fd82d196d1df4f51ebe1f636a70b4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54795-6143STDY11462691,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.bam,f90def20e01822ddcf1702004670d5f9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.vcf.gz,b6e11692d575526b1240ed7cf53c3e1a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54795-6143STDY11462691.zarr.zip,a3a1b5e0154dade049d7fbc9b4bb94c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54796-6143STDY11462692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.bam,8571509b0ec0e48b491e310d41355d41,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.vcf.gz,13777feff4a693b903821b900a97205b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54796-6143STDY11462692.zarr.zip,9f8f715b3027f5144ac0f69dc1f0728a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54797-6143STDY11462693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.bam,3d087db5ada4365261d7f437e82ce400,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.vcf.gz,4d54e973e281507651e8f9829d6bac38,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54797-6143STDY11462693.zarr.zip,134c0ad3083068ed41e008b28e36a13b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54798-6143STDY11462694,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.bam,0667c71147f542182a85a58b9ef4b6df,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.vcf.gz,61cfd3e5b91e8ee94f2a4ba9d7417435,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54798-6143STDY11462694.zarr.zip,887d65d1415229a784632bd315e7c95a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54799-6143STDY11462695,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.bam,412ad6fa79f6ca74306ac4c5a23edc44,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.vcf.gz,b702bb17315746743080177204f2c9ac,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54799-6143STDY11462695.zarr.zip,042e3d89c583ae83136942472a1481ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54800-6143STDY11462696,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.bam,84e677effc18a1df8a4c227c401c54e5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.vcf.gz,2bc87b8f408249fbb6b92198a338f8ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54800-6143STDY11462696.zarr.zip,1dfbdc81ef60fe0bc5c33e2b9bcef207,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54801-6143STDY11462697,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.bam,bad8eb895c47608be5b376425e1c3626,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.vcf.gz,f4123553eb80644abcd8a489646c2c86,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54801-6143STDY11462697.zarr.zip,429126ec61c17cc51c5fda6439f162f6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54802-6143STDY11462698,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.bam,1ddc9860a81cfd1ef8937ac03e17f8bc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.vcf.gz,758e5671daf3d46aaebdc04f19e84748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54802-6143STDY11462698.zarr.zip,c569097f5d586cdb5fa6e52ef868b29c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54803-6143STDY11462699,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.bam,a0034e75dea207cc6d80e460f5438294,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.vcf.gz,0e140ea5eef544e9a452246ed9ee16c6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54803-6143STDY11462699.zarr.zip,38e34f96a4107e6597cb12b5be323669,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54804-6143STDY11462700,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.bam,a877be3051221a855143429ace7e769c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.vcf.gz,d990e3b63c8633f373b0ca5835c43943,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54804-6143STDY11462700.zarr.zip,7583cda3e61c2b8405ca9cbcad55d2e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54805-6143STDY11462701,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.bam,3359b332ee76a353121645d8a2ef841a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.vcf.gz,f44736a78fb8b64d5ae3136fdd02013f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54805-6143STDY11462701.zarr.zip,b80e514a9edc4b002042f0202f96d179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54806-6143STDY11462702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.bam,dac6e5beb0d0b82a1b2eb6b1f3ca7059,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.vcf.gz,80e84d85ac9d4404c714ee1f02b4b15e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54806-6143STDY11462702.zarr.zip,0d2ca1d0acedc076d3aee68ac78a0651,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54807-6143STDY11462703,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.bam,98160f2b46373e0c29e6da9388b62c35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.vcf.gz,4234ed76792df6400b63977b5a648565,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54807-6143STDY11462703.zarr.zip,4ecc416a785d0e9f4375c16f52b7b14d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54808-6143STDY11462704,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.bam,6f90b484cea0195ba13ef6fe266397de,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.vcf.gz,80fc8f7487a284e8e5e1bd80b55f2709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54808-6143STDY11462704.zarr.zip,583afa33247bce6f5649923417236e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54809-6143STDY11462705,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.bam,428011768dcd4d46c308cf0e564139f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.vcf.gz,831f9a56fd58d95b4fb1411b68fa77d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54809-6143STDY11462705.zarr.zip,dc22d51f893f143e88a8e0206ac678e2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54810-6143STDY11462706,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.bam,4d28ebc0553cafcb9e93184de3e6b9a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.vcf.gz,79c184f7e116505a336e9a97e77a5d18,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54810-6143STDY11462706.zarr.zip,9865f69da3183a4c1cfd6a00d0b07cb6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54811-6143STDY11462707,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.bam,3a01930cbaf0d45ac0f19d90966c5010,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.vcf.gz,0a688869672de4057f6341fbc7a3ae17,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54811-6143STDY11462707.zarr.zip,00b59aa23f28e785188df4df5ceb1423,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54812-6143STDY11462708,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.bam,88da908823034a7e296f54e38f9682dc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.vcf.gz,7bd0e0489421a8094831c84a46429c8b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54812-6143STDY11462708.zarr.zip,fe1379198221a30f8d6e4a6607afcd62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54813-6143STDY11462709,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.bam,4bb3d1071a165e053b6e14d43d317381,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.vcf.gz,319586cc7e5075b64bc2ee2c88041e32,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54813-6143STDY11462709.zarr.zip,7cb1eab0c7f39d7929b84c073984023a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54814-6143STDY11462710,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.bam,05c9dd486509a468b778b27d132122b4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.vcf.gz,0f94286ca852934d7fbe1a8ed9f3ff15,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54814-6143STDY11462710.zarr.zip,562ac025030b2962c83fb51f9b732c31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54815-6143STDY11462711,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.bam,d5562260e4f6cd4acfb17f86a47a8bff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.vcf.gz,dff5eebfb4d0e06afbcc001728d9b288,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54815-6143STDY11462711.zarr.zip,3dc27b77733cf1e6b04c0d4f509535a8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54816-6143STDY11462712,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.bam,5eebb2107706d48ffef88db3865466f0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.vcf.gz,61ae89ca7e9575447e4c382cdeec2a5b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54816-6143STDY11462712.zarr.zip,1d216c4179827dd1c6f4341a4c6d1b5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54817-6143STDY11462713,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.bam,0cd292314b762d31be643565e8fad0b7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.vcf.gz,d68dba2003cd9da4c5c90004d4e5915b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54817-6143STDY11462713.zarr.zip,0a55dc962795b462daf3f79326c97586,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54818-6143STDY11462714,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.bam,aae9fa1bca537c1b3bd78241fb93460a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.vcf.gz,6f249d984650616c8a1bdf40cb10d172,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54818-6143STDY11462714.zarr.zip,966b796158fb98fc45ea63efa03042b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54819-6143STDY11462715,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.bam,477f16d6869ae9bf1537107bbab23ec1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.vcf.gz,352d00f7ab7cdb91e6dd20f44b062373,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54819-6143STDY11462715.zarr.zip,0120dc29ea52999ab5cff5838ec11841,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54820-6143STDY11462716,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.bam,79490f8efe60912c46d3399820fb1e2d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.vcf.gz,3377984a685faae60a4fc899a5a34b5a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54820-6143STDY11462716.zarr.zip,1fa67776040580012b3b9d6311aaa902,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54821-6143STDY11462717,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.bam,6d4193c21d29d89bd28f68cc38de5fb2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.vcf.gz,096b9a813015dd689032737d78ce8cff,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54821-6143STDY11462717.zarr.zip,cc92897456b189492a046748dc54649b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54822-6143STDY11462718,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.bam,eee3ce0584d1dc748836c14d6d0921ad,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.vcf.gz,e048a1077e6b7157e9e634cc521b4f72,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54822-6143STDY11462718.zarr.zip,70a94f7286b53c366044452829a3b097,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54823-6143STDY11462719,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.bam,8e1fb9dfa1a14e50f99e7d112a47eae1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.vcf.gz,38b1b597fda142810e54c0a77d2e0eb6,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54823-6143STDY11462719.zarr.zip,e21a7309d1ef489498739cc55ec439ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54824-6143STDY11462720,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.bam,ead93fbfe4996d0c8378141640c70c3a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.vcf.gz,563ff1074a076be0c339b2660d8662e9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54824-6143STDY11462720.zarr.zip,33b745e2e79ccf1dcea97b9703eda33c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54825-6143STDY11462721,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.bam,cc33dc7664c46e9cc095cdd54af4f6a4,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.vcf.gz,23107a4f1da02dedc7895eb16a82ade2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54825-6143STDY11462721.zarr.zip,81ca76214a9ab961066ae1acba2bf68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54826-6143STDY11462722,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.bam,93a48db148011753cb7d9c3dc80e531f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.vcf.gz,e844dd03ae3df36a0e15bd5e99da0354,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54826-6143STDY11462722.zarr.zip,008b74a16038b89a9078e48cadd4da5d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54827-6143STDY11462723,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.bam,d88112a68497fa8cb06147704d7feb6f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.vcf.gz,9e3589d09a428ad4769cc8bc5c340601,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54827-6143STDY11462723.zarr.zip,9736ab44c9457fce50af034373fd672a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54828-6143STDY11462724,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.bam,3fd2a403f97c5fbc0844a5b85e9974bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.vcf.gz,d41a8f2436441df566d87db7d7b6915e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54828-6143STDY11462724.zarr.zip,8ae9bb1cdc2ec4da9ca22e517b53ed01,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54829-6143STDY11462725,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.bam,971a1c4f3cd0462dd2a7f003e4294f94,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.vcf.gz,41bcea2b7beefe54d535c28e96206692,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54829-6143STDY11462725.zarr.zip,66b3f639ade1532992b7381d91118e07,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54830-6143STDY11462726,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.bam,95440c3260374bc620dfb50c171570c2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.vcf.gz,cfa1026a053cf8e0594f8545ddd2eac1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54830-6143STDY11462726.zarr.zip,d2409a99225bdaf025423e94782b5edb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54831-6143STDY11462727,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.bam,96b68b75ddaee170ec6b4e0462691132,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.vcf.gz,142c91b415497eb2309252f21a7c44c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54831-6143STDY11462727.zarr.zip,a25c9d87719ea365a207dc379e0bfcf6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54832-6143STDY11462730,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.bam,5d8d22ed098aadd4302e42d4956ba0c7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.vcf.gz,16cdf71943b7cdafedcb248f77f323a8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54832-6143STDY11462730.zarr.zip,12793c12e4d155ea0e0f8d8d03674c4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54833-6143STDY11462731,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.bam,2428a74977ad359bf0279435ea419876,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.vcf.gz,2b8f30844840e8d951e1678082c74fbe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54833-6143STDY11462731.zarr.zip,710c20af514d8d03a4410753da146889,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54834-6143STDY11462732,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.bam,64cd43538b4edef92f5ab1082400dabf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.vcf.gz,dc6747e7ff6adbe5fa1abb14de3cd4a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54834-6143STDY11462732.zarr.zip,0d3b4b3f82899cb34852e44e828ed354,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54835-6143STDY11462733,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.bam,e2495fdcdf5f4849bd308fecc21039e8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.vcf.gz,fccd46867ead1f9dacefa2a9ca7d66a3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54835-6143STDY11462733.zarr.zip,5a5d66f8ca562dd11a89b76697246ad8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54836-6143STDY11462734,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.bam,2391d1e671d719daec4fc6de187151c3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.vcf.gz,3bb370a16ae2b7cc7cb4baa123172ffa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54836-6143STDY11462734.zarr.zip,cb36ece63b7d8179ff9e331cbf0de5fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54837-6143STDY11462735,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.bam,82f81003cd5cf1e07d7f703df777df33,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.vcf.gz,99a2f194cdc4e16e92140ed93a1ea10a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54837-6143STDY11462735.zarr.zip,3862588907eb4b9e3e2a503890e80b62,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54838-6143STDY11462736,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.bam,9dd87018fa68bb9b43c3ac8dbc31ce64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.vcf.gz,af7c18728fbee4cee3b12fbcdeebf28d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54838-6143STDY11462736.zarr.zip,efdcdce1b120e0861085f2b23d44159d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54839-6143STDY11462737,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.bam,70efa624cb36277b5b2066599598cd35,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.vcf.gz,932794832fcc6b3e3c41c211c9ebae1d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54839-6143STDY11462737.zarr.zip,0eb9d6e1d5181c1e2eddc104d7080d5a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54840-6143STDY11462738,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.bam,1f9da8f24df85b598fab950a2287273f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.vcf.gz,8aec06bd23966b3de8db876896fcac07,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54840-6143STDY11462738.zarr.zip,75d101df0a102eb01d4f67532bd12384,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54841-6143STDY11462739,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.bam,eca2800141306919d04113853864b86c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.vcf.gz,60bd8f60eeadbd4f96a1a8a96fcaa000,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54841-6143STDY11462739.zarr.zip,21a577d6fb9eb475de2ed497214c879d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54842-6143STDY11462740,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.bam,898fa9e4de027ba097bf44890ccbc123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.vcf.gz,74f5c4be317e11c5f4ef083d9a8e38af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54842-6143STDY11462740.zarr.zip,c62892b7005da8a377dd801cd15c27d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54843-6143STDY11462741,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.bam,7524b2024150e53ff7b06a72594100ee,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.vcf.gz,8de75e53c2b4c8d77ab26ebee3229c1c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54843-6143STDY11462741.zarr.zip,daf5600830fe6344c3b99a0f10dbc95d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54844-6143STDY11462742,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.bam,f93f68f964bfdb287958a65c25dc67a2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.vcf.gz,76e35d5042f4dbb5a0fc07c3de575496,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54844-6143STDY11462742.zarr.zip,b9feee6dc38f7a83c3daa8630402e8b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54845-6143STDY11462743,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.bam,e3c6050546c5930209476176dc88d247,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.vcf.gz,101243be031effd24f5b44a9c015c3d1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54845-6143STDY11462743.zarr.zip,bd91448e0ccc062f482640a91c8edd97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54846-6143STDY11462744,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.bam,e65953560f8ccff294d5a0e9289a29b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.vcf.gz,09e425a296e025ea104cf5fe0ca75608,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54846-6143STDY11462744.zarr.zip,cfbb402c9b1817646d298647ac94580e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54847-6143STDY11462745,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.bam,e6e264790559a0e3d9dc1efd78309d9b,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.vcf.gz,f20cc3f08154fb434d2bb751db36944d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54847-6143STDY11462745.zarr.zip,9c60f04095afc7128d4694946a03bc64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54848-6143STDY11462746,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.bam,2d5c45e86eac932d5a4303f4889f9634,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.vcf.gz,e6f1a8b3601d9c0b60cc2a969c151693,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54848-6143STDY11462746.zarr.zip,b428a84c00d7b9b3ffd7818df560d206,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54849-6143STDY11462747,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.bam,b740d34c3aada650d3f84856fe21f581,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.vcf.gz,8cbaae1540fed7a59a2cec014bd5b94a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54849-6143STDY11462747.zarr.zip,5e330a709a0288513a0e74486c53e6ea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54850-6143STDY11462748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.bam,c75f2db2dfa02c0ba9f6f862c63e2910,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.vcf.gz,8eaa2644b0a026056049c44966d6691a,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54850-6143STDY11462748.zarr.zip,5f19974e1c65f034b3d90ae5067ec532,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54851-6143STDY11462749,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.bam,b387b3463bfd6cc55042bbe4e3faa146,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.vcf.gz,ba682bc5a4c9841dbef3e2a71fe6e3f8,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54851-6143STDY11462749.zarr.zip,b4bcf6c7a1653d453d0a279e78fca1e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54852-6143STDY11462750,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.bam,9dab7ddb8915fac6931ca857d44be415,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.vcf.gz,ae5d282ed8f889022ce94c559aebc7aa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54852-6143STDY11462750.zarr.zip,86674336f08fae8af7079948bc10b8a6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54853-6143STDY11462751,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.bam,60a7f06d9b39315c89b3bf80d5d2bfa2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.vcf.gz,33c91cd3fc7b1a01f5c1c78cc7745508,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54853-6143STDY11462751.zarr.zip,a1eedd448be699ecb4db56d8a89818c0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54854-6143STDY11462752,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.bam,a5dcb044d18069233666586a2f499f23,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.vcf.gz,351f3d39be752515d589e4b6e565d0b1,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54854-6143STDY11462752.zarr.zip,a6aef2cf4fce39c9acbdc94785d83b41,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54855-6143STDY11462753,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.bam,5669deae51e1096266ebe61085a98a4c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.vcf.gz,dca55e44d7525b11e457507436490ed3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54855-6143STDY11462753.zarr.zip,3ab22bfcbcb110e252fabba0e20e1d67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54856-6143STDY11462754,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.bam,18e4ea568489f1a6574cdc08e40cb7c0,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.vcf.gz,a917806551b1e85eb9a72c47e3d9837c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54856-6143STDY11462754.zarr.zip,b046c7881b9e6e66c4a0819993d06d8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54857-6143STDY11462755,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.bam,668e054d5fa42c74e3be0e0459157584,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.vcf.gz,ad413be118b12db8e58d00a43ace3170,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54857-6143STDY11462755.zarr.zip,a33b439f56a5dfdc55a79802ef07d6b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54858-6143STDY11462756,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.bam,126333fe08fd191d03798b9275ee0b90,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.vcf.gz,d56d727e5118adb7638e6ff48029215e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54858-6143STDY11462756.zarr.zip,a924b373967f18e6eec44f87cd56a35a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54859-6143STDY11462757,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.bam,ada832de7351d6b5b5800f83db8a877e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.vcf.gz,56f1c584321fe4c70d82be5a267916d7,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54859-6143STDY11462757.zarr.zip,c22bdea09592288ae72d76ae39fe9ce8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54860-6143STDY11462758,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.bam,d10c077aaf856634e59cff4ce329c56e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.vcf.gz,1056d05abc874d913c109afc4baba185,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54860-6143STDY11462758.zarr.zip,1e1cd9940db1e36b9a21dc3354fed2f8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54861-6143STDY11462759,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.bam,642c98b6ad0955276dddf8269be12e7f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.vcf.gz,afe22537f4d9ab0603897b176512e40e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54861-6143STDY11462759.zarr.zip,9c69f379cb5d8dbd021190e9c24d5f68,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54862-6143STDY11462760,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.bam,c531ce2bec5518bdb0a8ef19ca07d497,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.vcf.gz,d706c78e8723e49a383087c7f6ab26fa,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54862-6143STDY11462760.zarr.zip,960a4127e1b9047c2137101443918b23,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54863-6143STDY11462761,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.bam,cc6e3d1d4b7cc25428f35553afa32b1e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.vcf.gz,a7d66c8a9e5f0c7b0f57cc1d8ce6bac3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54863-6143STDY11462761.zarr.zip,08a7f4f72ed2bca6236d8179af9611b9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54864-6143STDY11462762,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.bam,00cb78c02041989b869ab0d87154373e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.vcf.gz,e445bef3e7a3fe349532c4a160e40123,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54864-6143STDY11462762.zarr.zip,1162b7d7a4ea401000915b5a6c51e7d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54865-6143STDY11462763,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.bam,7ecf56567499365322868e692361a49c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.vcf.gz,dfbc05f835737bdef4087e7564f741d9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54865-6143STDY11462763.zarr.zip,e1c86ba468fa33062e02a9c7e87c2108,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54866-6143STDY11462764,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.bam,19fcdb92d4b594dceab977c5d5451a43,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.vcf.gz,ba7e07033545307fd80da45f252bd480,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54866-6143STDY11462764.zarr.zip,d5ad148bb33b78dfc7e45b1fbcaae0c6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54867-6143STDY11462765,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.bam,19d7ed0ccdc0a1e0584c8ffe6bb5891c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.vcf.gz,808f10ca2d7c31096c841a9a92fe769d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54867-6143STDY11462765.zarr.zip,df2136606990a2601424a0b2e9f1f6e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54868-6143STDY11462766,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.bam,1d0c465e066505f3254975c9f82ce8be,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.vcf.gz,234e9eaa4da91d60d55009ac8dbd5748,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54868-6143STDY11462766.zarr.zip,a3afee3a3278b3f778c1ea1e6605658b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54869-6143STDY11462767,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.bam,9567c5ab79100bfd90347c90dc0adeed,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.vcf.gz,72941c254f5f738b426fb5d93df800c9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54869-6143STDY11462767.zarr.zip,2a11ccf863b58f8162c63fa852c1f67d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54870-6143STDY11462768,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.bam,f86ac9aceb47a85940b575cb94df6057,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.vcf.gz,155ee0361b5080b675528082d587ffc9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54870-6143STDY11462768.zarr.zip,d91100884242d9134b3009042be610fa,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54871-6143STDY11462769,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.bam,019236241d43ba4e594b7e9907571f64,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.vcf.gz,4a3b752064c4c460c06c02b251b3b31f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54871-6143STDY11462769.zarr.zip,c7256b883d301ae702a13f706e90fe66,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54872-6143STDY11462770,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.bam,afc77f27da1eb1f948e013f2948e2702,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.vcf.gz,436df5f37fcb0101bd92cd9722a85f53,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54872-6143STDY11462770.zarr.zip,2d7d3f9ef9a88bc7dddfa212f5a6c8ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54873-6143STDY11462771,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.bam,575d27d9fa1bee7cc798fb902ce017af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.vcf.gz,eddd41134440d0f9141f94a5d03dbcfe,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54873-6143STDY11462771.zarr.zip,ceaee9b301ab1b7958c408f63f32312a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54874-6143STDY11462772,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.bam,fcc30a419851d486bf9413d6625decaf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.vcf.gz,b4c997527df3f003be3cda3c39ee2953,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54874-6143STDY11462772.zarr.zip,14cc809c09711c73bfe4073ec022699a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54875-6143STDY11462773,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.bam,959b5ce27dc3d1353fbe879859f66bca,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.vcf.gz,220d1c866a314d5a9c0d5d99b24edd8d,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54875-6143STDY11462773.zarr.zip,e0b7e311dd8cac047edc114cace35645,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54876-6143STDY11462774,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.bam,b6f3abc0c8bb7d211d6bd0995843fde9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.vcf.gz,84575a95e2f9e6b02149b6cd41de1d99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54876-6143STDY11462774.zarr.zip,839cd2a821def7b731b689e624801280,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54877-6143STDY11462775,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.bam,e75a2f48da3cbff3e01b94f16a5fd324,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.vcf.gz,032ee7ddfee2a3b8dbd912cc104bb509,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54877-6143STDY11462775.zarr.zip,b820237457e9c0c9d3132cd5eb275f36,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54878-6143STDY11462776,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.bam,63b3809fa65ab76e91d71b2ada246b87,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.vcf.gz,f256a4632eb91e57291b9ee1a57bdbc2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54878-6143STDY11462776.zarr.zip,b1f65f98c99fe7b378f9a02025ac8e6f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54879-6143STDY11462777,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.bam,aff1928a1404861d7ead11a18d03c32c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.vcf.gz,13d8b09db3cd76936b0c5e00aedc3f84,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54879-6143STDY11462777.zarr.zip,76d729e03f524cbc93e5fda14051f66b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54880-6143STDY11462778,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.bam,5e599526049a41b11ccb3b3cd6bec0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.vcf.gz,c558a0db4ca49dd9130be41685844df9,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54880-6143STDY11462778.zarr.zip,6f95310d6b7f0b1f50fedaf054867b29,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54881-6143STDY11462779,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.bam,7d557399fbb46aa6dcb0fa3667520a57,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.vcf.gz,e684ae3760710859c9a74dfa27447838,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54881-6143STDY11462779.zarr.zip,407fa653a03118ec2c4b6fbb6bfe8b16,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54882-6143STDY11462780,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.bam,88bb6d8663cdc8fa2a3aa43da4fe8318,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.vcf.gz,4555fe31188b017a092bf10f24a7e0af,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54882-6143STDY11462780.zarr.zip,2766be38e3d9162d462cbcf6f76d8929,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54883-6143STDY11462781,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.bam,8ed44d33044c89302aea16005e01f290,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.vcf.gz,357b39f1d307114c1f2ca3606ad3290e,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54883-6143STDY11462781.zarr.zip,6a09c43081bebb975135cb022363dbcd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54884-6143STDY11462782,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.bam,9ccf79f6d59cf3fff1741c2523762fde,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.vcf.gz,bd9e964d6554700b74f9c7d17fa6c3bd,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54884-6143STDY11462782.zarr.zip,3dbae1efe380bd9e33434a092f59ef6e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54885-6143STDY11462783,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.bam,bdb1460888d7252ede0530d56995d2da,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.vcf.gz,2a3e90b307f2bfcc4b92f1618a603a99,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54885-6143STDY11462783.zarr.zip,39391d15360adcc443c24f645714dab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54886-6143STDY11462784,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.bam,79b336d94d7eaf3b862631f27c0ecf04,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.vcf.gz,5c470a9e0effd10e44ed04bce6e27556,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54886-6143STDY11462784.zarr.zip,30a2697c7e30e3f76092d3e8b16fb5d0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54887-6143STDY11462785,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.bam,07ced3802dd70f25031d08361ea063e3,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.vcf.gz,82e08f3117824029c4077c118c950e37,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54887-6143STDY11462785.zarr.zip,9d8b45a667efc974d5209c849044ad42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54888-6143STDY11462786,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.bam,6b0cb7e99e028a94d14fff097ff18921,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.vcf.gz,b70bb5bbaeeacce580e883adddfc663f,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54888-6143STDY11462786.zarr.zip,4ed5740b619a5b0fec9f9a3a05d93c04,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54889-6143STDY11462787,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.bam,3cc7eacef330edc2f930ee59957c036c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.vcf.gz,b6fc34e58df64f24b6a0a6293158a4f2,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54889-6143STDY11462787.zarr.zip,5755eed38f36b2cc96d0c4474cdedaf4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54890-6143STDY11462788,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.bam,3f5ae3d13d99457893849b06f1b79183,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.vcf.gz,8389e8547c3d8890e55d0b35fb62b644,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54890-6143STDY11462788.zarr.zip,62041e5fe5b4aac9c6446640491d56c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54891-6143STDY11462789,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.bam,6e57ddf5631c7ec722ba3997c0f807b5,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.vcf.gz,3c27898b5c3772e506670832c5dd7efc,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54891-6143STDY11462789.zarr.zip,5b476563ff3b0b295757c1b0586fb84e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS54892-6143STDY11462790,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.bam,5766579d8bd76a0091f1745eaa8f3baf,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.vcf.gz,d8a7afe16889ff50fd09e016cb3c2c5c,https://1277-vo-kh-witkowski-vmf00186.cog.sanger.ac.uk/VBS54892-6143STDY11462790.zarr.zip,97709d7d2c81bcadb26488ef8eb108d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv new file mode 100644 index 000000000..ece09c8b3 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/samples.meta.csv @@ -0,0 +1,220 @@ +sample_id,partner_sample_id,contributor,country,location,year,month,latitude,longitude,sex_call +VBS45974-6296STDY9478582,329,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,UKN +VBS45976-6296STDY9478584,339,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A/2",2019,2,9.110,98.878,UKN +VBS45979-6296STDY9478587,920,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,3,9.134,98.888,UKN +VBS45982-6296STDY9478589,1007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, C2",2019,4,9.134,98.888,UKN +VBS46005-6296STDY9478612,1845,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46042-6296STDY9478649,2014,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46050-6296STDY9478657,2043,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46059-6296STDY9478666,2523,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46066-6296STDY9478673,2909,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46067-6296STDY9478674,2935,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46078-6296STDY9478687,3109,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46083-6296STDY9478692,3185,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46084-6296STDY9478693,3191,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46087-6296STDY9478696,3325,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46088-6296STDY9478697,3330,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46098-6296STDY9478707,3932_1278,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46121-6296STDY9478730,4591,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46141-6296STDY9478750,5202,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46145-6296STDY9478754,5206,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46146-6296STDY9478755,5209,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46154-6296STDY9478763,5221,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46168-6296STDY9478779,5244,Kevin Kobylinski,Thailand,"Vibhavadi, six, A",2019,10,9.252,98.850,UKN +VBS46172-6296STDY9478782,5265,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,10,9.340,98.880,UKN +VBS46173-6296STDY9478783,5313,Kevin Kobylinski,Thailand,"Vibhavadi, ten, F",2019,10,9.353,98.875,UKN +VBS46175-6296STDY9478785,5496,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46180-6296STDY9478790,5506_1278,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46183-6296STDY9478793,5592,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46187-6296STDY9478797,5614,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46188-6296STDY9478798,5619,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46189-6296STDY9478799,5647,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46190-6296STDY9478800,5649,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46192-6296STDY9478801,5683,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, N",2019,10,9.083,98.878,UKN +VBS46198-6296STDY9478807,5736,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS45975-6296STDY10244530,331,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, A",2019,2,9.110,98.878,UKN +VBS45983-6296STDY10244537,1200,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, C1",2019,4,9.080,98.879,UKN +VBS45984-6296STDY10244538,1363,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,UKN +VBS45985-6296STDY10244539,1364,Kevin Kobylinski,Thailand,"Phanom, three, A2",2019,4,8.894,98.667,UKN +VBS45986-6296STDY10244540,1494,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D1",2019,4,9.107,98.869,UKN +VBS45987-6296STDY10244541,1498,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, D2",2019,4,9.107,98.869,UKN +VBS45988-6296STDY10244542,1687,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45989-6296STDY10244543,1688,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45991-6296STDY10244545,1711,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS45992-6296STDY10244546,1719,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45993-6296STDY10244547,1738,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45994-6296STDY10244548,1750,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45995-6296STDY10244549,1759,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45996-6296STDY10244550,1771,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45997-6296STDY10244551,1774,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS45998-6296STDY10244552,1780,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS45999-6296STDY10244553,1793,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46000-6296STDY10244554,1810,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46001-6296STDY10244555,1818,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46002-6296STDY10244556,1826_1278,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46003-6296STDY10244557,1830,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46004-6296STDY10244558,1840,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46006-6296STDY10244560,1854,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46007-6296STDY10244561,1859,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46008-6296STDY10244562,1860,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46009-6296STDY10244563,1866,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46010-6296STDY10244564,1871,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46011-6296STDY10244565,1872,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46012-6296STDY10244566,1875,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46013-6296STDY10244567,1881,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46014-6296STDY10244568,1887,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46016-6296STDY10244570,1908,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46017-6296STDY10244571,1912,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46019-6296STDY10244573,1931,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46020-6296STDY10244574,1932,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46021-6296STDY10244575,1934,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46022-6296STDY10244576,1936,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46025-6296STDY10244579,1946,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46026-6296STDY10244580,1949,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46027-6296STDY10244581,1950,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46028-6296STDY10244582,1951,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46029-6296STDY10244583,1954,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46030-6296STDY10244584,1956,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46031-6296STDY10244585,1960,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46032-6296STDY10244586,1966,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46033-6296STDY10244587,1975,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46034-6296STDY10244588,1977,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46035-6296STDY10244589,1978,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46036-6296STDY10244590,1989,Kevin Kobylinski,Thailand,"Phanom, one, B1",2019,5,8.870,98.631,UKN +VBS46037-6296STDY10244591,1999,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46038-6296STDY10244592,2000,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46039-6296STDY10244593,2003,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46040-6296STDY10244594,2006,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46041-6296STDY10244595,2011,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46043-6296STDY10244597,2017,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46044-6296STDY10244598,2018,Kevin Kobylinski,Thailand,"Phanom, one, B2",2019,5,8.869,98.631,UKN +VBS46045-6296STDY10244599,2028,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46046-6296STDY10244600,2037,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46047-6296STDY10244601,2039,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46048-6296STDY10244602,2040,Kevin Kobylinski,Thailand,"Phanom, three, B2",2019,5,8.896,98.663,UKN +VBS46049-6296STDY10244603,2041,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46051-6296STDY10244605,2044,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46052-6296STDY10244606,2045,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46053-6296STDY10244607,2047,Kevin Kobylinski,Thailand,"Phanom, three, B1",2019,5,8.896,98.663,UKN +VBS46054-6296STDY10244608,2431,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E1",2019,5,9.068,98.846,UKN +VBS46055-6296STDY10244609,2444,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46056-6296STDY10244610,2499,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46057-6296STDY10244611,2503,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, E2",2019,5,9.068,98.846,UKN +VBS46060-6296STDY10244614,2569,Kevin Kobylinski,Thailand,"Vibhavadi, eleven, A",2019,5,9.360,98.876,UKN +VBS46061-6296STDY10244615,2688,Kevin Kobylinski,Thailand,"Vibhavadi, nine, A3",2019,1,9.331,98.878,UKN +VBS46063-6296STDY10244617,2841,Kevin Kobylinski,Thailand,"Phanom, three, C2",2019,6,8.890,98.663,UKN +VBS46064-6296STDY10244618,2889,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46065-6296STDY10244619,2894,Kevin Kobylinski,Thailand,"Phanom, three, C1",2019,6,8.890,98.664,UKN +VBS46068-6296STDY10244622,2937,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46069-6296STDY10244625,2944,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46070-6296STDY10244626,2960,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46071-6296STDY10244627,2961,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46072-6296STDY10244628,3007,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46073-6296STDY10244629,3037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,UKN +VBS46074-6296STDY10244630,3041,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, H",2019,6,9.136,98.881,UKN +VBS46075-6296STDY10244631,3062,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, F",2019,6,9.105,98.891,UKN +VBS46076-6296STDY10244632,3077,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46077-6296STDY10244633,3079,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, G",2019,6,9.108,98.885,UKN +VBS46079-6296STDY10244635,3129,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, G",2019,6,9.135,98.882,UKN +VBS46080-6296STDY10244636,3142,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, G",2019,6,9.063,98.877,UKN +VBS46081-6296STDY10244637,3170,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46082-6296STDY10244638,3183,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46085-6296STDY10244641,3249,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,6,9.082,98.861,UKN +VBS46086-6296STDY10244642,3316,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, F",2019,6,9.081,98.864,UKN +VBS46089-6296STDY10244645,3388,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,UKN +VBS46090-6296STDY10244646,3396,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B1",2019,7,9.304,98.885,UKN +VBS46091-6296STDY10244647,3397,Kevin Kobylinski,Thailand,"Vibhavadi, eight, B2",2019,7,9.304,98.886,UKN +VBS46092-6296STDY10244648,3581,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, H",2019,7,9.110,98.880,UKN +VBS46093-6296STDY10244649,3623,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,UKN +VBS46094-6296STDY10244650,3710,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, I",2019,7,9.140,98.881,UKN +VBS46095-6296STDY10244651,3745,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, I",2019,7,9.052,98.865,UKN +VBS46096-6296STDY10244652,3780,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, G",2019,7,9.082,98.861,UKN +VBS46097-6296STDY10244653,3840,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46099-6296STDY10244655,3954,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,3,9.340,98.880,UKN +VBS46100-6296STDY10244656,4148,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46101-6296STDY10244657,4149,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46102-6296STDY10244658,4151,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, J",2019,8,9.111,98.881,UKN +VBS46103-6296STDY10244659,4156_1278,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,UKN +VBS46104-6296STDY10244660,4235,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, M",2019,8,9.126,98.903,UKN +VBS46105-6296STDY10244661,4274,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, I",2019,8,9.105,98.889,UKN +VBS46106-6296STDY10244662,4310,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46107-6296STDY10244663,4321,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46108-6296STDY10244664,4407,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46109-6296STDY10244665,4430,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46110-6296STDY10244666,4472,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, J",2019,8,9.053,98.852,UKN +VBS46111-6296STDY10244667,4488,Kevin Kobylinski,Thailand,"Khirirat Nikhom, four, K",2019,8,9.052,98.857,UKN +VBS46112-6296STDY10244668,4511,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, K",2019,8,9.084,98.876,UKN +VBS46113-6296STDY10244669,4556,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46114-6296STDY10244670,4560,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46115-6296STDY10244671,4577,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46116-6296STDY10244672,4578,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46117-6296STDY10244673,4579,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46118-6296STDY10244674,4585,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, A",2019,8,9.100,98.896,UKN +VBS46119-6296STDY10244675,4589,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46120-6296STDY10244676,4590,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46122-6296STDY10244678,4596,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46123-6296STDY10244679,4609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, B",2019,8,9.099,98.898,UKN +VBS46124-6296STDY10244680,4666,Kevin Kobylinski,Thailand,"Vibhavadi, eight, F",2019,2,9.307,98.885,UKN +VBS46125-6296STDY10244681,4768,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46126-6296STDY10244682,4778,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46127-6296STDY10244683,4779,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46128-6296STDY10244684,4788,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46129-6296STDY10244685,4809,Kevin Kobylinski,Thailand,"Vibhavadi, nine, B",2019,2,9.326,98.876,UKN +VBS46130-6296STDY10244686,4875,Kevin Kobylinski,Thailand,"Vibhavadi, ten, D",2019,2,9.340,98.880,UKN +VBS46131-6296STDY10244687,5191_1278,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,UKN +VBS46132-6296STDY10244688,5192,Kevin Kobylinski,Thailand,"Phanom, one, F",2019,10,8.869,98.638,UKN +VBS46133-6296STDY10244689,5194,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46134-6296STDY10244690,5195,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46135-6296STDY10244691,5196,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46136-6296STDY10244692,5197,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46137-6296STDY10244693,5198,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46138-6296STDY10244694,5199,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46139-6296STDY10244695,5200,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46140-6296STDY10244696,5201,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46142-6296STDY10244698,5203,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46143-6296STDY10244699,5204,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46144-6296STDY10244700,5205,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46147-6296STDY10244703,5214,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46148-6296STDY10244704,5215,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46149-6296STDY10244705,5216,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46150-6296STDY10244706,5217,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46151-6296STDY10244707,5218,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46152-6296STDY10244708,5219,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46153-6296STDY10244709,5220,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46155-6296STDY10244711,5222,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46156-6296STDY10244712,5223,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46157-6296STDY10244713,5226,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46158-6296STDY10244714,5227,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46160-6296STDY10244716,5230_1278,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46161-6296STDY10244717,5231,Kevin Kobylinski,Thailand,"Phanom, one, G",2019,10,8.877,98.646,UKN +VBS46162-6296STDY10244718,5232,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46163-6296STDY10244721,5233,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46164-6296STDY10244722,5236,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46165-6296STDY10244723,5237,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46166-6296STDY10244724,5238,Kevin Kobylinski,Thailand,"Phanom, one, E",2019,10,8.871,98.641,UKN +VBS46170-6296STDY10244727,5247,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,UKN +VBS46171-6296STDY10244728,5248,Kevin Kobylinski,Thailand,"Vibhavadi, nine, D",2019,10,9.327,98.877,UKN +VBS46174-6296STDY10244731,5494,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46176-6296STDY10244733,5500,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46177-6296STDY10244734,5501,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46178-6296STDY10244735,5502,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46179-6296STDY10244736,5505,Kevin Kobylinski,Thailand,"Vibhavadi, nine, E",2019,10,9.329,98.873,UKN +VBS46181-6296STDY10244738,5542,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46182-6296STDY10244739,5548,Kevin Kobylinski,Thailand,"Vibhavadi, eight, I",2019,10,9.296,98.886,UKN +VBS46184-6296STDY10244741,5604,Kevin Kobylinski,Thailand,"Khirirat Nikhom, five, B",2019,10,9.043,98.894,UKN +VBS46185-6296STDY10244742,5609,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46186-6296STDY10244743,5613,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, L",2019,10,9.083,98.859,UKN +VBS46193-6296STDY10244749,5697,Kevin Kobylinski,Thailand,"Khirirat Nikhom, six, O",2019,10,9.076,98.868,UKN +VBS46194-6296STDY10244750,5721,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46195-6296STDY10244751,5725,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46196-6296STDY10244752,5727,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46197-6296STDY10244753,5728,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46199-6296STDY10244755,5738,Kevin Kobylinski,Thailand,"Khirirat Nikhom, seven, D",2019,10,9.097,98.902,UKN +VBS46200-6296STDY10244756,5765,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,UKN +VBS46201-6296STDY10244757,5771,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, K",2019,10,9.108,98.875,UKN +VBS46202-6296STDY10244758,5777,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, L",2019,10,9.109,98.877,UKN +VBS46203-6296STDY10244759,5895,Kevin Kobylinski,Thailand,"Khirirat Nikhom, nine, Q",2019,10,9.127,98.905,UKN +VBS46204-6296STDY10244760,5972,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,UKN +VBS46205-6296STDY10244761,6024,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, M",2019,10,9.104,98.891,UKN +VBS46206-6296STDY10244762,6036,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,UKN +VBS46207-6296STDY10244763,6037,Kevin Kobylinski,Thailand,"Khirirat Nikhom, eight, N",2019,10,9.106,98.887,UKN diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv new file mode 100644 index 000000000..41e1c652b --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/sequence_qc_stats.csv @@ -0,0 +1,220 @@ +sample_id,mean_cov,median_cov,modal_cov,mean_cov_KB672490,median_cov_KB672490,mode_cov_KB672490,mean_cov_KB672868,median_cov_KB672868,mode_cov_KB672868,mean_cov_KB672979,median_cov_KB672979,mode_cov_KB672979,mean_cov_KB673090,median_cov_KB673090,mode_cov_KB673090,mean_cov_KB673201,median_cov_KB673201,mode_cov_KB673201,frac_gen_cov,divergence +VBS45974-6296STDY9478582,9.79,9,9,9.79,9,9,9.81,9,9,9.91,10,9,9.81,9,9,9.62,9,9,0.952,0.03652 +VBS45975-6296STDY10244530,75.33,76,75,74.27,74,75,74.89,75,75,76.6,76,75,76.95,78,77,74.97,75,75,0.959,0.03382 +VBS45976-6296STDY9478584,12.9,13,12,12.95,13,12,12.87,13,12,13.16,13,12,12.6,12,12,12.83,13,12,0.952,0.03517 +VBS45979-6296STDY9478587,14.53,14,14,14.56,14,14,14.39,14,14,14.72,14,14,14.56,14,14,14.42,14,14,0.954,0.03525 +VBS45982-6296STDY9478589,20.34,19,18,20.91,20,19,20.46,19,18,20.86,20,18,19.02,18,17,19.81,19,18,0.955,0.03414 +VBS45983-6296STDY10244537,16.39,16,16,16.38,16,16,16.34,16,16,16.93,17,16,16.07,16,16,16.19,16,16,0.955,0.03482 +VBS45984-6296STDY10244538,36.46,37,37,36.39,36,36,36.38,36,37,37.05,37,37,36.14,36,37,36.36,36,37,0.957,0.03366 +VBS45985-6296STDY10244539,37.61,38,38,37.81,38,38,37.37,37,38,38.91,39,38,36.55,37,36,37.22,37,37,0.957,0.03361 +VBS45986-6296STDY10244540,42.12,42,42,42.54,43,42,42.04,42,42,43.8,44,43,40.26,41,41,41.4,42,41,0.956,0.03393 +VBS45987-6296STDY10244541,37.26,37,37,37.56,37,37,37.37,37,37,38.76,39,38,35.6,36,36,36.47,37,36,0.957,0.03383 +VBS45988-6296STDY10244542,38.39,39,39,38.55,39,39,38.36,38,39,39.36,39,39,37.31,38,38,38.11,38,39,0.958,0.03386 +VBS45989-6296STDY10244543,49.81,50,50,49.82,50,50,49.57,50,50,51.36,51,51,48.79,49,49,49.44,50,50,0.957,0.03365 +VBS45991-6296STDY10244545,45.77,46,46,46.01,46,47,45.76,46,46,47.23,47,47,44.29,45,46,45.2,46,46,0.958,0.03387 +VBS45992-6296STDY10244546,37.63,38,38,37.58,38,37,37.6,38,38,38.71,39,38,36.73,37,37,37.43,37,37,0.957,0.03359 +VBS45993-6296STDY10244547,38.07,38,38,38.01,38,38,37.95,38,38,39.0,39,39,37.58,38,38,37.81,38,38,0.957,0.03362 +VBS45994-6296STDY10244548,44.41,45,45,44.32,44,44,44.24,44,44,45.33,45,45,43.8,44,45,44.44,45,45,0.957,0.03363 +VBS45995-6296STDY10244549,38.14,38,38,37.9,38,38,38.13,38,39,39.34,39,39,37.46,38,38,37.94,38,38,0.955,0.03396 +VBS45996-6296STDY10244550,36.73,37,37,36.41,36,36,36.66,37,36,37.77,38,37,36.51,37,37,36.47,37,37,0.957,0.0336 +VBS45997-6296STDY10244551,76.86,78,79,77.22,78,79,76.63,78,79,79.64,80,81,74.05,76,77,76.28,77,78,0.959,0.03383 +VBS45998-6296STDY10244552,64.83,65,66,65.01,65,65,65.03,65,65,66.89,67,67,62.63,64,65,64.1,65,65,0.959,0.03395 +VBS45999-6296STDY10244553,45.76,46,46,45.75,46,46,45.62,46,46,48.71,49,49,43.74,44,45,44.72,45,45,0.958,0.03387 +VBS46000-6296STDY10244554,89.13,90,91,89.65,91,92,88.16,90,90,93.33,94,93,85.9,88,90,88.3,90,89,0.959,0.03382 +VBS46001-6296STDY10244555,35.07,35,35,34.88,35,35,35.04,35,35,36.13,36,36,34.34,34,35,35.01,35,35,0.957,0.03358 +VBS46002-6296STDY10244556,40.42,40,39,40.36,40,38,40.37,40,39,41.57,41,40,39.71,39,38,40.07,39,39,0.957,0.03366 +VBS46003-6296STDY10244557,42.55,42,41,42.5,42,41,42.5,42,41,44.01,44,42,41.62,41,40,41.99,42,41,0.957,0.03363 +VBS46004-6296STDY10244558,42.06,42,42,42.35,42,42,42.17,42,42,44.16,44,44,39.92,40,41,41.1,41,41,0.958,0.03388 +VBS46005-6296STDY9478612,18.82,18,18,18.97,19,18,18.76,18,18,19.12,19,18,18.45,18,17,18.67,18,18,0.955,0.0338 +VBS46006-6296STDY10244560,43.63,44,44,43.5,44,43,43.55,44,44,45.64,46,45,42.36,43,43,43.05,43,43,0.957,0.03363 +VBS46007-6296STDY10244561,39.77,40,40,39.87,40,40,39.84,40,40,40.96,41,40,38.65,39,40,39.24,40,40,0.958,0.03385 +VBS46008-6296STDY10244562,39.04,39,39,39.03,39,39,38.83,39,38,40.34,40,40,38.26,38,39,38.76,39,39,0.957,0.03369 +VBS46009-6296STDY10244563,34.34,34,34,34.29,34,34,34.16,34,34,35.53,35,35,33.61,34,34,34.17,34,34,0.957,0.03363 +VBS46010-6296STDY10244564,44.3,44,44,44.3,44,44,44.4,44,44,45.98,46,45,42.63,43,43,43.95,44,44,0.957,0.03363 +VBS46011-6296STDY10244565,37.81,38,38,37.88,38,38,37.62,38,37,39.19,39,39,36.74,37,37,37.47,37,37,0.958,0.03362 +VBS46012-6296STDY10244566,49.18,49,50,49.36,50,49,49.33,50,50,51.23,51,52,47.19,48,49,48.3,49,49,0.958,0.03389 +VBS46013-6296STDY10244567,49.91,50,51,50.07,50,50,49.97,50,50,51.84,52,52,47.97,49,50,49.29,50,50,0.959,0.03389 +VBS46014-6296STDY10244568,68.98,70,70,68.7,69,70,68.88,69,70,72.02,72,72,67.07,68,69,68.18,69,69,0.958,0.03375 +VBS46016-6296STDY10244570,39.17,39,39,39.29,39,39,39.34,39,39,40.84,41,41,37.47,38,38,38.53,39,39,0.958,0.03383 +VBS46017-6296STDY10244571,36.17,36,36,36.28,36,36,36.03,36,36,37.41,37,37,35.23,35,36,35.76,36,36,0.956,0.03361 +VBS46019-6296STDY10244573,46.77,47,47,46.71,47,47,46.77,47,47,47.71,48,48,45.88,46,47,46.71,47,47,0.957,0.03365 +VBS46020-6296STDY10244574,40.84,41,41,41.04,41,41,40.9,41,41,41.67,42,42,39.73,40,41,40.59,41,41,0.958,0.03382 +VBS46021-6296STDY10244575,42.06,42,42,42.01,42,42,42.02,42,43,43.37,43,43,40.93,41,42,41.86,42,42,0.957,0.03365 +VBS46022-6296STDY10244576,43.49,44,44,43.64,44,44,43.52,44,43,44.97,45,45,42.1,42,43,42.87,43,43,0.956,0.03397 +VBS46025-6296STDY10244579,34.97,35,34,34.7,35,34,35.02,35,34,36.37,36,35,34.05,34,33,34.75,35,34,0.957,0.03357 +VBS46026-6296STDY10244580,39.62,40,40,39.53,40,39,39.44,39,40,41.23,41,41,38.64,39,39,39.29,39,39,0.956,0.03364 +VBS46027-6296STDY10244581,41.05,41,41,41.13,41,41,40.83,41,41,42.48,42,42,40.12,40,40,40.61,41,41,0.956,0.03361 +VBS46028-6296STDY10244582,37.19,37,37,37.45,37,37,37.1,37,37,38.67,38,38,35.89,36,36,36.51,37,36,0.958,0.03385 +VBS46029-6296STDY10244583,28.2,28,28,28.11,28,28,28.11,28,27,28.94,29,28,27.83,28,27,28.06,28,28,0.956,0.03355 +VBS46030-6296STDY10244584,21.85,22,21,21.85,22,21,21.74,22,21,22.7,23,22,21.39,21,21,21.57,21,21,0.955,0.0337 +VBS46031-6296STDY10244585,42.79,43,43,42.82,43,43,42.63,43,43,44.28,44,45,41.68,42,43,42.4,43,42,0.957,0.03365 +VBS46032-6296STDY10244586,33.1,33,32,32.97,33,32,33.08,33,32,33.61,33,33,32.93,33,32,33.0,33,32,0.956,0.03359 +VBS46033-6296STDY10244587,35.39,35,35,35.44,35,35,35.06,35,35,36.44,36,36,34.88,35,36,35.19,35,35,0.957,0.03364 +VBS46034-6296STDY10244588,26.86,27,27,26.73,27,26,26.69,27,27,27.82,28,27,26.65,27,27,26.51,26,26,0.956,0.03359 +VBS46035-6296STDY10244589,39.34,39,39,39.62,40,39,39.17,39,39,40.7,40,40,38.05,38,38,38.85,39,39,0.956,0.03361 +VBS46036-6296STDY10244590,34.64,35,34,34.85,35,35,34.64,35,34,35.72,36,35,33.49,34,34,34.23,34,34,0.958,0.03384 +VBS46037-6296STDY10244591,23.52,23,23,23.39,23,23,23.62,23,23,24.02,24,23,23.33,23,23,23.19,23,23,0.956,0.03383 +VBS46038-6296STDY10244592,37.96,38,38,37.97,38,38,38.0,38,38,39.14,39,39,36.96,37,37,37.6,38,38,0.958,0.03385 +VBS46039-6296STDY10244593,47.14,47,47,47.53,48,47,47.11,47,47,48.72,49,48,45.45,46,46,46.39,47,47,0.958,0.03386 +VBS46040-6296STDY10244594,35.93,36,35,36.11,36,36,35.95,36,35,36.64,36,36,35.13,35,35,35.58,36,36,0.958,0.03385 +VBS46041-6296STDY10244595,34.3,34,34,34.33,34,34,34.4,34,34,35.73,35,35,33.3,33,34,33.52,34,34,0.957,0.03379 +VBS46042-6296STDY9478649,27.67,27,26,28.12,28,27,27.85,27,26,28.62,28,27,26.2,26,25,26.94,26,26,0.957,0.03381 +VBS46043-6296STDY10244597,37.43,38,38,37.68,38,38,37.42,37,37,38.97,39,39,35.78,36,37,36.91,37,37,0.958,0.03379 +VBS46044-6296STDY10244598,49.98,50,51,50.42,51,51,49.96,50,51,51.74,52,51,47.8,49,49,49.43,50,50,0.959,0.03395 +VBS46045-6296STDY10244599,43.75,44,44,43.58,44,44,43.64,44,44,45.25,45,45,43.01,43,44,43.32,43,44,0.957,0.03372 +VBS46046-6296STDY10244600,56.4,57,57,56.55,57,57,56.05,57,57,58.26,58,58,54.95,56,56,56.08,57,56,0.958,0.03371 +VBS46047-6296STDY10244601,56.36,57,57,56.19,57,57,55.97,56,57,58.95,59,59,54.91,56,56,55.86,56,56,0.958,0.03371 +VBS46048-6296STDY10244602,20.64,20,20,20.49,20,20,20.58,20,20,21.06,21,20,20.67,20,20,20.52,20,20,0.955,0.03376 +VBS46049-6296STDY10244603,35.86,36,36,35.7,36,35,35.89,36,36,37.55,37,37,34.98,35,35,35.13,35,35,0.958,0.03383 +VBS46050-6296STDY9478657,9.15,9,8,9.13,9,8,9.14,9,8,9.34,9,9,9.13,9,8,9.03,9,8,0.951,0.03565 +VBS46051-6296STDY10244605,57.66,58,58,57.78,58,58,57.65,58,58,61.13,61,61,55.03,56,57,56.24,57,57,0.959,0.03397 +VBS46052-6296STDY10244606,38.21,38,38,38.49,38,38,38.23,38,38,40.19,40,39,36.47,36,36,37.19,37,37,0.958,0.03385 +VBS46053-6296STDY10244607,57.27,58,58,57.0,57,58,56.93,57,58,59.71,60,60,56.05,57,57,56.86,57,58,0.958,0.03372 +VBS46054-6296STDY10244608,63.42,64,64,63.28,64,64,63.21,64,63,65.5,65,65,62.21,63,63,62.94,63,63,0.958,0.03372 +VBS46055-6296STDY10244609,44.42,45,45,44.44,45,44,44.35,44,45,45.89,46,46,43.28,44,44,44.03,44,44,0.957,0.03365 +VBS46056-6296STDY10244610,36.54,36,36,36.31,36,36,36.5,36,36,37.69,37,37,35.88,36,36,36.4,36,36,0.956,0.03358 +VBS46057-6296STDY10244611,38.11,38,38,38.22,38,38,37.79,38,38,39.17,39,39,37.32,38,38,38.01,38,38,0.956,0.03396 +VBS46059-6296STDY9478666,11.04,11,10,11.02,11,10,11.0,11,10,11.17,11,10,11.05,11,10,10.97,11,10,0.952,0.03534 +VBS46060-6296STDY10244614,36.55,36,36,36.67,37,37,36.37,36,36,37.49,37,37,35.98,36,36,36.13,36,36,0.956,0.03361 +VBS46061-6296STDY10244615,58.39,59,59,58.12,59,59,58.13,59,59,60.03,60,60,57.86,59,60,58.05,59,59,0.958,0.0338 +VBS46063-6296STDY10244617,40.36,41,41,40.48,41,41,40.28,40,41,42.23,42,42,38.72,39,40,39.78,40,40,0.957,0.03364 +VBS46064-6296STDY10244618,37.57,38,38,37.62,38,37,37.75,38,38,38.88,39,38,36.4,37,37,36.89,37,36,0.958,0.03388 +VBS46065-6296STDY10244619,40.18,40,40,40.17,40,40,39.75,40,40,41.47,41,41,39.73,40,40,39.94,40,40,0.958,0.0339 +VBS46066-6296STDY9478673,24.52,24,24,24.72,25,24,24.56,24,24,25.21,25,24,23.6,23,23,24.23,24,24,0.955,0.03359 +VBS46067-6296STDY9478674,10.99,11,10,11.03,11,10,10.96,11,10,11.17,11,10,10.83,10,10,10.93,11,10,0.952,0.03507 +VBS46068-6296STDY10244622,56.11,56,56,56.49,57,56,56.16,56,56,58.2,58,57,53.85,55,55,55.25,56,56,0.959,0.03395 +VBS46069-6296STDY10244625,32.76,33,33,32.72,33,32,32.93,33,33,33.77,34,33,32.0,32,32,32.2,32,32,0.957,0.03378 +VBS46070-6296STDY10244626,32.16,32,32,31.66,31,31,31.99,32,32,33.34,33,33,32.32,32,32,31.92,32,32,0.955,0.03388 +VBS46071-6296STDY10244627,32.39,32,32,32.06,32,32,32.37,32,32,33.59,33,33,32.19,32,33,31.88,32,32,0.957,0.03381 +VBS46072-6296STDY10244628,28.88,29,29,28.69,29,28,28.79,29,29,29.72,30,29,28.79,29,29,28.55,28,29,0.957,0.03376 +VBS46073-6296STDY10244629,35.94,36,36,35.97,36,36,35.8,36,36,37.3,37,37,35.12,35,36,35.42,36,35,0.958,0.0338 +VBS46074-6296STDY10244630,36.69,37,37,36.6,37,36,36.54,37,37,37.93,38,37,36.16,36,37,36.23,36,37,0.958,0.03387 +VBS46075-6296STDY10244631,30.67,31,31,30.73,31,31,30.76,31,30,31.18,31,31,30.03,30,31,30.49,31,31,0.957,0.03379 +VBS46076-6296STDY10244632,39.07,39,39,38.92,39,39,38.99,39,39,40.07,40,40,38.77,39,40,38.71,39,39,0.958,0.0338 +VBS46077-6296STDY10244633,35.81,36,36,35.84,36,36,35.7,36,36,36.79,37,36,35.11,35,35,35.55,36,36,0.956,0.03358 +VBS46078-6296STDY9478687,24.23,23,21,24.78,24,22,24.44,23,21,24.77,23,22,22.87,21,20,23.6,23,21,0.956,0.03397 +VBS46079-6296STDY10244635,31.96,32,32,31.79,32,31,31.93,32,31,32.25,32,32,32.18,32,32,31.77,32,32,0.958,0.0338 +VBS46080-6296STDY10244636,24.46,24,24,24.5,24,24,24.3,24,24,25.62,25,25,23.72,24,24,24.08,24,24,0.956,0.03387 +VBS46081-6296STDY10244637,33.99,34,34,34.1,34,34,33.93,34,34,35.61,36,35,33.09,33,34,32.99,33,33,0.957,0.03379 +VBS46082-6296STDY10244638,32.72,33,33,32.85,33,33,32.39,32,32,34.18,34,34,31.73,32,32,32.4,32,32,0.956,0.03363 +VBS46083-6296STDY9478692,23.95,24,23,24.19,24,24,23.96,24,23,24.76,24,24,22.78,22,22,23.71,23,23,0.955,0.03352 +VBS46084-6296STDY9478693,33.94,34,34,34.32,34,34,34.06,34,34,34.98,35,34,32.34,32,32,33.46,33,34,0.957,0.03382 +VBS46085-6296STDY10244641,30.56,30,30,30.77,31,30,30.51,30,30,31.72,31,31,29.61,30,30,29.9,30,30,0.957,0.0338 +VBS46086-6296STDY10244642,26.24,26,26,26.04,26,25,26.16,26,25,27.09,27,26,26.2,26,26,25.85,26,25,0.957,0.03378 +VBS46087-6296STDY9478696,31.12,30,29,31.8,31,30,31.26,30,29,32.52,32,31,28.77,28,27,30.4,30,29,0.957,0.03378 +VBS46088-6296STDY9478697,39.63,39,38,39.95,39,38,39.68,39,38,40.6,40,38,38.29,38,37,39.19,39,38,0.957,0.03358 +VBS46089-6296STDY10244645,33.11,33,33,32.92,33,33,33.05,33,33,34.23,34,33,32.51,32,32,32.89,33,33,0.956,0.03359 +VBS46090-6296STDY10244646,31.71,32,31,31.34,31,31,31.46,31,31,32.76,33,32,31.8,32,32,31.55,31,31,0.956,0.03365 +VBS46091-6296STDY10244647,38.76,39,38,38.76,38,38,38.67,38,38,39.75,39,38,38.14,38,38,38.37,38,38,0.956,0.03394 +VBS46092-6296STDY10244648,41.95,42,41,41.38,41,41,41.63,41,41,41.83,42,41,43.41,43,43,42.23,42,41,0.957,0.03365 +VBS46093-6296STDY10244649,15.22,15,15,15.2,15,14,15.15,15,14,15.5,15,15,15.16,15,15,15.12,15,14,0.952,0.03478 +VBS46094-6296STDY10244650,34.55,34,34,34.41,34,34,34.38,34,34,35.1,35,34,34.79,35,34,34.22,34,34,0.957,0.03359 +VBS46095-6296STDY10244651,30.42,30,30,30.38,30,30,30.38,30,30,31.67,31,31,29.87,30,30,29.73,30,30,0.957,0.03378 +VBS46096-6296STDY10244652,36.61,37,36,36.42,36,36,36.44,36,36,37.66,37,37,36.47,36,37,36.21,36,37,0.958,0.03386 +VBS46097-6296STDY10244653,35.88,36,36,35.65,36,36,35.87,36,36,37.74,38,37,35.12,35,36,35.04,35,35,0.958,0.03587 +VBS46098-6296STDY9478707,28.04,28,27,28.17,28,27,28.1,28,27,28.81,28,27,27.23,27,27,27.63,27,27,0.957,0.03378 +VBS46099-6296STDY10244655,31.21,31,31,30.85,31,31,31.06,31,31,32.7,33,32,30.82,31,31,30.84,31,31,0.956,0.03357 +VBS46100-6296STDY10244656,32.32,31,29,31.96,31,29,31.98,31,28,33.38,32,30,32.76,32,30,31.9,31,29,0.955,0.03362 +VBS46101-6296STDY10244657,36.36,36,36,36.32,36,36,36.47,36,36,37.88,38,37,35.37,35,36,35.55,35,36,0.958,0.03379 +VBS46102-6296STDY10244658,40.05,40,40,39.98,40,40,39.69,40,39,41.7,41,41,39.55,39,39,39.42,39,39,0.957,0.03364 +VBS46103-6296STDY10244659,27.05,27,26,26.95,27,26,27.15,27,26,27.61,27,27,26.75,27,27,26.71,26,26,0.957,0.03377 +VBS46104-6296STDY10244660,31.75,32,31,31.61,31,31,31.61,31,31,32.47,32,32,31.78,32,32,31.42,31,31,0.956,0.03358 +VBS46105-6296STDY10244661,30.09,30,30,30.13,30,30,30.0,30,30,30.84,31,30,29.58,29,29,29.86,30,30,0.957,0.03384 +VBS46106-6296STDY10244662,34.09,34,34,33.91,34,34,33.86,34,33,34.94,35,34,34.15,34,34,33.79,34,33,0.956,0.03359 +VBS46107-6296STDY10244663,32.54,32,32,32.46,32,32,32.35,32,32,33.35,33,33,32.28,32,32,32.33,32,32,0.956,0.03361 +VBS46108-6296STDY10244664,39.0,39,39,39.21,39,39,38.97,39,38,40.17,40,40,37.93,38,38,38.43,38,38,0.958,0.03386 +VBS46109-6296STDY10244665,38.48,38,38,38.4,38,38,38.41,38,38,39.27,39,38,38.09,38,39,38.22,38,39,0.956,0.03398 +VBS46110-6296STDY10244666,41.23,41,41,40.9,41,41,40.68,41,41,42.78,43,42,41.56,42,42,40.68,41,40,0.957,0.03366 +VBS46111-6296STDY10244667,27.5,27,27,27.72,28,27,27.41,27,27,28.56,28,28,26.59,26,27,26.96,27,27,0.956,0.03383 +VBS46112-6296STDY10244668,39.79,40,39,39.91,40,40,39.64,39,39,40.43,40,40,39.37,39,39,39.53,39,39,0.957,0.03361 +VBS46113-6296STDY10244669,39.68,40,39,39.75,40,39,39.54,39,39,40.62,40,40,39.08,39,39,39.33,39,39,0.957,0.03362 +VBS46114-6296STDY10244670,30.77,31,30,30.8,31,30,30.76,31,30,31.76,32,31,30.14,30,30,30.27,30,30,0.957,0.03387 +VBS46115-6296STDY10244671,39.69,40,40,39.8,40,40,39.44,39,40,40.82,41,40,38.99,39,40,39.36,39,40,0.956,0.03397 +VBS46116-6296STDY10244672,55.24,56,56,55.09,55,56,54.54,55,56,57.4,58,58,55.03,56,57,54.44,55,55,0.958,0.03375 +VBS46117-6296STDY10244673,39.96,40,40,40.22,40,40,39.82,40,40,41.55,41,41,38.83,39,39,39.08,39,39,0.958,0.03387 +VBS46118-6296STDY10244674,40.84,41,41,40.92,41,41,40.58,41,40,42.42,42,42,39.9,40,41,40.28,40,41,0.958,0.03383 +VBS46119-6296STDY10244675,31.79,32,31,31.87,32,31,31.72,32,31,32.68,32,32,31.13,31,31,31.41,31,31,0.957,0.0338 +VBS46120-6296STDY10244676,28.98,29,29,28.86,29,28,28.79,29,29,29.79,30,29,28.81,29,29,28.77,29,28,0.955,0.03391 +VBS46121-6296STDY9478730,28.57,28,27,28.66,28,27,28.56,28,27,28.99,28,27,28.3,27,27,28.23,28,27,0.957,0.03357 +VBS46122-6296STDY10244678,27.78,28,27,27.72,27,27,27.9,28,27,28.42,28,28,27.27,27,27,27.49,27,27,0.957,0.03379 +VBS46123-6296STDY10244679,34.59,34,34,34.32,34,34,34.46,34,34,35.79,35,35,34.38,34,34,34.18,34,34,0.956,0.0339 +VBS46124-6296STDY10244680,44.94,45,45,44.49,44,44,44.82,45,45,46.07,46,46,45.0,45,45,44.64,45,45,0.957,0.03365 +VBS46125-6296STDY10244681,39.58,39,39,39.57,39,39,39.13,39,38,40.86,41,40,39.21,39,39,39.3,39,39,0.955,0.03396 +VBS46126-6296STDY10244682,31.94,32,31,31.86,32,31,31.76,32,31,33.21,33,33,31.42,31,31,31.45,31,31,0.956,0.03358 +VBS46127-6296STDY10244683,37.88,38,38,37.86,38,38,37.82,38,38,39.68,40,39,36.72,37,37,37.14,37,37,0.958,0.03382 +VBS46128-6296STDY10244684,24.15,24,23,24.1,24,23,23.98,24,23,24.86,25,24,23.9,24,24,23.96,24,23,0.956,0.03385 +VBS46129-6296STDY10244685,29.27,29,29,29.04,29,29,29.26,29,29,30.63,30,30,28.67,28,28,28.78,29,28,0.957,0.03382 +VBS46130-6296STDY10244686,31.12,31,31,30.63,31,30,30.7,31,30,32.78,33,32,31.22,31,31,30.77,31,31,0.956,0.03359 +VBS46131-6296STDY10244687,29.22,29,28,29.06,29,28,29.42,29,28,30.07,30,29,28.8,28,28,28.65,28,28,0.957,0.0338 +VBS46132-6296STDY10244688,28.89,29,28,28.96,29,28,28.87,29,28,29.57,29,29,28.53,28,28,28.39,28,28,0.957,0.0338 +VBS46133-6296STDY10244689,27.82,28,27,27.37,27,27,27.7,27,27,28.2,28,27,28.59,28,28,27.65,27,27,0.956,0.0336 +VBS46134-6296STDY10244690,29.63,29,29,29.05,29,28,29.65,29,29,30.28,30,29,30.12,30,30,29.45,29,29,0.956,0.03355 +VBS46135-6296STDY10244691,32.92,32,31,32.68,32,32,32.89,32,31,34.39,34,33,32.54,32,31,32.18,32,31,0.956,0.03361 +VBS46136-6296STDY10244692,18.36,18,18,18.09,18,17,18.2,18,17,18.8,18,18,18.76,18,18,18.22,18,18,0.955,0.03387 +VBS46137-6296STDY10244693,31.08,30,29,31.23,30,29,31.12,30,29,30.89,30,29,31.0,30,29,31.01,30,29,0.957,0.03383 +VBS46138-6296STDY10244694,34.04,34,34,33.98,34,34,33.97,34,33,35.47,35,34,33.31,33,34,33.38,33,33,0.957,0.03381 +VBS46139-6296STDY10244695,32.96,33,33,33.0,33,33,32.78,33,33,33.89,34,33,32.6,32,33,32.52,32,32,0.958,0.03387 +VBS46140-6296STDY10244696,31.86,32,31,32.29,32,31,31.84,31,31,32.34,32,31,30.81,31,30,31.6,31,31,0.958,0.03377 +VBS46141-6296STDY9478750,16.3,16,15,16.25,16,15,16.38,16,15,16.72,16,15,16.22,16,15,15.87,15,15,0.955,0.03437 +VBS46142-6296STDY10244698,32.75,32,31,32.75,32,31,32.83,32,30,32.56,32,30,33.1,32,31,32.49,32,31,0.957,0.03385 +VBS46143-6296STDY10244699,33.15,33,33,33.29,33,33,33.2,33,33,34.05,34,33,32.37,32,32,32.61,33,33,0.957,0.03378 +VBS46144-6296STDY10244700,30.18,30,30,30.12,30,30,30.03,30,30,31.28,31,31,29.7,30,30,29.78,30,30,0.957,0.03379 +VBS46145-6296STDY9478754,20.5,20,19,20.67,20,19,20.56,20,19,20.72,20,19,20.06,19,19,20.29,20,19,0.953,0.03403 +VBS46146-6296STDY9478755,29.74,29,28,30.2,29,28,29.63,29,28,30.22,29,28,28.91,28,27,29.35,29,27,0.957,0.03381 +VBS46147-6296STDY10244703,28.58,28,28,28.29,28,28,28.37,28,28,29.37,29,28,28.81,28,28,28.33,28,28,0.956,0.03354 +VBS46148-6296STDY10244704,31.45,31,31,31.35,31,31,31.57,31,31,32.63,32,32,30.76,31,31,30.8,31,31,0.957,0.03377 +VBS46149-6296STDY10244705,29.1,29,28,29.34,29,28,29.23,29,28,30.06,29,28,27.87,27,27,28.6,28,27,0.957,0.03379 +VBS46150-6296STDY10244706,20.8,20,20,20.7,20,20,20.86,20,20,21.32,21,20,20.65,20,20,20.44,20,20,0.956,0.03391 +VBS46151-6296STDY10244707,24.77,24,24,24.71,24,24,24.61,24,24,25.36,25,24,24.69,24,24,24.6,24,24,0.955,0.0336 +VBS46152-6296STDY10244708,32.49,32,32,32.36,32,32,32.22,32,32,33.6,33,33,32.24,32,32,32.15,32,32,0.956,0.03356 +VBS46153-6296STDY10244709,29.23,29,29,28.99,29,29,29.2,29,29,29.9,30,29,29.23,29,29,28.96,29,29,0.956,0.03359 +VBS46154-6296STDY9478763,22.68,22,21,22.87,22,22,22.64,22,21,23.02,23,22,22.21,22,21,22.45,22,21,0.956,0.03394 +VBS46155-6296STDY10244711,24.16,24,23,24.19,24,23,24.08,24,23,24.95,25,24,23.88,23,23,23.63,23,23,0.956,0.03396 +VBS46156-6296STDY10244712,118.65,121,121,118.98,121,121,118.33,120,121,121.77,122,122,115.98,120,122,117.72,120,120,0.961,0.03411 +VBS46157-6296STDY10244713,25.58,25,25,25.45,25,25,25.64,25,25,26.32,26,25,25.37,25,25,25.11,25,24,0.957,0.03381 +VBS46158-6296STDY10244714,36.8,37,38,36.79,37,38,36.25,37,38,38.96,39,39,35.64,37,38,36.49,37,39,0.95,0.03358 +VBS46160-6296STDY10244716,28.45,28,28,28.36,28,28,28.24,28,28,29.21,29,28,28.3,28,28,28.27,28,28,0.956,0.0336 +VBS46161-6296STDY10244717,38.22,38,38,38.25,38,38,38.05,38,38,39.23,39,39,37.73,38,38,37.79,38,38,0.957,0.03361 +VBS46162-6296STDY10244718,24.72,25,24,24.86,25,24,24.67,24,24,25.57,25,25,24.07,24,24,24.21,24,24,0.957,0.03379 +VBS46163-6296STDY10244721,29.39,29,29,29.51,29,29,29.38,29,29,30.52,30,30,28.5,29,29,28.8,29,29,0.957,0.03376 +VBS46164-6296STDY10244722,35.79,36,36,35.61,36,36,35.65,36,36,37.05,37,37,35.46,35,35,35.26,35,35,0.957,0.03358 +VBS46165-6296STDY10244723,39.2,39,39,39.39,39,39,38.79,39,39,40.44,40,40,38.57,39,39,38.76,39,38,0.957,0.03367 +VBS46166-6296STDY10244724,26.63,26,26,26.52,26,26,26.52,26,26,26.97,27,26,26.58,26,27,26.7,26,26,0.955,0.03352 +VBS46168-6296STDY9478779,17.34,17,16,17.35,17,16,17.46,17,16,17.75,17,16,16.99,16,15,17.04,16,16,0.954,0.03396 +VBS46170-6296STDY10244727,36.15,36,35,36.26,36,35,36.07,36,35,37.16,37,36,35.31,35,34,35.76,35,35,0.956,0.03363 +VBS46171-6296STDY10244728,31.95,32,32,31.97,32,32,32.18,32,32,32.76,32,32,31.3,31,31,31.29,31,31,0.957,0.03378 +VBS46172-6296STDY9478782,25.51,24,23,25.62,24,23,25.5,24,22,25.76,24,23,25.37,24,23,25.14,24,23,0.955,0.03366 +VBS46173-6296STDY9478783,28.84,26,21,30.4,27,22,29.01,26,21,29.66,26,22,25.82,22,19,27.77,25,21,0.956,0.034 +VBS46174-6296STDY10244731,32.13,32,32,31.84,32,32,31.88,32,32,33.84,34,33,31.58,31,31,31.76,32,31,0.957,0.03362 +VBS46175-6296STDY9478785,18.43,18,17,18.7,18,17,18.52,18,17,18.76,18,17,17.76,17,16,18.11,18,17,0.956,0.03414 +VBS46176-6296STDY10244733,24.01,23,23,23.95,23,23,24.07,23,23,24.5,24,24,23.75,23,23,23.78,23,23,0.957,0.0337 +VBS46177-6296STDY10244734,30.57,30,30,30.28,30,30,30.35,30,30,32.09,32,32,30.11,30,30,30.25,30,30,0.956,0.03355 +VBS46178-6296STDY10244735,29.16,29,29,29.07,29,28,29.16,29,29,30.54,30,30,28.5,28,29,28.42,28,28,0.957,0.03378 +VBS46179-6296STDY10244736,41.43,41,41,41.79,42,42,41.52,41,41,42.91,43,42,39.89,40,40,40.47,41,40,0.958,0.03383 +VBS46180-6296STDY9478790,27.45,27,26,28.0,27,26,27.43,27,26,27.99,27,26,26.13,25,24,27.21,27,26,0.955,0.03357 +VBS46181-6296STDY10244738,37.58,37,37,37.67,37,37,37.3,37,37,38.8,39,38,36.84,37,37,37.24,37,37,0.956,0.0336 +VBS46182-6296STDY10244739,34.23,33,30,34.34,33,30,34.19,33,30,34.02,33,30,34.2,32,30,34.39,33,30,0.958,0.03393 +VBS46183-6296STDY9478793,28.95,28,27,29.58,29,27,29.16,28,27,29.98,29,27,27.12,26,25,28.06,27,26,0.954,0.03397 +VBS46184-6296STDY10244741,40.2,40,40,40.35,40,40,39.87,40,40,41.49,41,41,39.27,39,40,39.92,40,40,0.957,0.03364 +VBS46185-6296STDY10244742,37.54,38,38,37.23,37,37,37.36,37,37,38.8,39,39,37.14,37,38,37.39,37,38,0.957,0.03361 +VBS46186-6296STDY10244743,38.08,38,38,37.73,37,37,38.0,38,37,39.1,39,38,38.08,38,38,37.74,38,38,0.957,0.03366 +VBS46187-6296STDY9478797,31.02,30,30,31.43,31,30,30.97,30,30,31.47,31,30,30.07,30,30,30.75,30,30,0.958,0.0338 +VBS46188-6296STDY9478798,33.01,33,32,33.28,33,32,32.97,33,32,33.35,33,32,32.36,32,32,32.86,33,32,0.958,0.03381 +VBS46189-6296STDY9478799,17.99,17,14,18.68,17,15,17.97,17,15,18.17,17,14,16.8,15,13,17.67,16,14,0.954,0.03431 +VBS46190-6296STDY9478800,33.69,34,33,34.08,34,34,33.65,34,33,34.39,34,34,32.53,32,32,33.4,33,33,0.956,0.03355 +VBS46192-6296STDY9478801,20.39,19,18,20.83,20,19,20.36,19,18,20.77,20,18,19.54,18,17,20.03,19,18,0.954,0.03387 +VBS46193-6296STDY10244749,28.05,28,27,28.18,28,28,28.04,28,28,29.4,29,28,26.87,27,27,27.48,27,27,0.957,0.03377 +VBS46194-6296STDY10244750,31.1,31,30,31.16,31,30,30.96,31,30,31.8,31,30,30.61,30,30,30.91,31,30,0.956,0.03359 +VBS46195-6296STDY10244751,33.61,33,33,33.31,33,33,33.34,33,33,35.37,35,35,32.93,33,33,33.33,33,33,0.956,0.03356 +VBS46196-6296STDY10244752,47.5,48,47,47.63,48,48,47.36,47,47,49.55,49,49,46.18,47,47,46.53,47,47,0.959,0.03387 +VBS46197-6296STDY10244753,45.85,46,45,46.01,46,45,46.14,46,45,47.77,47,47,44.18,44,44,44.6,44,44,0.958,0.03387 +VBS46198-6296STDY9478807,34.31,34,33,34.5,34,33,34.5,34,33,34.88,34,34,33.46,33,33,33.87,34,33,0.958,0.03386 +VBS46199-6296STDY10244755,40.36,40,41,40.34,40,40,40.22,40,41,42.19,42,42,39.22,40,40,39.72,40,40,0.958,0.03382 +VBS46200-6296STDY10244756,39.17,39,39,38.79,39,39,39.02,39,39,40.98,41,41,38.61,39,39,38.69,39,38,0.957,0.03363 +VBS46201-6296STDY10244757,35.86,36,36,36.06,36,36,35.85,36,36,37.81,38,37,34.23,34,34,34.92,35,35,0.958,0.03384 +VBS46202-6296STDY10244758,31.32,31,31,31.34,31,31,30.88,31,31,32.76,33,32,30.78,31,31,30.89,31,31,0.955,0.03393 +VBS46203-6296STDY10244759,35.76,36,36,35.88,36,35,35.78,36,36,37.41,37,37,34.51,35,35,34.92,35,35,0.958,0.03386 +VBS46204-6296STDY10244760,38.65,39,38,38.57,38,38,38.6,38,38,39.15,39,39,38.39,38,39,38.6,38,38,0.957,0.03363 +VBS46205-6296STDY10244761,39.33,39,39,39.14,39,39,39.03,39,39,40.71,41,41,38.74,39,39,39.19,39,39,0.957,0.03365 +VBS46206-6296STDY10244762,40.58,41,41,40.65,41,40,40.55,41,40,42.95,43,43,38.93,39,40,39.49,40,40,0.958,0.03385 +VBS46207-6296STDY10244763,34.64,35,35,34.36,34,34,34.66,35,34,36.07,36,35,34.07,34,34,34.07,34,34,0.956,0.03361 diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv new file mode 100644 index 000000000..cb6edee5d --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_accession_data.csv @@ -0,0 +1,220 @@ +sample_id,run_ena,analysis_ena +VBS45974-6296STDY9478582,, +VBS45975-6296STDY10244530,, +VBS45976-6296STDY9478584,, +VBS45979-6296STDY9478587,, +VBS45982-6296STDY9478589,, +VBS45983-6296STDY10244537,, +VBS45984-6296STDY10244538,, +VBS45985-6296STDY10244539,, +VBS45986-6296STDY10244540,, +VBS45987-6296STDY10244541,, +VBS45988-6296STDY10244542,, +VBS45989-6296STDY10244543,, +VBS45991-6296STDY10244545,, +VBS45992-6296STDY10244546,, +VBS45993-6296STDY10244547,, +VBS45994-6296STDY10244548,, +VBS45995-6296STDY10244549,, +VBS45996-6296STDY10244550,, +VBS45997-6296STDY10244551,, +VBS45998-6296STDY10244552,, +VBS45999-6296STDY10244553,, +VBS46000-6296STDY10244554,, +VBS46001-6296STDY10244555,, +VBS46002-6296STDY10244556,, +VBS46003-6296STDY10244557,, +VBS46004-6296STDY10244558,, +VBS46005-6296STDY9478612,, +VBS46006-6296STDY10244560,, +VBS46007-6296STDY10244561,, +VBS46008-6296STDY10244562,, +VBS46009-6296STDY10244563,, +VBS46010-6296STDY10244564,, +VBS46011-6296STDY10244565,, +VBS46012-6296STDY10244566,, +VBS46013-6296STDY10244567,, +VBS46014-6296STDY10244568,, +VBS46016-6296STDY10244570,, +VBS46017-6296STDY10244571,, +VBS46019-6296STDY10244573,, +VBS46020-6296STDY10244574,, +VBS46021-6296STDY10244575,, +VBS46022-6296STDY10244576,, +VBS46025-6296STDY10244579,, +VBS46026-6296STDY10244580,, +VBS46027-6296STDY10244581,, +VBS46028-6296STDY10244582,, +VBS46029-6296STDY10244583,, +VBS46030-6296STDY10244584,, +VBS46031-6296STDY10244585,, +VBS46032-6296STDY10244586,, +VBS46033-6296STDY10244587,, +VBS46034-6296STDY10244588,, +VBS46035-6296STDY10244589,, +VBS46036-6296STDY10244590,, +VBS46037-6296STDY10244591,, +VBS46038-6296STDY10244592,, +VBS46039-6296STDY10244593,, +VBS46040-6296STDY10244594,, +VBS46041-6296STDY10244595,, +VBS46042-6296STDY9478649,, +VBS46043-6296STDY10244597,, +VBS46044-6296STDY10244598,, +VBS46045-6296STDY10244599,, +VBS46046-6296STDY10244600,, +VBS46047-6296STDY10244601,, +VBS46048-6296STDY10244602,, +VBS46049-6296STDY10244603,, +VBS46050-6296STDY9478657,, +VBS46051-6296STDY10244605,, +VBS46052-6296STDY10244606,, +VBS46053-6296STDY10244607,, +VBS46054-6296STDY10244608,, +VBS46055-6296STDY10244609,, +VBS46056-6296STDY10244610,, +VBS46057-6296STDY10244611,, +VBS46059-6296STDY9478666,, +VBS46060-6296STDY10244614,, +VBS46061-6296STDY10244615,, +VBS46063-6296STDY10244617,, +VBS46064-6296STDY10244618,, +VBS46065-6296STDY10244619,, +VBS46066-6296STDY9478673,, +VBS46067-6296STDY9478674,, +VBS46068-6296STDY10244622,, +VBS46069-6296STDY10244625,, +VBS46070-6296STDY10244626,, +VBS46071-6296STDY10244627,, +VBS46072-6296STDY10244628,, +VBS46073-6296STDY10244629,, +VBS46074-6296STDY10244630,, +VBS46075-6296STDY10244631,, +VBS46076-6296STDY10244632,, +VBS46077-6296STDY10244633,, +VBS46078-6296STDY9478687,, +VBS46079-6296STDY10244635,, +VBS46080-6296STDY10244636,, +VBS46081-6296STDY10244637,, +VBS46082-6296STDY10244638,, +VBS46083-6296STDY9478692,, +VBS46084-6296STDY9478693,, +VBS46085-6296STDY10244641,, +VBS46086-6296STDY10244642,, +VBS46087-6296STDY9478696,, +VBS46088-6296STDY9478697,, +VBS46089-6296STDY10244645,, +VBS46090-6296STDY10244646,, +VBS46091-6296STDY10244647,, +VBS46092-6296STDY10244648,, +VBS46093-6296STDY10244649,, +VBS46094-6296STDY10244650,, +VBS46095-6296STDY10244651,, +VBS46096-6296STDY10244652,, +VBS46097-6296STDY10244653,, +VBS46098-6296STDY9478707,, +VBS46099-6296STDY10244655,, +VBS46100-6296STDY10244656,, +VBS46101-6296STDY10244657,, +VBS46102-6296STDY10244658,, +VBS46103-6296STDY10244659,, +VBS46104-6296STDY10244660,, +VBS46105-6296STDY10244661,, +VBS46106-6296STDY10244662,, +VBS46107-6296STDY10244663,, +VBS46108-6296STDY10244664,, +VBS46109-6296STDY10244665,, +VBS46110-6296STDY10244666,, +VBS46111-6296STDY10244667,, +VBS46112-6296STDY10244668,, +VBS46113-6296STDY10244669,, +VBS46114-6296STDY10244670,, +VBS46115-6296STDY10244671,, +VBS46116-6296STDY10244672,, +VBS46117-6296STDY10244673,, +VBS46118-6296STDY10244674,, +VBS46119-6296STDY10244675,, +VBS46120-6296STDY10244676,, +VBS46121-6296STDY9478730,, +VBS46122-6296STDY10244678,, +VBS46123-6296STDY10244679,, +VBS46124-6296STDY10244680,, +VBS46125-6296STDY10244681,, +VBS46126-6296STDY10244682,, +VBS46127-6296STDY10244683,, +VBS46128-6296STDY10244684,, +VBS46129-6296STDY10244685,, +VBS46130-6296STDY10244686,, +VBS46131-6296STDY10244687,, +VBS46132-6296STDY10244688,, +VBS46133-6296STDY10244689,, +VBS46134-6296STDY10244690,, +VBS46135-6296STDY10244691,, +VBS46136-6296STDY10244692,, +VBS46137-6296STDY10244693,, +VBS46138-6296STDY10244694,, +VBS46139-6296STDY10244695,, +VBS46140-6296STDY10244696,, +VBS46141-6296STDY9478750,, +VBS46142-6296STDY10244698,, +VBS46143-6296STDY10244699,, +VBS46144-6296STDY10244700,, +VBS46145-6296STDY9478754,, +VBS46146-6296STDY9478755,, +VBS46147-6296STDY10244703,, +VBS46148-6296STDY10244704,, +VBS46149-6296STDY10244705,, +VBS46150-6296STDY10244706,, +VBS46151-6296STDY10244707,, +VBS46152-6296STDY10244708,, +VBS46153-6296STDY10244709,, +VBS46154-6296STDY9478763,, +VBS46155-6296STDY10244711,, +VBS46156-6296STDY10244712,, +VBS46157-6296STDY10244713,, +VBS46158-6296STDY10244714,, +VBS46160-6296STDY10244716,, +VBS46161-6296STDY10244717,, +VBS46162-6296STDY10244718,, +VBS46163-6296STDY10244721,, +VBS46164-6296STDY10244722,, +VBS46165-6296STDY10244723,, +VBS46166-6296STDY10244724,, +VBS46168-6296STDY9478779,, +VBS46170-6296STDY10244727,, +VBS46171-6296STDY10244728,, +VBS46172-6296STDY9478782,, +VBS46173-6296STDY9478783,, +VBS46174-6296STDY10244731,, +VBS46175-6296STDY9478785,, +VBS46176-6296STDY10244733,, +VBS46177-6296STDY10244734,, +VBS46178-6296STDY10244735,, +VBS46179-6296STDY10244736,, +VBS46180-6296STDY9478790,, +VBS46181-6296STDY10244738,, +VBS46182-6296STDY10244739,, +VBS46183-6296STDY9478793,, +VBS46184-6296STDY10244741,, +VBS46185-6296STDY10244742,, +VBS46186-6296STDY10244743,, +VBS46187-6296STDY9478797,, +VBS46188-6296STDY9478798,, +VBS46189-6296STDY9478799,, +VBS46190-6296STDY9478800,, +VBS46192-6296STDY9478801,, +VBS46193-6296STDY10244749,, +VBS46194-6296STDY10244750,, +VBS46195-6296STDY10244751,, +VBS46196-6296STDY10244752,, +VBS46197-6296STDY10244753,, +VBS46198-6296STDY9478807,, +VBS46199-6296STDY10244755,, +VBS46200-6296STDY10244756,, +VBS46201-6296STDY10244757,, +VBS46202-6296STDY10244758,, +VBS46203-6296STDY10244759,, +VBS46204-6296STDY10244760,, +VBS46205-6296STDY10244761,, +VBS46206-6296STDY10244762,, +VBS46207-6296STDY10244763,, diff --git a/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv new file mode 100644 index 000000000..8f116bb46 --- /dev/null +++ b/tests/anoph/fixture/vo_adir_release_master_us_central1/v1.0/metadata/general/1278-VO-TH-KOBYLINSKI-VMF00153/wgs_snp_data.csv @@ -0,0 +1,220 @@ +sample_id,alignments_bam,alignments_bam_md5,snp_genotypes_vcf,snp_genotypes_vcf_md5,snp_genotypes_zarr,snp_genotypes_zarr_md5,pipeline_version +VBS45974-6296STDY9478582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.bam,1adeaa92579eed7a46af285f3ba77859,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.vcf.gz,f3a02b70a2043b08169a20c0411d6018,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45974-6296STDY9478582.zarr.zip,d20d2ee334391c43ff9e9004da373d4a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45976-6296STDY9478584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.bam,3a214cc9548bfd24f3515b91d5dcd590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.vcf.gz,5996c86ad1476d61bd0c9deedb636ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45976-6296STDY9478584.zarr.zip,d4feb50e9c6f7f5479d3dec2b3dbb99d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45979-6296STDY9478587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.bam,0395178efb2f000e752318f986ed6927,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.vcf.gz,7d15cf6fc8021ea1050058675495856b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45979-6296STDY9478587.zarr.zip,6689ace401a860f5caf447d59993ede5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45982-6296STDY9478589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.bam,4d02af58ac5e6dd0c1ddfab6710aa357,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.vcf.gz,1af5733ecd9b08a3a6fa19d2bed18a63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45982-6296STDY9478589.zarr.zip,af844acd11c529e064b49167845126d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46005-6296STDY9478612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.bam,7e33faf1a9061754b100779eb2257659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.vcf.gz,df0ad585f0aa8524272dc0226e08cb69,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46005-6296STDY9478612.zarr.zip,91fe787e239cdbedaaf91492279cd595,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46042-6296STDY9478649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.bam,21335991a81b36db69da82f14100bbb8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.vcf.gz,c92c9aae6e8b0d09d631fe6b0b9132c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46042-6296STDY9478649.zarr.zip,67f02bea13baac2a10a447cdcf33622c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46050-6296STDY9478657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.bam,5c0436449c775a41a79d4d0ce030ce2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.vcf.gz,eec32038bb540477c07728ad58b3cd5a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46050-6296STDY9478657.zarr.zip,78ee08e463b1ff7cbd0ff4800368a744,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46059-6296STDY9478666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.bam,25b60f4cee9ff401abead3f6c2af10d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.vcf.gz,22bc13ad852ace523e765fb5114cf109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46059-6296STDY9478666.zarr.zip,87801a969352d5ec457c556aa1be4662,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46066-6296STDY9478673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.bam,f9beda9cc872f58f64feb422ddd7ca9c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.vcf.gz,d00ed911cf21cfbd9f0a5fe06e54c4a2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46066-6296STDY9478673.zarr.zip,94b89991d9f14a88b4e2107e83e1206c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46067-6296STDY9478674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.bam,44c74b2f55b233c88147ad52204b7037,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.vcf.gz,db41bc5aae5eb6cea0ee0833a2cee348,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46067-6296STDY9478674.zarr.zip,b3681d5c32af45757c44ff2e49e17d2e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46078-6296STDY9478687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.bam,84c865d418d575d1aed5a74c661ef35a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.vcf.gz,13836660fee30b5727279fe34c50f16f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46078-6296STDY9478687.zarr.zip,19a415504831694c40c0caf93434db97,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46083-6296STDY9478692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.bam,c1abdfe0f4f8ead6e0b54e5cc1149f63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.vcf.gz,ec168a0a10a4a07ce00642b94d6f7ffb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46083-6296STDY9478692.zarr.zip,2148d715f5668cbbc76a40cd8f13db22,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46084-6296STDY9478693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.bam,305b52fa3fd9a4d8ab205b58835c68bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.vcf.gz,82bca00babe534261e72b14e41c1a5c4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46084-6296STDY9478693.zarr.zip,7f0d2ef0abd84315d8359ee7cb634343,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46087-6296STDY9478696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.bam,e2d265e27606b8d1d9bfbc213bc20daf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.vcf.gz,32cf8d4ed2ee3c1064ccc9f58d2ad8be,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46087-6296STDY9478696.zarr.zip,8cda96e768f8e1eb74efe9afa44c9fcb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46088-6296STDY9478697,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.bam,ea8599f6d144cdfc81255abe2baa3156,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.vcf.gz,a58cdbf4c289c29611fed3f4477e1fb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46088-6296STDY9478697.zarr.zip,95f9aa9f9e611e07c8ae352827a00c26,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46098-6296STDY9478707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.bam,968507ed9d40062caa67b95d71e531e5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.vcf.gz,9ea661e83011159fb67ad90653090e4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46098-6296STDY9478707.zarr.zip,3d67f677899e0d2c471c41bd0c0801c1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46121-6296STDY9478730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.bam,2231d7041de087be11e3dcccfdeb52ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.vcf.gz,366b958fbf56f0a1320bae070d13992a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46121-6296STDY9478730.zarr.zip,f0aa5221b5171f3de3b4f8a7d9b94b7c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46141-6296STDY9478750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.bam,963a424e97947791cdd405a8618804f5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.vcf.gz,242b3ebbea0c6b5d01d9e4e8cbb69753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46141-6296STDY9478750.zarr.zip,1a8a6651c7e8e4dbfd02cd9407ab78ad,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46145-6296STDY9478754,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.bam,a026da64d66ff1bf913bcdc59b294922,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.vcf.gz,01c3a14223910d945e6135a62ba211d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46145-6296STDY9478754.zarr.zip,95d1b74f79e3b2a89a0b9e0e1b43efb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46146-6296STDY9478755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.bam,0a3996860f3d1243f88c3e08c6661c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.vcf.gz,663c5a08f4278b78e9234cbccbcd576a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46146-6296STDY9478755.zarr.zip,3b98341aff8b64e5960177d426a60ad6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46154-6296STDY9478763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.bam,258219833ee54ccef96f6f75c1efd50f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.vcf.gz,16eebf76a5124af1dbc1913c415f5a84,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46154-6296STDY9478763.zarr.zip,1e0914e5d1c12b6fadc2123e7b718c1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46168-6296STDY9478779,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.bam,a343d02c32262c066d1fdce2003ff8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.vcf.gz,2651bf48845498f208b36fe621e0c065,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46168-6296STDY9478779.zarr.zip,d51383e84748673faef91371138efc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46172-6296STDY9478782,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.bam,3dfa83ce8e2b31d0861f4a06259e6e2b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.vcf.gz,e537c0ef1f1c71a05ec0d2f31367c82a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46172-6296STDY9478782.zarr.zip,293b89848694fdd6cda6a33fcf62fa05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46173-6296STDY9478783,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.bam,32bae64a174d1a9df7e993568484ab2a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.vcf.gz,02f56d6d9c3620255915581e707e0482,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46173-6296STDY9478783.zarr.zip,7d5809643e2f2cfcb178671fd8de9a1a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46175-6296STDY9478785,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.bam,f044830fca980a27e5a96f1d82fb1d37,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.vcf.gz,5fcfbdea8dab556be5ebd12f9fd1499b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46175-6296STDY9478785.zarr.zip,2e92bd07fd3fb828c6379af847673677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46180-6296STDY9478790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.bam,4d238a2c54a2d60b7ae55746f4c51d34,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.vcf.gz,4a5608f0c0cd7248b231e6a95632bea7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46180-6296STDY9478790.zarr.zip,0bd1a2ab96accbc3e47fcd137d674a50,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46183-6296STDY9478793,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.bam,f7a95a1db5e72da55a3641094849676b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.vcf.gz,b1bf4ac5540b4b8de0212315f86cd8db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46183-6296STDY9478793.zarr.zip,260f86ebc46b30c94ad42edb4da49e90,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46187-6296STDY9478797,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.bam,2d98c03922311288e119f04e925404e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.vcf.gz,2fccb4846a4ff85031d14f154b01a649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46187-6296STDY9478797.zarr.zip,b0ed215b31e78a6cde2073b00d20f209,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46188-6296STDY9478798,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.bam,87b9799d4642d3de3ab321cae47b3511,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.vcf.gz,ed413a3ed2a545ef6a15b9acfed2b654,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46188-6296STDY9478798.zarr.zip,fc4f4554ba3bfdaa4ea98679c0e5d8d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46189-6296STDY9478799,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.bam,1e43a918403e744c5a815c6387a598a0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.vcf.gz,dec13ae54bcf9cf9fb0557ce64222c64,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46189-6296STDY9478799.zarr.zip,de48db73ee90637e43ea8d9a8ec2be86,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46190-6296STDY9478800,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.bam,6f040b3345d413939503e990f713d41c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.vcf.gz,d91f787500bff57431438e52521674a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46190-6296STDY9478800.zarr.zip,f50570fb35f929ceaa7335e7284e13f1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46192-6296STDY9478801,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.bam,c81c633bf20dd74694550fc456329856,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.vcf.gz,944b81f182d99db2db8d49e9d8149c8b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46192-6296STDY9478801.zarr.zip,171f045e21e8b88e7b10b98a2fa21f58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46198-6296STDY9478807,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.bam,6f719336e35e6d59bebce4806ccc3632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.vcf.gz,bcceb7dad61871574a0527a352456165,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46198-6296STDY9478807.zarr.zip,9cca5d5a8e3a9704856fc287a1505c1f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45975-6296STDY10244530,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.bam,01ed72736fae6222ea0ae33336aabd5b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.vcf.gz,4b9ceeeac80acd1c9e7b29951655bf27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45975-6296STDY10244530.zarr.zip,025fe17418a680c7c29fd5fc024d104a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45983-6296STDY10244537,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.bam,e6c458494cbe16079c40f992be33e71d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.vcf.gz,998faf9865cd6cfd5de0a34722b53506,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45983-6296STDY10244537.zarr.zip,325c09ab594b3f3e8d7886ae7f2f292e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45984-6296STDY10244538,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.bam,23eae2b6d67855e8379cd69b7b016362,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.vcf.gz,5b01c6a1a7e5a3f98bf6059787990c2e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45984-6296STDY10244538.zarr.zip,02a99ed3559da50c96317a44cbac229b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45985-6296STDY10244539,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.bam,6d3c0664801718b6bae4791157a35fdc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.vcf.gz,3a450eefd745d8cf8ce036b7f26c2557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45985-6296STDY10244539.zarr.zip,a427288b87b90f3229f87c9b2b4931ee,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45986-6296STDY10244540,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.bam,bbd152c795c31bfa349abd679fe6146f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.vcf.gz,cb5bb6eb27c53ee6fa418ab3d569c345,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45986-6296STDY10244540.zarr.zip,cdec6a387e43a7cb6d76c51d1d9e3b8a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45987-6296STDY10244541,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.bam,eac2c5d9f5d49fd9778da84b3d7ba9bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.vcf.gz,6f77953b84c9a1f16ea6b5ab85168504,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45987-6296STDY10244541.zarr.zip,37447b939e8ee11be146932d8390cc0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45988-6296STDY10244542,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.bam,c8f457a1a1ce42b6cd9bbeed55902f6a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.vcf.gz,ef62036560f811ad5c4c6b3c71984bc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45988-6296STDY10244542.zarr.zip,17d8d23c80bae57a949586be1f422fb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45989-6296STDY10244543,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.bam,a0a6d605bd2a84ec54d27090dbf66244,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.vcf.gz,70f57972ab4d9a308d97424b85e8e8d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45989-6296STDY10244543.zarr.zip,35929dedba06b17349c493d2ceb6762e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45991-6296STDY10244545,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.bam,1e86dbe5181c080d8204ffa09835b476,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.vcf.gz,9ff61da1403a79afcb32b8eec23dda8d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45991-6296STDY10244545.zarr.zip,82afdc12f5099cf736a26e272098f3df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45992-6296STDY10244546,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.bam,486c3b6a18c7d7bfc3ef5557aef6b49c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.vcf.gz,a04c8a183a1f48c5dbc1402c06556bc2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45992-6296STDY10244546.zarr.zip,bf21f913f4664277110dbef60536c29a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45993-6296STDY10244547,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.bam,ec3e094cbc586d4546245c644dcb0979,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.vcf.gz,81ae875b80fa9249d05af6dcf1c8817a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45993-6296STDY10244547.zarr.zip,f0ac97108a1c4ea6193ecdebe6cbd46f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45994-6296STDY10244548,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.bam,03ff6b7380ed456cad3d107bbe3720db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.vcf.gz,9ca2391360683df349abd04fac2348f8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45994-6296STDY10244548.zarr.zip,59c336a0967e3c1db34bf4f192d5c4dc,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45995-6296STDY10244549,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.bam,4c3af011f9205f7151c8bd704859ac92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.vcf.gz,c1602d2c9af464d33514186ec5ce3093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45995-6296STDY10244549.zarr.zip,d83f20202ae4c015f2e49f58cec9feea,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45996-6296STDY10244550,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.bam,4e9204d1a6996f429527956c10e2d205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.vcf.gz,4abd4aaa70d61a4efd8ec38154ffeadb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45996-6296STDY10244550.zarr.zip,346f0b2271deb5c5d94d33e4817af482,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45997-6296STDY10244551,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.bam,f9f0fe13e4593802fb3a2fbacabca7a5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.vcf.gz,7171eab810766ca302e722babbc098a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45997-6296STDY10244551.zarr.zip,6028c9684dea6a0199a7325868b7c431,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45998-6296STDY10244552,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.bam,5ca56658951de4fb9b5c4c4e4573e0e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.vcf.gz,6010e7a53a1edeaed9f23f5e7182d580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45998-6296STDY10244552.zarr.zip,f01603abdc969c04d8b18965a0e616c7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS45999-6296STDY10244553,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.bam,eabcad7b011215524b4099eced0010e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.vcf.gz,d9584c08dc4befbd82b791bbb1c3cf93,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS45999-6296STDY10244553.zarr.zip,5b722bcc859ff89fb614923b1ae73fde,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46000-6296STDY10244554,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.bam,e7ba9e5776be244712f3a7ae6b62f36a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.vcf.gz,7ce8aca66df72a3b488a643f170dc8e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46000-6296STDY10244554.zarr.zip,0599cc7d901f9941ab7795a95756efe6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46001-6296STDY10244555,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.bam,d95c68b19360a3e56294b30caf592d60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.vcf.gz,495ad5c42cca7e710093d89c9439e079,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46001-6296STDY10244555.zarr.zip,6e265f442d56a7e90c08001c9296d5ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46002-6296STDY10244556,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.bam,0367ae00fd1a156afd030f1bdfe99974,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.vcf.gz,da332581d123035688653d127a845a75,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46002-6296STDY10244556.zarr.zip,35f249b90539b701c7ed234524b2190a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46003-6296STDY10244557,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.bam,9fa806b25e3142e0c82d74da34d76e3c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.vcf.gz,993a16d28c3d150205dbf9a0cec99c27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46003-6296STDY10244557.zarr.zip,5ab6c289b0d60a05295760bd90d9afe2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46004-6296STDY10244558,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.bam,da3cce7b0749e59b5f94cdf9a0ce3d8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.vcf.gz,052c1ed5dff469a4cb907b7589fa7699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46004-6296STDY10244558.zarr.zip,bd7a2c8d11b8877ceeb653985e016a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46006-6296STDY10244560,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.bam,3dd011695c202fe8249e759654b69eae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.vcf.gz,6e00cfe3be3e5c9d0e596a7f3b87ca4e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46006-6296STDY10244560.zarr.zip,b43101ecc7a422056c6344137edce68b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46007-6296STDY10244561,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.bam,9aaf6e17ae34fe9071454a0828ead469,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.vcf.gz,6e35954c0f8aaf6a46bb335eea490701,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46007-6296STDY10244561.zarr.zip,9735cb5f15b43251fb12f27d2851ff5f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46008-6296STDY10244562,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.bam,ee9bf4eeb2c09ce01aca79e68a577ec5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.vcf.gz,405aa3884de5136627aa5455edf058a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46008-6296STDY10244562.zarr.zip,d758b40ba43d7808a3b77759ca006af3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46009-6296STDY10244563,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.bam,331cb057671007f7c9cc309d7c966f27,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.vcf.gz,5c61f5ced277e130472f7655ea9b4dc3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46009-6296STDY10244563.zarr.zip,b4d2260c92b3f669235848a59abae2c2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46010-6296STDY10244564,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.bam,95cc423120f92231afdedc34a6dc75d8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.vcf.gz,20899c4284f6fcb220d7871a3ea2365c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46010-6296STDY10244564.zarr.zip,11c71c19eee57f7ffd293a50e2022274,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46011-6296STDY10244565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.bam,ffd528115f6068295d8431c639e7866e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.vcf.gz,4a98b2e4c8da327725bc8997c23a5f6c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46011-6296STDY10244565.zarr.zip,3b94bee91110caf260938a6ce1c09eb3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46012-6296STDY10244566,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.bam,993132fe81587808ffd032dad270e350,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.vcf.gz,0f3c8614cb541484886593c0d0299a42,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46012-6296STDY10244566.zarr.zip,f0cd73faba322ca838a9ef7b5a1a371d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46013-6296STDY10244567,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.bam,c3776d5f4b835b46f306f02a280c07a8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.vcf.gz,b1a7cedc46c5069311703c12f00e12bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46013-6296STDY10244567.zarr.zip,3c580907fca7fd2402d54d18c7e8807d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46014-6296STDY10244568,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.bam,adff7ba53b32410b85383258bfd20a72,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.vcf.gz,da922c98ff87bce6cbbd6c5bf0c49c9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46014-6296STDY10244568.zarr.zip,227b82fe06c972c2d4507ff7fc7f5e27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46016-6296STDY10244570,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.bam,14af267ce9d8247d4bcf290a240c536d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.vcf.gz,cd05b31daf2133a37d70acfaf2d5c4ea,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46016-6296STDY10244570.zarr.zip,4027a9537bd50c018f4f44a586b7d4a1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46017-6296STDY10244571,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.bam,8f4b56440f0341ad832233af34f1c846,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.vcf.gz,438f37c6e2de15785bc59eaf7676982f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46017-6296STDY10244571.zarr.zip,cd7531a1f66a2422408a9425434bd029,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46019-6296STDY10244573,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.bam,05389f92ca2d7d8881a9488211a37612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.vcf.gz,2ef311e1a28d9bff6bc542fced5e11f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46019-6296STDY10244573.zarr.zip,3e3cbc161c82903c7d6ffa412c0ad1dd,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46020-6296STDY10244574,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.bam,cd3d15db53d9e424a656840a326d2fa7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.vcf.gz,f84a0e72ae9b803342aca2d12931b98b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46020-6296STDY10244574.zarr.zip,68d2c5a6d5c3c9775303d6eafaef034e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46021-6296STDY10244575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.bam,ac9927695d61dd0444930df568bc4a9b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.vcf.gz,945f777a0f527b78517f294b6ba24790,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46021-6296STDY10244575.zarr.zip,af5e42d900d4f3b248b3c4c024fe0761,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46022-6296STDY10244576,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.bam,7708d2be875a3ba0fd96c8037b0b85dc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.vcf.gz,a22e08132e67de01dfd57320d2325fb3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46022-6296STDY10244576.zarr.zip,f5e161031994aa42f712d26f6a981f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46025-6296STDY10244579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.bam,05658c98dbeb01d6e7dfbd0fa28572e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.vcf.gz,8c318d07dca53a716466f2b8352300ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46025-6296STDY10244579.zarr.zip,cb653d8b6f9e78b2c4e76d2687b33643,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46026-6296STDY10244580,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.bam,cf666c8f9ce046164cfdb5b35e7e7412,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.vcf.gz,b84392047d4b4579e06e4bbc59a2603c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46026-6296STDY10244580.zarr.zip,0605db737accdfe7b3ba67f684cbb82c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46027-6296STDY10244581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.bam,b439cd9fca2649107cd2044d36056964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.vcf.gz,a9b060abbe3e466f6e17bcb3a6c626c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46027-6296STDY10244581.zarr.zip,db276b523a1b43416f18174138de5b77,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46028-6296STDY10244582,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.bam,a3b90d5ce1f2fc7442ff2c9802b8c6b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.vcf.gz,73206e66a5cdc75efbbee7324f3484b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46028-6296STDY10244582.zarr.zip,ae824aba549c7d52d0cf8064458ddb9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46029-6296STDY10244583,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.bam,f923b1cdeb1596d23f378ccc007d242b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.vcf.gz,696ddb5bdd303c419c71989fa249faa6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46029-6296STDY10244583.zarr.zip,3550d38605cd4fd00e17191df898d2ec,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46030-6296STDY10244584,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.bam,17afca0cc241f6301f7ca18c197271e8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.vcf.gz,3bf0d684ebc52a268758b51370b7a3c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46030-6296STDY10244584.zarr.zip,e6fbeb7187838887eac2b4147b576a42,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46031-6296STDY10244585,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.bam,575646acfafe61748bbb503ecc843f01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.vcf.gz,63967f16c4eba0f9b8b3f5a95ff20bc7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46031-6296STDY10244585.zarr.zip,2a30b596a8ff767ff6b68a37d71dba82,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46032-6296STDY10244586,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.bam,c1facc098169cd18295ccbf712672496,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.vcf.gz,add1589df9f9091f685188330d4e21d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46032-6296STDY10244586.zarr.zip,f29964c9549b7e782fbcf8a7e0b4ec89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46033-6296STDY10244587,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.bam,612a46f9668699989a10ed9d831c2ac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.vcf.gz,8e0826a9a3a0c6572bd6c2e620a03606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46033-6296STDY10244587.zarr.zip,9943e55b74409b9bf601cd32ce4397a3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46034-6296STDY10244588,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.bam,1d438bda644a213fd5b466591f7eb69a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.vcf.gz,6b8c1b26b20734aa171affe077d51991,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46034-6296STDY10244588.zarr.zip,0993006e725d81b05d91d835573bac9a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46035-6296STDY10244589,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.bam,e020d9e75fb1cd7a42b33c620607900e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.vcf.gz,3108713a82176c0ac66faf801d7768e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46035-6296STDY10244589.zarr.zip,497a690e443ec0a9f808a82f20a4998d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46036-6296STDY10244590,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.bam,e670490d1f9db31cdb1bd1cc93b599b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.vcf.gz,18306a98ed7810115f2511de952e0964,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46036-6296STDY10244590.zarr.zip,811a669d35eb7bc4db77cd1d929de374,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46037-6296STDY10244591,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.bam,c3147d54ef6d7a5c8759bf1d8f0cad09,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.vcf.gz,1793fb81a1b8dcde14d7c5f43063684a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46037-6296STDY10244591.zarr.zip,e9f0a1cca0e9957574fc996303e438e9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46038-6296STDY10244592,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.bam,e9655fc12a36d8665c84cec279e8cd65,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.vcf.gz,5aa95030e82d633c291860313eab7f8e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46038-6296STDY10244592.zarr.zip,578f564ca333a45b3e06299f7116dc8c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46039-6296STDY10244593,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.bam,56510e534656281020afc4835d81b82e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.vcf.gz,02610e4b04bf2820f09b1422cf76e3fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46039-6296STDY10244593.zarr.zip,80ffac68cd23540ea337c8cd4788624b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46040-6296STDY10244594,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.bam,9d1510cf7308af23e85b95746d6f18c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.vcf.gz,1b7acea660ebcdc62c6d7525e799d612,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46040-6296STDY10244594.zarr.zip,409aacbf7aef07eedd16798fd9d59c8d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46041-6296STDY10244595,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.bam,937208cbf075af93ada10f7518e22e3d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.vcf.gz,ea427016babca9a86f60bb9ce7ab248d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46041-6296STDY10244595.zarr.zip,ff853352eb520aa71df0dee893bdd200,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46043-6296STDY10244597,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.bam,e27ec39bdef518d506ca83778efbc9e0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.vcf.gz,1e068d2c749acd9c6c9a17d5bf27b1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46043-6296STDY10244597.zarr.zip,994ae24e18976fa55f123b9bdd1f154e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46044-6296STDY10244598,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.bam,9bd6ead7548bde4a691394413569b96f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.vcf.gz,6e59775db52422e811d64bdd50963608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46044-6296STDY10244598.zarr.zip,f13f384975d02e15d4bddfcf97107ab8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46045-6296STDY10244599,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.bam,56e665b021c3656fd92bbecad792fcff,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.vcf.gz,cec23c7e2cacdc0ada49ccb714cc6115,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46045-6296STDY10244599.zarr.zip,facf422ec9f62380c64f1fed64350008,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46046-6296STDY10244600,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.bam,3dfd1b2fe73d998aa909a9f7e9de5e06,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.vcf.gz,fd73b34eb4e06e91031fa6339f649ee9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46046-6296STDY10244600.zarr.zip,9e351d5255e9b3378443a81be9565fdb,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46047-6296STDY10244601,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.bam,e5b4dd76297b2985e82484eb3cd08b17,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.vcf.gz,ddcadf2d9eb911094ae34c4763cd4cc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46047-6296STDY10244601.zarr.zip,2039ba6828fa664781e417a4cb129057,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46048-6296STDY10244602,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.bam,0ca181b5e2e093c590595e5b6b8d0b60,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.vcf.gz,aa8ff39402686765b13ee4e4bb30e0cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46048-6296STDY10244602.zarr.zip,38ac9e5a6d69161fd5b87e8448765060,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46049-6296STDY10244603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.bam,1b2dfda57496438ced03b19bbeed30c5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.vcf.gz,66bf251210144cde55b2ab423cbf677a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46049-6296STDY10244603.zarr.zip,f3f35870be00195f669a5b5fdff12123,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46051-6296STDY10244605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.bam,f6d43a71deed42b671e3fa104909dfce,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.vcf.gz,9036c6ec2e9e63d11ca9a44ed5f4f0bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46051-6296STDY10244605.zarr.zip,d8231701a83305388dd655772f8777e5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46052-6296STDY10244606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.bam,64559e295ad39faaae3e237802bf95b6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.vcf.gz,e6302b321dff324283390595d9b9f744,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46052-6296STDY10244606.zarr.zip,7a3d8e0fb8f0748986c824e75821ad31,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46053-6296STDY10244607,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.bam,3f5a92e277a1f80f3d893d0dca19017e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.vcf.gz,53d9d56d88e12c0b651eb5dbef02cdc0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46053-6296STDY10244607.zarr.zip,bcbbfcbf138e8273f5c84c0f3ddc5f0a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46054-6296STDY10244608,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.bam,38c24bb390ad874670c12a60abae477a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.vcf.gz,253f09f88889115c2e26911c5a083d52,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46054-6296STDY10244608.zarr.zip,2690a2d0e6fe9b59c58cf60f46492472,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46055-6296STDY10244609,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.bam,d7680eb95f954164d966869b7548fac5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.vcf.gz,044b7d845796952c9e4223713a6c1fd3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46055-6296STDY10244609.zarr.zip,79cd8a70e6a56827e0effaddee3ad25e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46056-6296STDY10244610,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.bam,e7e995ffe3a25308ac9994955d5ab16a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.vcf.gz,78263eee27b6d580054d5a002d133565,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46056-6296STDY10244610.zarr.zip,f700c3f12528158195ccffc6b98ea050,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46057-6296STDY10244611,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.bam,983de20e05e6ce69daf8c9af2d8a1890,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.vcf.gz,9de1cdb6915b3ad5d963175ea61cba76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46057-6296STDY10244611.zarr.zip,b1630fe8d6962e22a180e98c94bf6e89,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46060-6296STDY10244614,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.bam,c4101f05ee89b99ee9c0f5866701e9ef,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.vcf.gz,159c742b6588f40112c8d23c6558a397,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46060-6296STDY10244614.zarr.zip,a49017de47878d6d2e4cacb35393b5a7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46061-6296STDY10244615,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.bam,1e7bd1066fccde110c836fc24b126eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.vcf.gz,5738f1e43e82eff0b0708ac43250390f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46061-6296STDY10244615.zarr.zip,51b873c236d4cc7a64514d8007f620af,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46063-6296STDY10244617,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.bam,c5235cc932300c02b3ef94fafd4fb28c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.vcf.gz,6e752c0715aa4de989cd231766e1c7ba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46063-6296STDY10244617.zarr.zip,9f93ead5253aa6618c5f5ee864e01909,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46064-6296STDY10244618,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.bam,326320cec2ba7173d4323c42bee6c8f3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.vcf.gz,065a2bc8be81975bda4a18302df14e47,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46064-6296STDY10244618.zarr.zip,f162809e72bbe79fd4cb80017796ad85,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46065-6296STDY10244619,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.bam,e37995cebe508f201f4f9a2a023db0d0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.vcf.gz,905aec9e3d01c4d91c5029579aed93d9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46065-6296STDY10244619.zarr.zip,f567bd12cacd672a731870ea1978fd63,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46068-6296STDY10244622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.bam,88d49a34d648fb44378672f74634c2b3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.vcf.gz,27b481808db5119bc9b1c757604e2776,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46068-6296STDY10244622.zarr.zip,507570fdfe21e28a4818782fd8dc5371,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46069-6296STDY10244625,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.bam,d3e787f3f8c9f7ee81b48b38697a5658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.vcf.gz,f1969fb9eb53ee63a06a1ccc3a8305e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46069-6296STDY10244625.zarr.zip,acee34d8ccf69acb35bb886044b420ce,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46070-6296STDY10244626,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.bam,9a99b5851037e13352d33c6a54b9884b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.vcf.gz,c0d78d0c54c2dcdbd41ed36d7caabbba,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46070-6296STDY10244626.zarr.zip,5821cc4028b4b5d07c4f05534609131a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46071-6296STDY10244627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.bam,9817a2eb4f3988959a7d3368d7fa1a95,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.vcf.gz,c1aaf3b6278acca92bda9955acef22b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46071-6296STDY10244627.zarr.zip,97bd1f0d511d75acba63eb8a50a4bc18,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46072-6296STDY10244628,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.bam,ffab700b4bea33596a9d739e35185dc9,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.vcf.gz,66fe83bda16095defb8a20b9c7cebfca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46072-6296STDY10244628.zarr.zip,eace5bc90ae795f3870428c23e4baaa6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46073-6296STDY10244629,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.bam,fc76e803cf086bcfb2acb668ca5c7688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.vcf.gz,f314bf31e9ad16b33e3568218cfa90c0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46073-6296STDY10244629.zarr.zip,8acbb037ceba2f256dad346a004e53b5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46074-6296STDY10244630,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.bam,60b889ec6915c59f67471b8728c0659d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.vcf.gz,3da9920df9c339390a594e9a9aeb17b1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46074-6296STDY10244630.zarr.zip,78ed65683b9e76ff2895fd27f704b832,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46075-6296STDY10244631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.bam,e96c1718e3ab736bb27085facbb17bda,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.vcf.gz,380308638092e69edf993136e9a3f63b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46075-6296STDY10244631.zarr.zip,cc3d1230621e1948d4907387b75d6c11,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46076-6296STDY10244632,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.bam,4afa84a46ac7b18c7111caa332c362ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.vcf.gz,0fe220ef062acf81a4dc3aaaba9e45ac,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46076-6296STDY10244632.zarr.zip,cffc70fce3686e8bb994c4ed2178cd83,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46077-6296STDY10244633,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.bam,0c94e44ce93f8ec7f58b621913e01a78,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.vcf.gz,5723d487f2c3b7a912d1842f9cc1a95e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46077-6296STDY10244633.zarr.zip,edaa589c2ded2a736bb8ebe28bc7bd12,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46079-6296STDY10244635,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.bam,5651a7ee7dd0fe9a0d2d43f76b7dec9f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.vcf.gz,3f49c8792ad156cbc0667beec8e3fd57,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46079-6296STDY10244635.zarr.zip,0b04ad3185d80d37253669a6796b418a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46080-6296STDY10244636,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.bam,7c619ce3e8bf9afe039c3fc900de746b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.vcf.gz,18b828ebdc48b5f49959e95bfa0aa056,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46080-6296STDY10244636.zarr.zip,0908bdd2e1113e085688080010d9c575,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46081-6296STDY10244637,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.bam,fabc10edb900c7963a0e574c168e053f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.vcf.gz,6d2d6c223e4ad7071dc46a963981c472,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46081-6296STDY10244637.zarr.zip,862ffac3f8b7332064af417a52d0c926,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46082-6296STDY10244638,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.bam,44e785256d94d9a3136910ecf1aa16b7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.vcf.gz,723b36003192db50d6bc09c1000523d4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46082-6296STDY10244638.zarr.zip,e358a83176335add62daaae3069f6813,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46085-6296STDY10244641,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.bam,0763186f8740b265f728916a83047ab3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.vcf.gz,ef2920b39f6d26f0d2ed40b70cbe4b2d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46085-6296STDY10244641.zarr.zip,2b79df54a9c6986ca3ac5526f2e3f835,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46086-6296STDY10244642,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.bam,7076efedb5b3571bc3e477d7a0e8150f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.vcf.gz,201a259f3438f0c6c828803bf3b27df2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46086-6296STDY10244642.zarr.zip,ab767d757dadb3d29768d9a683fe4e1c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46089-6296STDY10244645,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.bam,301db4f53172020b34785811d2bdcd5d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.vcf.gz,d089fb93a50ccc3a8200e9c7f9effbbc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46089-6296STDY10244645.zarr.zip,316f18192bbb6cd75bae2cd1595cd040,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46090-6296STDY10244646,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.bam,ac09d1534c9c1213e3f34472f698f98c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.vcf.gz,57abf91fdaab79128b4214eab0cdfbf8,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46090-6296STDY10244646.zarr.zip,e0bbd3c2845daf322f747662ad01e257,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46091-6296STDY10244647,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.bam,f58f809898be1124be0a75828d17db30,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.vcf.gz,724f5f4ae4e10778c3bcd434b66b2a81,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46091-6296STDY10244647.zarr.zip,c13d15f93d20787dd4f1c33fef2e0cb0,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46092-6296STDY10244648,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.bam,e5c160ba2997d28168842ccf2c3717b0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.vcf.gz,9928773ad9a4713e9168d39f8079ceaa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46092-6296STDY10244648.zarr.zip,cffdb8b3366dd3bb75ae1af875a5bf10,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46093-6296STDY10244649,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.bam,2e40e3d858b15924dad9f8decbebf12d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.vcf.gz,41b22a186ebcb2726e93323c87f5e944,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46093-6296STDY10244649.zarr.zip,e5e8c3e9ae3174289635ca345703fdcf,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46094-6296STDY10244650,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.bam,a372d4621244b81e4a565d78f4d08fa0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.vcf.gz,5e50aead63697522902fd31caa5fb298,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46094-6296STDY10244650.zarr.zip,fd4a34a3968bb41956a53cd189b5a33e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46095-6296STDY10244651,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.bam,571ac49f46ab3bfe875bbaf45c1bc713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.vcf.gz,50685b6768cd829b306ce77b97a5d268,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46095-6296STDY10244651.zarr.zip,6083c3f2b206a38324e0362422368d4c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46096-6296STDY10244652,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.bam,11fccdbfed57786680838fcc1e21c22d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.vcf.gz,06fd37fdcaebef95f89cd1dd26223c08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46096-6296STDY10244652.zarr.zip,3fb29c1101c284c8d267c70c40333a44,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46097-6296STDY10244653,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.bam,146bc98625e9de8e8c18e3b0655c1613,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.vcf.gz,cc0cafc676be171054104e9a1fd844aa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46097-6296STDY10244653.zarr.zip,fca2312d74cec77c8f832dd6f8168490,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46099-6296STDY10244655,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.bam,7d9ee2393352d00e54a5dbd93093790c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.vcf.gz,dd9c428faff08546842c943f9cdb1709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46099-6296STDY10244655.zarr.zip,dcf39e7cfd7a3393b6e0e6198f5a03a5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46100-6296STDY10244656,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.bam,17dfd4a0f0f9a33f103872bae83c2103,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.vcf.gz,66a909f21e3b76233285400465878e38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46100-6296STDY10244656.zarr.zip,f79b9f16662746fde5a7fb4bba0cb426,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46101-6296STDY10244657,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.bam,799a27898d026a6691ec5e412fcbc1cf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.vcf.gz,03df5dfbd082d1dcaf23b50ddac7cbe2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46101-6296STDY10244657.zarr.zip,5e2b47dcfac2dd7e050884ea2f10f677,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46102-6296STDY10244658,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.bam,10fb36c8a678e7506bb62d9d39685b7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.vcf.gz,8528117ddbc126be7d16995a760cbf97,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46102-6296STDY10244658.zarr.zip,9cdc5184f05a2fa57daa620920f989c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46103-6296STDY10244659,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.bam,2021a696721431f1d72100c0b2b628fd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.vcf.gz,afafe645d9c66c5027ac065bab57b02c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46103-6296STDY10244659.zarr.zip,e1cbcb4eb08d9ade5176a185b4975412,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46104-6296STDY10244660,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.bam,e6e7779768e8856bb361eaa6424958fa,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.vcf.gz,80df687f9b93b9c56335fc888ef16977,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46104-6296STDY10244660.zarr.zip,17e6fe272d7760cc23cf66bacc45961b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46105-6296STDY10244661,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.bam,d74b9824663e2d1bc29dcbcc26e86577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.vcf.gz,ee28f65d079fd03931703cfc0237761f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46105-6296STDY10244661.zarr.zip,0924f785a031937fa712433f3f15a1e4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46106-6296STDY10244662,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.bam,9153ccac305e1b1947640435a4e72dab,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.vcf.gz,937038eace346e24d248cc3b8d97bb4b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46106-6296STDY10244662.zarr.zip,e38500fe58e1ce2578547cdc46ee4b28,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46107-6296STDY10244663,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.bam,a41f35062057f501aa0f35625d51b2d6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.vcf.gz,619a5a31165f60a9abc99d4b76655d90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46107-6296STDY10244663.zarr.zip,c50b311a7aa9a0a9c963922137369cd1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46108-6296STDY10244664,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.bam,e845c7294d565d7b7d60e18df7df4a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.vcf.gz,17640788657fc74df34cdf04287f7997,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46108-6296STDY10244664.zarr.zip,6633c7fc97cf45f9a708ed0d98e8da4e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46109-6296STDY10244665,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.bam,2391faa681cd1c6a07f68ddcf72fb2d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.vcf.gz,4d44ab3a838fd237993ec3988c735f22,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46109-6296STDY10244665.zarr.zip,fe8b8928e028a4b49ee81c744abb2762,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46110-6296STDY10244666,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.bam,b439f6fcbd8ccfb0c5e0c24177ecb9d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.vcf.gz,689433211da8f7c6745ede98e73a1c87,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46110-6296STDY10244666.zarr.zip,bf7d4d3e69b596e3f379aac2046bb797,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46111-6296STDY10244667,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.bam,c68ef2eb103e2817f6a0fec0dd10ff6e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.vcf.gz,6c1f129b5eb981742e6735072edf8eb6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46111-6296STDY10244667.zarr.zip,90176b6262d6b0d78caf7114c3e7f555,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46112-6296STDY10244668,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.bam,0022f35363daafd25e6449946b4d1105,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.vcf.gz,e2c972a08dd980b4b9dc256a59cf6b01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46112-6296STDY10244668.zarr.zip,f74150f8495a12b35b60c175305128be,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46113-6296STDY10244669,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.bam,e902e6edb14ad33ed3bae8fbcd520454,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.vcf.gz,485d4adf4f888b14bb569a514a72d134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46113-6296STDY10244669.zarr.zip,744e9ae6fa4030159e33cee8166e4364,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46114-6296STDY10244670,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.bam,dbb641160a8bc9f642bd12fe15d98b13,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.vcf.gz,ef9591c7fbcf836476b18610e73d3f3f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46114-6296STDY10244670.zarr.zip,b5ee5701b6578588ef8d39afff1f92ff,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46115-6296STDY10244671,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.bam,74a9b024eb3e14feaeda4772623bb575,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.vcf.gz,b3b0bd269afc5fb9ee70106bc85ab47c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46115-6296STDY10244671.zarr.zip,82b169c34ebff1d8fa5e0c9653357e58,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46116-6296STDY10244672,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.bam,771ce1e0215a2e89a47d46bd7b73b1fe,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.vcf.gz,1ac171b818e3e26748051e7b11f36b90,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46116-6296STDY10244672.zarr.zip,bb896bf3dba7a5650d575a88840c3637,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46117-6296STDY10244673,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.bam,1470a757d2a3859a413784dcba5fb316,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.vcf.gz,32908172a8c75a477a16f095ac05056b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46117-6296STDY10244673.zarr.zip,d3951c6e4d1747d4ff04e988837c963f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46118-6296STDY10244674,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.bam,366910128041adefad0f6caffdcb5da0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.vcf.gz,a7baf0aa263a054bc03f286b55a851bc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46118-6296STDY10244674.zarr.zip,3061b1ec62b2689965399cda81fd209c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46119-6296STDY10244675,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.bam,d64ba73aa7a30734a5dd16501eadc3f0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.vcf.gz,dd6ee745f391b0c2140cdb70d07a68db,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46119-6296STDY10244675.zarr.zip,d4210ed1eca458d3a4ca263046e85023,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46120-6296STDY10244676,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.bam,fa5d21986218b7b574d3bc410a7e28d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.vcf.gz,c2f37eb3838bf465b933727fc67ec127,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46120-6296STDY10244676.zarr.zip,2e8f06e36ce8ece662be5109c94b40a2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46122-6296STDY10244678,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.bam,db2c5278bb3945c54ccc8e9279d50622,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.vcf.gz,066bc119de5d2fab7a10e37561f0198a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46122-6296STDY10244678.zarr.zip,7ce1155050c452daf27c78c67015f40b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46123-6296STDY10244679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.bam,8f22ba6a8e70d634a05277cfd9caf55b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.vcf.gz,0a49b6215f41f629cb894949419c6225,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46123-6296STDY10244679.zarr.zip,8a110f4e9499a1d91bb19b71d3717ab1,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46124-6296STDY10244680,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.bam,a4c60e332d07e87493a8de8c1987dc9d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.vcf.gz,b5cd476461a938d8c2f0c44302628249,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46124-6296STDY10244680.zarr.zip,f1bb177f63e46215f88d94cc6446648f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46125-6296STDY10244681,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.bam,710d39c6336c2b727955a472d841eec6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.vcf.gz,1b5d5a038a87d661c7b23e5ab7f70833,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46125-6296STDY10244681.zarr.zip,ec268451a7e403e7012f930d235777c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46126-6296STDY10244682,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.bam,9017782fd7cb24d7352d94a8653b371d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.vcf.gz,a2687baafe9ff71cfcabaa7be9c80109,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46126-6296STDY10244682.zarr.zip,d02258bd20a681c9f88a018b08223723,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46127-6296STDY10244683,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.bam,4abe8438c7bb0818cfe6279e4af63ee4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.vcf.gz,4a3f7a557c27a7bf3b11903f82fe1c8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46127-6296STDY10244683.zarr.zip,2788ea16ef1d3925d6b16e4f3f63bf05,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46128-6296STDY10244684,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.bam,a1b050c7b4b460414ee4d4af0f5f550d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.vcf.gz,efd0a09b216390bf97a01cc64015a2c3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46128-6296STDY10244684.zarr.zip,0f28fb7db62edf59ff4e139db881db0e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46129-6296STDY10244685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.bam,7db2f0c07d0f1734c93cc66b6c7d9631,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.vcf.gz,62575ca298a7565bbb97651bdf0b9ebd,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46129-6296STDY10244685.zarr.zip,3e437d0b009b63a7b4281a1ac5d17f67,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46130-6296STDY10244686,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.bam,81de5de97c273a2d8a8348e43bf0b40b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.vcf.gz,141e96c60423306a9ed8c7d47841560a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46130-6296STDY10244686.zarr.zip,4048b08ee5f26e1633e7e7995a4b0b56,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46131-6296STDY10244687,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.bam,181a57d461caca71137e8d0ba00da3a7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.vcf.gz,03fe541e393fe9c70e04153005eb44e1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46131-6296STDY10244687.zarr.zip,a7c5820aed1136836bcdca6b5c4d5b9e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46132-6296STDY10244688,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.bam,c7103015a053cd9a49677fc0540900ec,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.vcf.gz,77e40b3a05cde15bb9a97ec817ac9715,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46132-6296STDY10244688.zarr.zip,dd9b19d3f910da1b71063792a3c104df,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46133-6296STDY10244689,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.bam,9813945a73dcead8f778dd79c0c09fae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.vcf.gz,c44ff1b9281df3672209818c0fdebe08,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46133-6296STDY10244689.zarr.zip,a7d75a97d12b00eed8ab7e77bfbe27b3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46134-6296STDY10244690,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.bam,fef8f09188ced5657c4d903919aacb26,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.vcf.gz,83d50ec3d3cb09c3255d8a7e76181e9a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46134-6296STDY10244690.zarr.zip,808fb1cdca655c456aa9edd0c5cec5ac,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46135-6296STDY10244691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.bam,308db16ffd476479f8e552d3c2c79c7c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.vcf.gz,1992cccb91a26822dcf0bdf093b10ee0,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46135-6296STDY10244691.zarr.zip,0ebe5eb7ef03b89905ea6dac8f1eb9d8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46136-6296STDY10244692,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.bam,c8c9fe06dc7a189fd48cf262dab01f82,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.vcf.gz,b24cb86c6a57668e9205937953336181,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46136-6296STDY10244692.zarr.zip,252866e1e45e1de20d6e87d8eab6832a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46137-6296STDY10244693,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.bam,72263420016a6358e0d297c8129c96e3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.vcf.gz,ed3dc3b02ef462180ff1f09adaf53a8f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46137-6296STDY10244693.zarr.zip,e9f5938b0627a80387f1065e59b37301,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46138-6296STDY10244694,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.bam,672b166fcf67daa726a75565f44c5205,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.vcf.gz,b06ccc0294ff92a140d6d163fa665ec2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46138-6296STDY10244694.zarr.zip,d330294ad2d9a1d4d59a7dd5a3122d4d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46139-6296STDY10244695,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.bam,bb1fb7093884e3bb0a6c208b784ffac4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.vcf.gz,0551c93b94eed118bff210914254dff5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46139-6296STDY10244695.zarr.zip,15ef619350e945a6dbce59b969f9d8ef,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46140-6296STDY10244696,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.bam,94f23659ee39233bf368670209c6cc99,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.vcf.gz,1323ea577cd9bebb7bf6ed420ce43134,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46140-6296STDY10244696.zarr.zip,b616a193e86d1213fcd5dd4213983124,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46142-6296STDY10244698,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.bam,b66c0b9f6b3f71ce6566d6adf788433f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.vcf.gz,a9ae8f1908dd0f0cce27e698d2b4d581,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46142-6296STDY10244698.zarr.zip,555350ae704b3c8d9a1db0df35c1f226,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46143-6296STDY10244699,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.bam,17dcff75bd9aae8e8609da5b55286577,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.vcf.gz,fa9c08f21cfb0e0ac790663ad2ddcb79,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46143-6296STDY10244699.zarr.zip,5f66a0c304e73d8b6427eaad715fcbb2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46144-6296STDY10244700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.bam,fcd09d043b04a2422728a372388ef603,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.vcf.gz,b64f0a6016f0fe316e12ffd9b05c714f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46144-6296STDY10244700.zarr.zip,d70051b71d83a2c5d20c481a622ade55,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46147-6296STDY10244703,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.bam,ff4e6f2983b5e93a59f83b1b925836a1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.vcf.gz,fda6b5d81dd1f0c69f538b23c57d6627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46147-6296STDY10244703.zarr.zip,09e92b51445a729d917962e15bb3c1f7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46148-6296STDY10244704,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.bam,6a909c17f40150cc2547ceddda30610c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.vcf.gz,8e6eaea206b9aaf88cd479841b87c2ca,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46148-6296STDY10244704.zarr.zip,62e1c13b45d15d68dca0bfae4781c88f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46149-6296STDY10244705,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.bam,9c1b2c0942c2d2cc97578b5e0584faa4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.vcf.gz,bb411986e6447eaab2bcc81f1bc3e228,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46149-6296STDY10244705.zarr.zip,5bc727fba006f6f3b3963b75ea867002,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46150-6296STDY10244706,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.bam,42362b69f9cb357aa163615d4e3c2f86,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.vcf.gz,f76a923a286e9b0699a80d002e12824a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46150-6296STDY10244706.zarr.zip,b5afcc81c9b6c34c5bcd5ee974461b98,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46151-6296STDY10244707,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.bam,36365734ce6fa33deebdc84d95c1f1da,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.vcf.gz,ea1effdd7390605a2857b13f74d9f63c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46151-6296STDY10244707.zarr.zip,1bfe7297f325433b89cb775e90f64da7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46152-6296STDY10244708,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.bam,bad12b6eee4d739f97a955703c398f4d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.vcf.gz,635f6538207e9651ec1b856f9f605046,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46152-6296STDY10244708.zarr.zip,5db5a08ea1cbc1bde9809884c9094d5e,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46153-6296STDY10244709,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.bam,edb49735d204a0907dd497ee9055a478,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.vcf.gz,c43aea13db62ece38fd1d31976647c92,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46153-6296STDY10244709.zarr.zip,f009d0edfd24bee3ac36f4dfa53d26d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46155-6296STDY10244711,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.bam,53f5050f0956971eed6672572c9b662c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.vcf.gz,16fc4a9cadcd3561d2f9744901181605,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46155-6296STDY10244711.zarr.zip,3040fcea89d997b80958c9f7dbb3dd64,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46156-6296STDY10244712,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.bam,86ba812d131d5fea2be42af1d4782cbf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.vcf.gz,4ce1c80b19a13f265563c38584266f9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46156-6296STDY10244712.zarr.zip,5bd8aa5624f1c63ec61412126abd9845,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46157-6296STDY10244713,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.bam,61220d017ea23e047b0178a9921c61d3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.vcf.gz,b783275c36ff12d14902be0c8c1e39c6,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46157-6296STDY10244713.zarr.zip,57021a8eca7d07c4f9d7dad0fa062f74,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46158-6296STDY10244714,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.bam,25b74c9f9583017caaf7e19ec021d0a3,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.vcf.gz,8d6931c2553c8ed375b05dac8bcbeafc,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46158-6296STDY10244714.zarr.zip,52ffc8fa39bac8c89bf898e1103a2ec5,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46160-6296STDY10244716,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.bam,7314c560398fc491a6c84389560deb7e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.vcf.gz,1d5d41c13fa0a5115810df9e6d263700,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46160-6296STDY10244716.zarr.zip,ff1c09d4456bc00158565467adb1f05d,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46161-6296STDY10244717,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.bam,48f8743ef68292fde0d6c175a93543b2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.vcf.gz,95c6bd8ec26da87330667e4856205691,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46161-6296STDY10244717.zarr.zip,b76043c150b635dc8b797c709e0ba742,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46162-6296STDY10244718,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.bam,30a4d28a800ffcd199d43d63e8a7b291,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.vcf.gz,dcb0c80168d38aae0b70edc33634249b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46162-6296STDY10244718.zarr.zip,1bd38cf556bb88a69edddb94ef64ada7,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46163-6296STDY10244721,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.bam,95a3241fe1053ff881dc853f474a5762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.vcf.gz,b87f5280c441e0ef2cd6757d2d58c29c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46163-6296STDY10244721.zarr.zip,0d218a7ac1cd8506207a93c21a766a9f,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46164-6296STDY10244722,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.bam,848104688f551af6584d9be8d6a6c9bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.vcf.gz,a218379a0fcd6a63da2d4d5dcd179d38,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46164-6296STDY10244722.zarr.zip,42b35107f445f4a2bafc8c4bbab9595c,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46165-6296STDY10244723,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.bam,7ec9c15383d2a1caedc47b056de4997b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.vcf.gz,4234bb0bbf6212081f27a10d70b4220e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46165-6296STDY10244723.zarr.zip,fb981a1d8249d954b9c86a11d15edf38,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46166-6296STDY10244724,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.bam,2116f107cf69fe30a5722ead2f24d093,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.vcf.gz,80e561e424c036325a68022e06691d01,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46166-6296STDY10244724.zarr.zip,56211a74fdd85dc2f07adfbd9dcfa148,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46170-6296STDY10244727,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.bam,e3d8e0f04b45359891714e462e295d28,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.vcf.gz,b7213a21ee8e0bc864c6fda177b36c53,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46170-6296STDY10244727.zarr.zip,5fdbed7aea5a97ffd1523858902b1a30,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46171-6296STDY10244728,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.bam,3316ba7c54b5b5361e804709df3ec1bf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.vcf.gz,3d7ad375274aa09b369b6cbdb294f1bb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46171-6296STDY10244728.zarr.zip,814094360a82f5f9c1a759ddc2ccaef8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46174-6296STDY10244731,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.bam,c756a0db0530e0f881561ee08f2bdd1f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.vcf.gz,c994aadd8228c54faa554d6825c5455a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46174-6296STDY10244731.zarr.zip,1063a6cd18000c0101c8a8d35b200196,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46176-6296STDY10244733,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.bam,a35cd5b4fb13632b16db475e7e2b1bc4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.vcf.gz,024ad98abfafbb87752999edfdbb0eaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46176-6296STDY10244733.zarr.zip,95d85adec667a2f2f0add4198b05640a,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46177-6296STDY10244734,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.bam,19f6634f151330c4f14891ea80961b6d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.vcf.gz,af2a10603340fdd3e9393f25d3131331,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46177-6296STDY10244734.zarr.zip,03d879c9a5454960ed6f626ffc1781d6,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46178-6296STDY10244735,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.bam,adc1763a34d0e0613507b753babfcadf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.vcf.gz,d6e323a7be1cbbaff31c0daa736cdb45,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46178-6296STDY10244735.zarr.zip,138fc45253bf169c66a738664e7b0612,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46179-6296STDY10244736,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.bam,12fee4ccb7ef5628a4bfa869adbf667d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.vcf.gz,be756ca129991e7a836e879aedb1766a,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46179-6296STDY10244736.zarr.zip,740a4d3cb40631e6143455ff3f8acb6b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46181-6296STDY10244738,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.bam,1499f5ca5e056874bea9dfe1257dc6c2,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.vcf.gz,3329c612bc1169ace9f6fdf80471b21e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46181-6296STDY10244738.zarr.zip,fc4574e2d95c70c069bf771170b12949,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46182-6296STDY10244739,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.bam,573eb24bb0ecfdbcf0dd1a5d1d7240b4,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.vcf.gz,2ecbedd26b40708becbcaa014dd54685,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46182-6296STDY10244739.zarr.zip,f64b06e936fa5b905528f496c38e8179,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46184-6296STDY10244741,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.bam,2101b496021d75704163de3ff43b5d83,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.vcf.gz,bf3c5fd872cb0be4def60331c2df24ae,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46184-6296STDY10244741.zarr.zip,96cebeda2fe3fec555853d340633eb1b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46185-6296STDY10244742,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.bam,2d57e4c1fe777c4f4a61fa22e2a44fad,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.vcf.gz,0adc862279fc8eefaca763cd2fde3384,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46185-6296STDY10244742.zarr.zip,90297811c9422c827336f0fe9af73bd4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46186-6296STDY10244743,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.bam,ef57766adb637f83c425c11539a36e25,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.vcf.gz,0f571f7acb25c77ecd693e46e70c3606,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46186-6296STDY10244743.zarr.zip,7b69a02639dc8c4f0ab19ee461dbdc57,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46193-6296STDY10244749,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.bam,78709560feaa69be12f210bd1a290deb,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.vcf.gz,92a4756a2f262b95c0cd010ef6f73c77,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46193-6296STDY10244749.zarr.zip,cd5ed5878ec116dd66ecaf17a1294467,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46194-6296STDY10244750,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.bam,0d38b2ee1805e9d2247997eefaa37d9e,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.vcf.gz,98a65c01377b0a1c843987727bfdb36d,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46194-6296STDY10244750.zarr.zip,736ffa8b99c6cbfe0788ed3981690c71,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46195-6296STDY10244751,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.bam,3317d75a20e8108d146a262025d3e373,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.vcf.gz,62ba7e89fd3421fa7a0575b04b534f56,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46195-6296STDY10244751.zarr.zip,302c682ed385ac6bd29f7b8ba486a5d4,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46196-6296STDY10244752,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.bam,e171145dcff2ebfedf0e7630b4f685d1,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.vcf.gz,6c88a263400342d57d73e63dc751f901,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46196-6296STDY10244752.zarr.zip,d52a51ae8c2d5e582f5c72f704239d27,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46197-6296STDY10244753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.bam,a2ae69924541dec1b05d51f15d1cb579,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.vcf.gz,2b481c427a11e1b07067428549da727b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46197-6296STDY10244753.zarr.zip,e2996f26ec1872e116613c97e407fa72,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46199-6296STDY10244755,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.bam,5afd956b2b4b7ad5cf78b99a535c1627,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.vcf.gz,8e03b3645d6cccd0598cd885e77a065f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46199-6296STDY10244755.zarr.zip,7635ded796422974ada61f2779917b33,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46200-6296STDY10244756,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.bam,9aa621ac0c7d795c7cac7dba819f2b18,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.vcf.gz,1b8d9f3cd4a06f12a50dc21528da721b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46200-6296STDY10244756.zarr.zip,969bf551c8f3180893949e71a6151564,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46201-6296STDY10244757,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.bam,47493446d43054f545fb0313afdda23f,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.vcf.gz,3e6673cab726d90cd6ce58d4b46b5b63,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46201-6296STDY10244757.zarr.zip,75984eb4885fb69e2df054fe05f20b9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46202-6296STDY10244758,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.bam,4ccf10f7cdf07ebf2b39abf62958a7b5,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.vcf.gz,b2568e1051464118fe3aadb93547c730,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46202-6296STDY10244758.zarr.zip,3fe052930152b21cfa7bddad122cdbb9,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46203-6296STDY10244759,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.bam,537a94ee8f982a13e545c6133445154b,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.vcf.gz,20bd14fac661d14dd6eec4e444d84b89,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46203-6296STDY10244759.zarr.zip,6c98d7818a986f1262652b8a44f18004,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46204-6296STDY10244760,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.bam,00725c2ff497bb0ddf82846300cd5f4c,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.vcf.gz,83d45de9a858ee511963c07b5a37d679,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46204-6296STDY10244760.zarr.zip,17e3347ad5759a78a11989e4d49fcee8,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46205-6296STDY10244761,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.bam,1f092c286023577d2e9bd97ad3d1fc76,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.vcf.gz,d51b9ad825fa1ca1255a7f6928867753,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46205-6296STDY10244761.zarr.zip,a1f655b455f6986112c4a2803a030a9b,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46206-6296STDY10244762,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.bam,eeaf7e7ef3b1e32b99219cc65791edaf,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.vcf.gz,55aa7ef2d601ca4a26261b0705af4b73,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46206-6296STDY10244762.zarr.zip,41dfc76ae8b0446d76cf784b8b1e10c3,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 +VBS46207-6296STDY10244763,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.bam,6c585941c0a346f7416c1030e4f5c1d7,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.vcf.gz,ce007ea36a96461338412d7d7402f425,https://1278-vo-th-kobylinski-vmf00153.cog.sanger.ac.uk/VBS46207-6296STDY10244763.zarr.zip,b088bb1fc8c71c2595691792618ea3b2,https://github.com/malariagen/pipelines/tree/ec02c42b5632da96ad549fd23dd49e7fdfeebd17 diff --git a/tests/anoph/test_g123.py b/tests/anoph/test_g123.py index 6ab324d1d..ea03462dc 100644 --- a/tests/anoph/test_g123.py +++ b/tests/anoph/test_g123.py @@ -72,7 +72,7 @@ def adir1_sim_api(adir1_sim_fixture): default_site_mask="dirus", results_cache=adir1_sim_fixture.results_cache_path.as_posix(), taxon_colors=_adir1.TAXON_COLORS, - default_phasing_analysis="dirus_noneyet", + default_phasing_analysis="all", ) From 4989f74f6ab883046ae4dec25b3e83420e3d59fb Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 25 Nov 2025 11:26:18 +1000 Subject: [PATCH 36/41] remove tests for g123 and dipclust --- tests/anoph/test_dipclust.py | 19 ------------------- tests/anoph/test_fst.py | 19 ------------------- 2 files changed, 38 deletions(-) diff --git a/tests/anoph/test_dipclust.py b/tests/anoph/test_dipclust.py index 72e003b94..591d39511 100644 --- a/tests/anoph/test_dipclust.py +++ b/tests/anoph/test_dipclust.py @@ -4,7 +4,6 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 -from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.dipclust import AnophelesDipClustAnalysis @@ -61,24 +60,6 @@ def af1_sim_api(af1_sim_fixture): ) -@pytest.fixture -def adir1_sim_api(adir1_sim_fixture): - return AnophelesDipClustAnalysis( - url=adir1_sim_fixture.url, - public_url=adir1_sim_fixture.url, - config_path=_adir1.CONFIG_PATH, - major_version_number=_adir1.MAJOR_VERSION_NUMBER, - major_version_path=_adir1.MAJOR_VERSION_PATH, - pre=False, - gff_gene_type="protein_coding_gene", - gff_gene_name_attribute="Note", - gff_default_attributes=("ID", "Parent", "Note", "description"), - default_site_mask="dirus", - results_cache=adir1_sim_fixture.results_cache_path.as_posix(), - taxon_colors=_adir1.TAXON_COLORS, - ) - - # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for diff --git a/tests/anoph/test_fst.py b/tests/anoph/test_fst.py index 8cfaea808..ba9dfa4a0 100644 --- a/tests/anoph/test_fst.py +++ b/tests/anoph/test_fst.py @@ -9,7 +9,6 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 -from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.fst import AnophelesFstAnalysis @@ -58,24 +57,6 @@ def af1_sim_api(af1_sim_fixture): ) -@pytest.fixture -def adir1_sim_api(adir1_sim_fixture): - return AnophelesFstAnalysis( - url=adir1_sim_fixture.url, - public_url=adir1_sim_fixture.url, - config_path=_adir1.CONFIG_PATH, - major_version_number=_adir1.MAJOR_VERSION_NUMBER, - major_version_path=_adir1.MAJOR_VERSION_PATH, - pre=False, - gff_gene_type="protein_coding_gene", - gff_gene_name_attribute="Note", - gff_default_attributes=("ID", "Parent", "Note", "description"), - default_site_mask="dirus", - results_cache=adir1_sim_fixture.results_cache_path.as_posix(), - taxon_colors=_adir1.TAXON_COLORS, - ) - - # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for From ac9677e2c47a94acc4b8a122d7176b25b5105413 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Tue, 25 Nov 2025 13:53:32 +1000 Subject: [PATCH 37/41] more test fixes --- tests/anoph/test_dipclust.py | 4 ---- tests/anoph/test_fst.py | 19 +++++++++++++++++++ tests/anoph/test_g123.py | 24 ------------------------ 3 files changed, 19 insertions(+), 28 deletions(-) diff --git a/tests/anoph/test_dipclust.py b/tests/anoph/test_dipclust.py index 591d39511..c0bbad033 100644 --- a/tests/anoph/test_dipclust.py +++ b/tests/anoph/test_dipclust.py @@ -80,10 +80,6 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api -def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): - return adir1_sim_fixture, adir1_sim_api - - @pytest.mark.parametrize("distance_metric", ["cityblock", "euclidean"]) @parametrize_with_cases("fixture,api", cases=".") def test_plot_diplotype_clustering( diff --git a/tests/anoph/test_fst.py b/tests/anoph/test_fst.py index ba9dfa4a0..8cfaea808 100644 --- a/tests/anoph/test_fst.py +++ b/tests/anoph/test_fst.py @@ -9,6 +9,7 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 +from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.fst import AnophelesFstAnalysis @@ -57,6 +58,24 @@ def af1_sim_api(af1_sim_fixture): ) +@pytest.fixture +def adir1_sim_api(adir1_sim_fixture): + return AnophelesFstAnalysis( + url=adir1_sim_fixture.url, + public_url=adir1_sim_fixture.url, + config_path=_adir1.CONFIG_PATH, + major_version_number=_adir1.MAJOR_VERSION_NUMBER, + major_version_path=_adir1.MAJOR_VERSION_PATH, + pre=False, + gff_gene_type="protein_coding_gene", + gff_gene_name_attribute="Note", + gff_default_attributes=("ID", "Parent", "Note", "description"), + default_site_mask="dirus", + results_cache=adir1_sim_fixture.results_cache_path.as_posix(), + taxon_colors=_adir1.TAXON_COLORS, + ) + + # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for diff --git a/tests/anoph/test_g123.py b/tests/anoph/test_g123.py index ea03462dc..ab5e25537 100644 --- a/tests/anoph/test_g123.py +++ b/tests/anoph/test_g123.py @@ -6,7 +6,6 @@ from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 -from malariagen_data import adir1 as _adir1 from malariagen_data.anoph.g123 import AnophelesG123Analysis @@ -57,25 +56,6 @@ def af1_sim_api(af1_sim_fixture): ) -@pytest.fixture -def adir1_sim_api(adir1_sim_fixture): - return AnophelesG123Analysis( - url=adir1_sim_fixture.url, - public_url=adir1_sim_fixture.url, - config_path=_adir1.CONFIG_PATH, - major_version_number=_adir1.MAJOR_VERSION_NUMBER, - major_version_path=_adir1.MAJOR_VERSION_PATH, - pre=False, - gff_gene_type="protein_coding_gene", - gff_gene_name_attribute="Note", - gff_default_attributes=("ID", "Parent", "Note", "description"), - default_site_mask="dirus", - results_cache=adir1_sim_fixture.results_cache_path.as_posix(), - taxon_colors=_adir1.TAXON_COLORS, - default_phasing_analysis="all", - ) - - # N.B., here we use pytest_cases to parametrize tests. Each # function whose name begins with "case_" defines a set of # inputs to the test functions. See the documentation for @@ -96,10 +76,6 @@ def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api -def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): - return adir1_sim_fixture, adir1_sim_api - - def check_g123_gwss(*, api, g123_params): # Run main gwss function under test. x, g123 = api.g123_gwss(**g123_params) From 5956494b4a46c3fce53491d73828e671c8be5faf Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 26 Nov 2025 08:49:08 +1000 Subject: [PATCH 38/41] add surveillance/restricted use flags --- malariagen_data/adir1.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index 5b2f28799..ff6db0679 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -86,6 +86,8 @@ def __init__( discordant_read_calls_analysis=None, pre=False, tqdm_class=None, + unrestricted_use_only=False, + surveillance_use_only=False, **storage_options, # used by fsspec via init_filesystem() ): super().__init__( @@ -122,6 +124,8 @@ def __init__( virtual_contigs=None, gene_names=None, inversion_tag_path=None, + unrestricted_use_only=unrestricted_use_only, + surveillance_use_only=surveillance_use_only, ) def __repr__(self): @@ -199,6 +203,24 @@ def _repr_html_(self): {self.client_location} + + + Data filtered for unrestricted use only + + {self._unrestricted_use_only} + + + + Data filtered for surveillance use only + + {self._surveillance_use_only} + + + + Relevant data releases + + {', '.join(self.releases)} + """ From 826a920c11d64f5ab9e3922598fba6bc158161bf Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 26 Nov 2025 08:50:49 +1000 Subject: [PATCH 39/41] add surveillance/restricted use flags again --- malariagen_data/adir1.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/malariagen_data/adir1.py b/malariagen_data/adir1.py index ff6db0679..301c38b3f 100644 --- a/malariagen_data/adir1.py +++ b/malariagen_data/adir1.py @@ -131,13 +131,16 @@ def __init__( def __repr__(self): text = ( f"\n" - f"Storage URL : {self._url}\n" - f"Data releases available : {', '.join(self.releases)}\n" - f"Results cache : {self._results_cache}\n" - f"Cohorts analysis : {self._cohorts_analysis}\n" - f"Site filters analysis : {self._site_filters_analysis}\n" - f"Software version : malariagen_data {malariagen_data.__version__}\n" - f"Client location : {self.client_location}\n" + f"Storage URL : {self._url}\n" + f"Data releases available : {', '.join(self._available_releases)}\n" + f"Results cache : {self._results_cache}\n" + f"Cohorts analysis : {self._cohorts_analysis}\n" + f"Site filters analysis : {self._site_filters_analysis}\n" + f"Software version : malariagen_data {malariagen_data.__version__}\n" + f"Client location : {self.client_location}\n" + f"Data filtered to unrestricted use only: {self._unrestricted_use_only}\n" + f"Data filtered to surveillance use only: {self._surveillance_use_only}\n" + f"Relevant data releases : {', '.join(self.releases)}\n" f"---\n" f"Please note that data are subject to terms of use,\n" f"for more information see https://www.malariagen.net/data\n" @@ -171,7 +174,7 @@ def _repr_html_(self): Data releases available - {', '.join(self.releases)} + {', '.join(self._available_releases)} From bebd52484876b543b3899113f7f1bd536bfc5f01 Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 26 Nov 2025 09:02:00 +1000 Subject: [PATCH 40/41] Apply pre-commit formatting fixes --- tests/anoph/test_sample_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/anoph/test_sample_metadata.py b/tests/anoph/test_sample_metadata.py index 464e1cf3a..3120c8adb 100644 --- a/tests/anoph/test_sample_metadata.py +++ b/tests/anoph/test_sample_metadata.py @@ -164,7 +164,7 @@ def case_ag3_sim(ag3_sim_fixture, ag3_sim_api): @case def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api - + @case def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): From 5e358c254e1509588a540a0035c4266959aede6e Mon Sep 17 00:00:00 2001 From: tristanpwdennis Date: Wed, 26 Nov 2025 12:50:26 +1000 Subject: [PATCH 41/41] skip tests for adir1 that have sex call query --- tests/anoph/test_snp_data.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/anoph/test_snp_data.py b/tests/anoph/test_snp_data.py index 453a6ccef..d9cef5c23 100644 --- a/tests/anoph/test_snp_data.py +++ b/tests/anoph/test_snp_data.py @@ -9,7 +9,9 @@ import xarray as xr import zarr # type: ignore from numpy.testing import assert_array_equal -from pytest_cases import parametrize_with_cases +from pytest_cases import parametrize_with_cases, case +from pytest_cases import filters as ft + from malariagen_data import af1 as _af1 from malariagen_data import ag3 as _ag3 @@ -91,14 +93,17 @@ def adir1_sim_api(adir1_sim_fixture): # pytest alone. +@case(tags="ag3") def case_ag3_sim(ag3_sim_fixture, ag3_sim_api): return ag3_sim_fixture, ag3_sim_api +@case(tags="af1") def case_af1_sim(af1_sim_fixture, af1_sim_api): return af1_sim_fixture, af1_sim_api +@case(tags="adir1") def case_adir1_sim(adir1_sim_fixture, adir1_sim_api): return adir1_sim_fixture, adir1_sim_api @@ -1076,7 +1081,7 @@ def test_snp_allele_counts_with_site_mask_param(fixture, api: AnophelesSnpData): ) -@parametrize_with_cases("fixture,api", cases=".") +@parametrize_with_cases("fixture,api", cases=".", filter=~ft.has_tag("adir1")) def test_snp_allele_counts_with_sample_query_param(fixture, api: AnophelesSnpData): # Fixed parameters. all_sample_sets = api.sample_sets()["sample_set"].to_list() @@ -1098,7 +1103,7 @@ def test_snp_allele_counts_with_sample_query_param(fixture, api: AnophelesSnpDat ) -@parametrize_with_cases("fixture,api", cases=".") +@parametrize_with_cases("fixture,api", cases=".", filter=~ft.has_tag("adir1")) def test_snp_allele_counts_with_sample_query_options_param( fixture, api: AnophelesSnpData ):